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

:root {
    --primary: #1F4F3A;
    --primary-foreground: #FFFFFF;
    --secondary: #E6F3EC;
    --secondary-foreground: #1F4F3A;
    --accent: #2F7D5A;
    --accent-foreground: #FFFFFF;
    --background: #FFFFFF;
    --foreground: #4A4A4A;
    --muted: #F5F9F7;
    --muted-foreground: #6B7280;
    --border: #D1E7DB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Merriweather', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-subtitle {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(74, 74, 74, 0.8);
    transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.phone-numbers {
    display: none;
    gap: 1rem;
    font-size: 0.875rem;
    align-items: center;
}

.phone-numbers a {
    color: var(--foreground);
    transition: color 0.3s;
}

.phone-numbers a:hover {
    color: var(--primary);
}

.menu-button {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-button span {
    width: 1.5rem;
    height: 0.2rem;
    background-color: var(--foreground);
    transition: all 0.3s;
}

.menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background-color: var(--background);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background-color: var(--secondary);
    color: var(--primary);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .menu-button {
        display: none;
    }
}

@media (min-width: 1024px) {
    .phone-numbers {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 4rem 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

@media (min-width: 1024px) {
    .hero {
        background-position: right center;
        min-height: 600px;
    }
}

@media (min-width: 1440px) {
    .hero {
        min-height: 700px;
    }
}

@media (min-width: 1920px) {
    .hero {
        min-height: 800px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 20%, rgba(31, 79, 58, 0) 100%);
    z-index: 1;
}

.hero .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none !important;
    z-index: 10;
    position: relative;
}

.hero-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}

@media (min-width: 768px) {
    .hero-content {
        max-width: 50% !important;
        padding-left: 0 !important;
    }
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #267a52;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero-image {
    display: none;
}
    }
    .hero-image {
        height: 600px;
    }
}

/* Section Styles */
section {
    padding: 4rem 1rem;
}

section.bg-secondary {
    background-color: var(--secondary);
}

section.bg-primary {
    background-color: var(--primary);
    color: white;
}

section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

section.bg-primary h2 {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

section.bg-primary .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    section h2 {
        font-size: 2.25rem;
    }
    section {
        padding: 6rem 1rem;
    }
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* Cards */
.card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card.bg-secondary {
    background-color: var(--secondary);
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card.bg-secondary .card-icon {
    background-color: var(--background);
}

/* Benefits Section */
.benefits-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-title h2 {
    margin-bottom: 1rem;
}

/* Services List */
.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    align-items: flex-start;
}

.services-list .icon {
    color: var(--accent);
    font-weight: bold;
    flex-shrink: 0;
}

/* Accordion */
.accordion {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

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

.accordion-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: var(--background);
    color: var(--primary);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-trigger:hover {
    background-color: var(--secondary);
}

.accordion-trigger.active {
    background-color: var(--secondary);
}

.accordion-content {
    display: none;
    padding: 1rem 1.5rem;
    background-color: var(--background);
    color: rgba(74, 74, 74, 0.8);
}

.accordion-content.active {
    display: block;
}

.accordion-content pre {
    font-family: 'Inter', sans-serif;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
}

/* Steps */
.steps-container {
    position: relative;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
    margin-top: 1.5rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Image Styles */
.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--muted);
    height: 250px;
    display: flex;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

@media (min-width: 1024px) {
    .image-container {
        height: 400px;
    }
}

/* Table Styles */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.price-table th {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.price-table tr:hover {
    background-color: var(--muted);
}

.price-value {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* Text Content */
.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(74, 74, 74, 0.8);
}

.prose strong {
    color: var(--primary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.max-w-3xl {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.order-2 {
    order: 2;
}

.order-1 {
    order: 1;
}

@media (max-width: 1023px) {
    .order-2 {
        order: 1;
    }
    .order-1 {
        order: 2;
    }
}

.check-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--accent);
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 1.25rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}
