* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #2A6F97; /* Ocean blue */
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #F4E4BC; /* Sandy beige */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.contact-link:hover {
    color: #F4A261; /* Orange accent */
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.title-slogan {
    display: flex;
    flex-direction: column;
    margin: 0;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.slogan {
    font-style: italic;
    font-size: 1.2rem;
    color: #F4E4BC;
}

nav {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    justify-content: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #F4A261;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('handyman-services.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: #F4A261;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.cta-button:hover {
    background: #E76F51;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: #F4E4BC;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2A6F97;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #2A9D8F;
}

/* About Section */
.about {
    padding: 3rem 0;
    text-align: center;
    background: #fff;
}

.about h2 {
    margin-bottom: 1rem;
    color: #2A6F97;
}

.about h3 {
    margin: 2rem 0 1rem;
    color: #2A6F97;
}

.areas-served {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: #2A6F97;
    color: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact-instructions {
    max-width: 500px;
    margin: 2rem auto;
}

.contact-instructions p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-instructions .contact-link {
    color: #F4E4BC;
    text-decoration: underline;
}

.contact-instructions .contact-link:hover {
    color: #F4A261;
}

/* Social Media Section */
.social {
    padding: 3rem 0;
    background: #F4E4BC;
    text-align: center;
}

.social h2 {
    margin-bottom: 1rem;
    color: #2A6F97;
}

.social p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #2A6F97;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.social-link:hover {
    color: #F4A261;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 1rem;
    color: #2A6F97;
}

.gallery p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2A6F97;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo-container {
        float: left;
        max-width: 60%;
    }

    nav {
        float: right;
        margin-top: 1rem;
    }

    header::after {
        content: '';
        display: block;
        clear: both;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-link {
        font-size: 0.9rem;
        display: block;
    }

    .logo-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .slogan {
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 20px;
        z-index: 110;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #2A6F97;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem 0;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .areas-served {
        flex-direction: column;
        gap: 0.5rem;
    }
}