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

:root {
    --primary-color: #4a4a4a;
    --secondary-color: #5a5a5a;
    --accent-color: #6a6a6a;
    --text-primary: #4a4a4a;
    --text-secondary: #6a6a6a;
    --bg-light: #f5ebe6;
    --bg-cream: #f9f4f0;
    --bg-white: #ffffff;
    --border-color: #e2d4ce;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background: var(--bg-white);
    padding: 40px 50px;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


main {
    padding: 50px;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-preview {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.services-preview h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

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

.service-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-section {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-section h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--bg-cream);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.business-hours h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.business-hours p {
    color: var(--text-secondary);
    line-height: 1.8;
}

footer {
    background: var(--text-primary);
    color: var(--bg-cream);
    text-align: center;
    padding: 30px;
}

footer p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-location {
    opacity: 0.9;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    main {
        padding: 30px;
    }

    .logo-text h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1.8rem;
    }

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

    .contact-item {
        min-width: 100%;
        font-size: 1rem;
    }

    .contact-methods {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 25px;
    }

    main {
        padding: 25px 20px;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        padding: 12px 20px;
    }
}