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

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

.ad-notice {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #8B4513;
    padding: 18px 0;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    padding: 18px 0;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #8B4513;
}

.hero {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 450px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    flex: 1 1 450px;
    max-width: 600px;
    background-color: #A0522D;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #8B4513;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.intro-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #8B4513;
}

.intro-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.products-showcase {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.products-showcase h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    flex: 1 1 340px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 16px;
}

.select-service {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
}

.benefits-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 300px;
    max-width: 360px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8B4513;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

.cta-card {
    background-color: rgba(255,255,255,0.15);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-button-secondary {
    display: inline-block;
    background-color: white;
    color: #8B4513;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.order-form-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.form-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
}

.submit-button {
    width: 100%;
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: #f0f0f0;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: white;
}

.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.content-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.content-card .card-image {
    flex: 1 1 400px;
    height: 400px;
}

.content-card .card-text {
    flex: 1 1 400px;
    padding: 40px;
}

.content-card .card-text h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #8B4513;
}

.content-card .card-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.values-section {
    margin: 60px 0;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.values-section h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 260px;
    max-width: 280px;
    background-color: #f9f9f9;
    padding: 28px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8B4513;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.mission-card {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
}

.services-list {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.service-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 450px;
    min-height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1 1 450px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #333;
}

.service-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-price {
    margin: 24px 0;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #8B4513;
}

.order-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 14px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1 1 450px;
    background-color: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #8B4513;
}

.contact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.email-text {
    color: #666;
    font-weight: 500;
}

.location-info {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.location-info h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #8B4513;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-card {
    flex: 1 1 280px;
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.direction-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.additional-info {
    padding: 60px 20px;
    background-color: #ffffff;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 36px;
    border-radius: 12px;
}

.info-box h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #8B4513;
}

.info-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
    min-height: 60vh;
}

.thanks-card {
    background-color: white;
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #333;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8B4513;
}

.order-summary p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #333;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,69,19,0.3);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.legal-page {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #333;
}

.update-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #8B4513;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #333;
}

.legal-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.legal-section ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #8B4513;
    text-decoration: none;
    border-bottom: 1px solid #8B4513;
    transition: opacity 0.3s;
}

.legal-section a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

    .content-card,
    .service-item {
        flex-direction: column;
    }

    .content-card.reverse,
    .service-item.reverse {
        flex-direction: column;
    }

    .cta-card,
    .cta-box {
        padding: 36px 24px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .thanks-card {
        padding: 40px 24px;
    }

    .legal-content {
        padding: 28px 20px;
    }
}
