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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.ad-disclosure {
    background-color: #f0ebe4;
    color: #6b5d52;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #d4cec4;
}

.main-nav {
    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: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3d3d3d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 30px;
}

.story-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.story-card p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.insight-cards {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-card {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.insight-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.testimonial-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.testimonials {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.services-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.services-showcase h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 250px;
}

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

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 10px;
    color: #2c2c2c;
}

.service-card p {
    padding: 0 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    padding: 20px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.select-service-btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 15px;
    background-color: #8b7355;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 30px;
}

.form-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.selected-service-display {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f5f1ed;
    border-radius: 6px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4cec4;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

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

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

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

.cta-card {
    background-color: #f5f1ed;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #3d3d3d;
    color: #d4cec4;
    margin-top: 100px;
    padding: 50px 30px 30px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #4a4a4a;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #d4cec4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #5a5a5a;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3d3d3d;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: #5a5a5a;
    color: #fff;
}

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

.page-hero {
    max-width: 1200px;
    margin: 50px auto;
    padding: 80px 50px;
    border-radius: 12px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-hero p {
    font-size: 20px;
    color: #666;
}

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

.about-card {
    display: flex;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-text {
    flex: 1;
    padding: 50px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-cards {
    display: flex;
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.services-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-price-display {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin: 25px 0;
}

.service-features {
    margin-top: 25px;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.services-cta .cta-card a {
    color: #8b7355;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.services-cta .cta-card a:hover {
    color: #6f5c46;
}

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

.contact-card {
    background-color: #fff;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

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

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.thanks-card {
    background-color: #f5f1ed;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.thanks-card h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

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

.thanks-card a {
    color: #8b7355;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.thanks-card a:hover {
    color: #6f5c46;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #8b7355;
    color: #fff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.back-home-btn:hover {
    background-color: #6f5c46;
    color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 50px auto 80px;
    padding: 0 30px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3d3d3d;
}

.legal-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 25px 20px;
}

.legal-content li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content em {
    color: #888;
    font-size: 15px;
}

.legal-content a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #6f5c46;
}

.gdpr-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.gdpr-table th {
    background-color: #f5f1ed;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #2c2c2c;
    border: 1px solid #d4cec4;
}

.gdpr-table td {
    padding: 12px 15px;
    font-size: 15px;
    color: #4a4a4a;
    border: 1px solid #d4cec4;
}

@media (max-width: 768px) {
    .hero-card,
    .insight-card,
    .about-card,
    .service-detail-card {
        flex-direction: column;
    }

    .testimonials,
    .values-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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