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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f5;
}

header {
    background: linear-gradient(135deg, #5a8f7b 0%, #7ab89c 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.logo span {
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: rgba(255,255,255,0.2);
}

.hero {
    background: linear-gradient(rgba(90, 143, 123, 0.85), rgba(90, 143, 123, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23fff" stroke-width="0.5" opacity="0.1"/></svg>');
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.section {
    margin-bottom: 60px;
}

.section h2 {
    color: #5a8f7b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 4px solid #7ab89c;
    padding-left: 15px;
}

.section p {
    color: #555;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #5a8f7b;
    margin-bottom: 10px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7ab89c;
    font-weight: bold;
}

.hours-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: inline-block;
}

.hours-box p {
    font-size: 1.1rem;
    margin: 0;
}

.hours-box .days {
    font-weight: 600;
    color: #5a8f7b;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: #5a8f7b;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-item p {
    color: #555;
    margin: 0;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5a8f7b;
}

.address-main {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.map-placeholder {
    background: #e8e8e8;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-top: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
}

.review-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: #7ab89c;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    padding-top: 20px;
}

.review-author {
    font-weight: 600;
    color: #5a8f7b;
}

.stars {
    color: #f5c518;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.map-container {
    width: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.disclaimer {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 40px;
}

footer {
    background: #3d5c4e;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 40px 15px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}
