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

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

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

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

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.logo-brand {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

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

.hero-section {
    padding: 0;
    margin-bottom: 40px;
}

.hero-card {
    border-radius: 0;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    border-radius: 8px;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    line-height: 1.5;
}

.intro-section,
.problem-section,
.insight-section,
.story-section,
.testimonials-section,
.services-preview,
.form-section,
.trust-section {
    padding: 60px 0;
}

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

.intro-card h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #555;
}

.split-cards {
    display: flex;
    gap: 30px;
    align-items: center;
}

.split-cards.reverse {
    flex-direction: row-reverse;
}

.text-card {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.text-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.text-card p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
}

.image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #e9ecef;
}

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

.card-grid-three {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card-grid-three > * {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.card-grid-two {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card-grid-two > * {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.insight-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.card-icon {
    font-size: 2.5em;
    color: #27ae60;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 1em;
    color: #666;
}

.section-title-center {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95em;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #dee2e6;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8em;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-card > p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.05em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.trust-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 1em;
    color: #666;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

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

.footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9em;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95em;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 4em;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-card h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-card p {
    font-size: 1.15em;
    color: #666;
    margin-bottom: 15px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-home:hover {
    background-color: #2980b9;
}

.legal-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-card h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-card h2 {
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-card h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-card ul {
    margin: 15px 0 15px 30px;
}

.legal-card ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 15px;
        font-size: 0.9em;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .split-cards,
    .split-cards.reverse {
        flex-direction: column;
    }

    .card-grid-three > *,
    .card-grid-two > * {
        flex: 1 1 100%;
    }

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

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