* {
    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: #2c2c2c;
    background-color: #fafafa;
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b4513;
    text-decoration: none;
}

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

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

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

.hero-card {
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
    padding: 60px 40px 40px;
}

.hero-overlay h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
}

.intro-cards {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-card {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.featured-services {
    padding: 50px 0 80px;
    background-color: #fff;
}

.section-heading {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.service-card {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

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

.card-content {
    padding: 28px;
}

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

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 18px;
}

.select-service-btn {
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #6d3410;
}

.trust-section {
    padding: 70px 0;
    background-color: #f5ede6;
}

.trust-card-wide {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-content h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #8b4513;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    background-color: #8b4513;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.trust-point p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.order-section {
    padding: 70px 0;
    background-color: #fff;
}

.order-card {
    background: #fafafa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 700px;
    margin: 0 auto;
}

.order-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #8b4513;
}

.order-card > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6d3410;
}

.footer {
    background-color: #2c2c2c;
    color: #ddd;
    padding: 50px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 25px;
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b4513;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #6d3410;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #ccc;
}

.page-header-card {
    background: linear-gradient(135deg, #8b4513 0%, #6d3410 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

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

.about-content {
    padding: 60px 0;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card-large {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-image-about {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.card-text {
    padding: 45px;
}

.card-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b4513;
}

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

.about-card-split {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.split-text {
    flex: 1;
    padding: 45px;
}

.split-text h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #8b4513;
}

.split-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.split-image {
    flex: 1;
    overflow: hidden;
    background-color: #e8d5c4;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-card {
    background: #f5ede6;
    padding: 50px;
    border-radius: 12px;
}

.values-card h3 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: #8b4513;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b4513;
}

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

.cta-section-about {
    padding: 70px 0;
    background-color: #fff;
}

.cta-card-centered {
    text-align: center;
    background: #f5ede6;
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-card-centered h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #8b4513;
}

.cta-card-centered p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.cta-link-btn {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-link-btn:hover {
    background-color: #6d3410;
}

.services-detailed {
    padding: 60px 0;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8d5c4;
}

.service-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 40px;
}

.service-card-body h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #8b4513;
}

.service-card-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.price-display {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 25px 0 8px;
}

.price-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-bottom: 25px;
}

.order-info-section {
    padding: 70px 0;
    background-color: #f5ede6;
}

.info-card-centered {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-card-centered h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #8b4513;
}

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

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 650px;
    width: 100%;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #8b4513;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.thanks-section {
    padding: 80px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #8b4513;
}

.thanks-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.service-confirmation {
    background: #f5ede6;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.service-note {
    font-size: 16px;
    color: #2c2c2c;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6d3410;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #ccc;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #8b4513;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.legal-content a {
    color: #8b4513;
    text-decoration: underline;
}

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

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

    .service-card {
        width: 100%;
    }

    .about-card-split {
        flex-direction: column;
    }

    .split-image {
        height: 280px;
    }

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}