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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4a373;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44,62,80,0.7), rgba(44,62,80,0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 24px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
}

.intro-section {
    background: #fff;
    padding: 90px 30px;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 28px;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background-color: #d4a373;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    background: #f4f6f7;
    padding: 80px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #a8d5ba;
}

.value-card h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin: 24px 24px 12px;
}

.value-card p {
    font-size: 16px;
    color: #555;
    margin: 0 24px 24px;
    line-height: 1.6;
}

.services-highlight {
    background: #fff;
    padding: 100px 30px;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 40px;
    color: #2c5f2d;
    margin-bottom: 50px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #2c5f2d;
    transition: background 0.3s;
}

.service-item:hover {
    background: #f0f4f1;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.service-info .price {
    font-size: 28px;
    color: #2c5f2d;
    font-weight: 700;
}

.select-service {
    padding: 14px 32px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #234d24;
}

.order-section {
    background: #ecf0f1;
    padding: 80px 30px;
    display: none;
}

.order-section.active {
    display: block;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-display {
    background: #d4edda;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #155724;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234d24;
}

.testimonials-section {
    background: #2c3e50;
    color: #fff;
    padding: 80px 30px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #bdc3c7;
    font-style: normal;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 50px 30px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-container .order-info {
    background: #d4edda;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 16px;
    color: #155724;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.thanks-container .btn-home:hover {
    background: #234d24;
}

.legal-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}

.legal-page h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.contact-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
}

.contact-page h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.info-item .email-text {
    color: #2c5f2d;
    font-weight: 600;
}

.about-hero {
    background: #2c5f2d;
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 30px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 34px;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-image {
    margin: 40px 0;
    background-color: #d4a373;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-page-hero {
    background: #f4f6f7;
    padding: 80px 30px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 46px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-page-content {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-category {
    margin-bottom: 70px;
}

.service-category h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    border-bottom: 3px solid #2c5f2d;
    padding-bottom: 12px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-left: 5px solid #2c5f2d;
}

.service-card-content {
    flex: 1;
}

.service-card h3 {
    font-size: 26px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .price-display {
    font-size: 32px;
    color: #2c5f2d;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        gap: 20px;
    }
}