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

:root {
    --primary: #5a8f80;
    --primary-dark: #4a7c70;
    --secondary: #f5f7fa;
    --accent: #3d6b5f;
    --dark: #1a3a35;
    --light: #ffffff;
    --gray: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #374151;
    line-height: 1.6;
    background-color: var(--secondary);
}

/* Header */
header {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.logo-icon {
    width: 280px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Logo Image */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-contact a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.header-contact a:hover {
    background: var(--primary);
    color: var(--light);
}

.cta-button {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: #d63d37;
    color: var(--light);
    border-color: #d63d37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--light);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-primary {
    background: var(--accent);
    color: var(--light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.button-primary:hover {
    background: #d63d37;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(232, 85, 77, 0.3);
}

.button-secondary {
    background: transparent;
    color: var(--light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--light);
    cursor: pointer;
}

.button-secondary:hover {
    background: var(--light);
    color: var(--primary);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Services Section */
.services {
    background: var(--light);
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 20px;
}

.service-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Office Hours Section */
.hours-section {
    background: var(--light);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hours-card {
    padding: 2rem;
    background: var(--secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    list-style: none;
}

.hours-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: #4b5563;
}

.hours-item:last-child {
    border-bottom: none;
}

.time-label {
    font-weight: 600;
    color: var(--dark);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-value a {
    color: var(--light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

footer a {
    color: var(--light);
    text-decoration: underline;
    cursor: pointer;
}

footer a:hover {
    color: #7bb8a6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--light);
    margin: 3% auto;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content h3 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.modal-text {
    line-height: 1.8;
    color: #374151;
}

.modal-text p {
    margin-bottom: 1rem;
}

.modal-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.modal-text li {
    margin-bottom: 0.5rem;
}

.close {
    color: var(--gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .header-contact {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}
