* {
    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: #2c1810;
    background: #faf8f6;
}

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

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

.cookie-banner.active {
    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-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #d4a574;
    color: #2c1810;
}

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #d4a574;
}

.hero-card {
    position: relative;
    height: 600px;
    margin: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 22px;
    opacity: 0.95;
}

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

.intro-card {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c1810;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a3428;
}

.problem-section {
    padding: 80px 0;
    background: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background: #faf8f6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a3428;
}

.solution-section {
    padding: 100px 0;
}

.solution-card {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.solution-text {
    flex: 1;
    min-width: 400px;
}

.solution-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c1810;
}

.solution-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a3428;
}

.solution-image {
    flex: 1;
    min-width: 400px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.trust-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c1810;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a3428;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #faf8f6;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.quote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c1810;
    font-style: italic;
}

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

.services-section {
    padding: 100px 0;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #4a3428;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #2c1810;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1a0f0a;
}

.form-section {
    padding: 80px 0;
    background: #fff;
}

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

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

.form-card > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a3428;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d4a574;
    color: #2c1810;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c49563;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f0ebe6;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

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

.footer {
    background: #2c1810;
    color: #fff;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a3428;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

.thanks-card {
    max-width: 700px;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c1810;
}

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

.thanks-card .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #2c1810;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-card .btn:hover {
    background: #1a0f0a;
}

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a3428;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a3428;
}

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

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

.contact-page {
    padding: 80px 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c1810;
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a3428;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c1810;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3428;
    margin-bottom: 10px;
}

.about-page {
    padding: 80px 0;
}

.about-hero {
    background: #fff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c1810;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a3428;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 400px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c1810;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a3428;
}

.about-image {
    flex: 1;
    min-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.values-section {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a3428;
}

.services-page {
    padding: 80px 0;
}

.services-hero {
    background: #fff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c1810;
}

.services-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a3428;
    max-width: 800px;
    margin: 0 auto;
}

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

    .hero-text p {
        font-size: 18px;
    }

    .intro-card,
    .form-card,
    .legal-content,
    .contact-hero,
    .about-hero,
    .services-hero,
    .values-section {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .solution-card,
    .about-content {
        flex-direction: column;
    }

    .solution-text,
    .solution-image,
    .about-text,
    .about-image {
        min-width: 100%;
    }

    .nav {
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }
}