* {
    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: #ffffff;
}

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

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    padding: 20px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.hero-card {
    display: flex;
    min-height: 600px;
    margin-bottom: 60px;
}

.hero-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f9f9f9;
}

.hero-card-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-card-content p {
    font-size: 20px;
    color: #666;
    max-width: 500px;
}

.hero-card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.info-card {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.info-card.accent {
    background: #2c2c2c;
    color: #ffffff;
    border-color: #2c2c2c;
}

.info-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.story-card-main {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.insight-cards {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.trust-card-layout {
    display: flex;
    gap: 40px;
}

.trust-card {
    padding: 50px;
    border-radius: 12px;
}

.trust-card.primary {
    flex: 1.3;
    background: #2c2c2c;
    color: #ffffff;
}

.trust-card.secondary {
    flex: 1;
}

.trust-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c2c2c;
}

.trust-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

blockquote {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-left: 4px solid #8B7355;
    font-style: italic;
    color: #2c2c2c;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.benefits-cards {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.offer-preview {
    padding: 80px 0;
    background: #ffffff;
}

.section-title-center {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

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

.offer-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offer-card-image {
    height: 250px;
    overflow: hidden;
}

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

.offer-card-content {
    padding: 30px;
}

.offer-card-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.offer-card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

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

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #8B7355;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-card > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 16px 40px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #8B7355;
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: #fff8e1;
    border-left: 4px solid #ffa000;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #8B7355;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #a38869;
}

.cookie-reject {
    background: #555555;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #666666;
}

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

.thanks-card {
    max-width: 600px;
    padding: 60px;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #8B7355;
}

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

.thanks-card a {
    display: inline-block;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-card a:hover {
    background: #8B7355;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-card {
        flex-direction: column;
    }

    .hero-card-content h1 {
        font-size: 36px;
    }

    .card-grid,
    .card-grid-3,
    .trust-card-layout,
    .story-card-main {
        flex-direction: column;
    }

    .offer-card-grid .offer-card {
        flex: 1 1 100%;
    }

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

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