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

:root {
    --cutler-green: #00694E;
    --cupola-white: #FFFFFF;
    --under-the-elms: #024230;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cupola-white);
}

header {
    background: linear-gradient(135deg, var(--under-the-elms) 0%, var(--cutler-green) 100%);
    color: var(--cupola-white);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.header-text {
    flex: 1;
    min-width: 300px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.location {
    font-size: 1.1rem !important;
    opacity: 0.85 !important;
    margin-top: 0.5rem;
    font-style: italic;
}

.mascot-container {
    flex: 0 0 auto;
    text-align: center;
}

.mascot-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cupola-white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.mascot-caption {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

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

section {
    padding: 4rem 2rem;
}

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

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

.service-card {
    background: var(--cupola-white);
    border: 2px solid var(--cutler-green);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 105, 78, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 105, 78, 0.2);
    border-color: var(--under-the-elms);
}

.service-icon {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--cutler-green) 0%, var(--under-the-elms) 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cupola-white);
    font-size: 4rem;
    font-weight: 700;
}

.service-card h3 {
    color: var(--under-the-elms);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    line-height: 1.8;
}

.about-section {
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--cutler-green) 0%, var(--under-the-elms) 100%);
    color: var(--cupola-white);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--cupola-white);
    color: var(--cutler-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--cupola-white);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--cupola-white);
    transform: scale(1.05);
}

footer {
    background-color: var(--under-the-elms);
    color: var(--cupola-white);
    text-align: center;
    padding: 2rem;
    opacity: 0.9;
}

footer p {
    margin: 0.5rem 0;
}

.footer-phone,
.footer-email {
    color: var(--cupola-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 2rem;
    }

    .header-text {
        min-width: auto;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1.1rem;
    }

    .location {
        font-size: 1rem !important;
    }

    .mascot-image {
        width: 200px;
        height: 200px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}
