body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

header {
    background: #f4f4f4;
    padding: 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.project-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
    font-style: italic;
}

nav {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 0.5rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    margin: 0.5rem 1rem;
    text-decoration: none;
    padding: 0.5rem;
}

nav a:hover {
    color: #25D366;
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav {
        display: none;
    }

    nav a {
        margin: 0.25rem 0;
        width: 100%;
        text-align: center;
    }
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero/hero.webp') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
}
.hero h1 {
    font-size: 2.5rem;
}
.cta-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}
.cta-button:hover {
    background: #128C7E;
}
section {
    padding: 2rem;
    text-align: center;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}
.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
}
.back-button {
    display: inline-block;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}
.back-button:hover {
    background: #555;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}
.social-link {
    display: inline-block;
    color: #1877f2;
    text-decoration: none;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-link:hover {
    color: #0d5ab9;
    transform: scale(1.1);
}
.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#service-area {
    background: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
}

.service-details {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.email-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #1877f2;
}

.contact-info {
    margin: 0 1rem;
}

@media screen and (max-width: 768px) {
    .gallery {
        gap: 1rem;
    }
    
    .gallery img {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
} 