/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    color: rgb(31, 26, 26);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* About Me Section */
.about-me {
    padding: 20px;
    text-align: center;
}

.about-me img {
    max-width: 150px;
    border-radius: 50%;
    margin-top: 10px;
}

/* Services Overview */
.services-overview {
    padding: 20px;
    background-color: #f4f4f4;
}

.services-overview h2 {
    text-align: center;
}

.service {
    text-align: center;
    margin-bottom: 20px;
}

.service img {
    max-width: 80px;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.service p {
    margin: 0;
}

/* Portfolio Highlights */
.portfolio-highlights {
    padding: 20px;
}

.portfolio-highlights h2 {
    text-align: center;
}

.project {
    text-align: center;
    margin-bottom: 20px;
}

.project img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.project h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Testimonials */
.testimonials {
    padding: 20px;
    background-color: #f4f4f4;
}

.testimonials h2 {
    text-align: center;
}

blockquote {
    border-left: 4px solid #007BFF;
    padding-left: 15px;
    margin: 20px auto;
    max-width: 800px;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 5px;
    text-align: right;
    color: #666;
}

/* Latest Blog Posts */
.latest-blog-posts {
    padding: 20px;
}

.latest-blog-posts h2 {
    text-align: center;
}

.latest-blog-posts article {
    margin-bottom: 20px;
}

.latest-blog-posts h3 {
    margin: 10px 0;
}

/* Call to Action */
.cta {
    background-color: #007BFF;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.cta h2 {
    margin: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.social-media a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav.active ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5em;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}
