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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    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: 250px;
}

.cookie-buttons {
    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: background-color 0.3s ease;
}

.btn-accept {
    background-color: #b8956f;
    color: #fff;
}

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #b8956f;
    letter-spacing: 0.5px;
}

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

.nav-main a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f0eb;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 149, 111, 0.7), rgba(44, 44, 44, 0.6));
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.intro-story {
    padding: 80px 20px;
    background-color: #fff;
}

.intro-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-align: center;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f9f7f5;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

.split-text a {
    color: #b8956f;
    text-decoration: none;
    font-weight: 600;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e4df;
}

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

.insight-section {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

.insight-section h3 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #b8956f;
}

.insight-section p {
    font-size: 17px;
    margin-bottom: 18px;
}

.insight-section a {
    color: #b8956f;
    text-decoration: none;
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #f9f7f5;
    padding: 30px;
    border-radius: 8px;
}

.trust-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e8e4df;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.trust-card p {
    font-size: 16px;
    color: #555;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f5f0eb;
}

.testimonials-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2c2c;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 24px;
    border-left: 4px solid #b8956f;
    border-radius: 4px;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
    color: #444;
}

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

.benefits-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    padding-left: 30px;
    border-left: 3px solid #b8956f;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 17px;
    color: #555;
}

.benefit-item a {
    color: #b8956f;
    text-decoration: none;
}

.products-reveal {
    padding: 80px 20px;
    background-color: #f9f7f5;
}

.products-reveal h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.products-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

.product-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e4df;
}

.product-card h4 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c2c2c;
}

.product-card p {
    font-size: 15px;
    margin: 0 20px 12px 20px;
    color: #666;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: #b8956f;
    margin: 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px;
    background-color: #b8956f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #a07d57;
}

.cta-form-section {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

.cta-form-section h3 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #b8956f;
}

.cta-form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #3a3a3a;
    color: #fff;
}

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f0eb;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.references-section {
    padding: 60px 20px;
    background-color: #fff;
}

.references-section h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    color: #555;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #b8956f;
    text-decoration: none;
    margin-right: 8px;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px 20px;
}

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

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #b8956f;
}

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

.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: #b8956f;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.about-hero {
    padding: 100px 20px;
    background-color: #f5f0eb;
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

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

.about-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

.services-hero {
    padding: 100px 20px;
    background-color: #f5f0eb;
    text-align: center;
}

.services-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-hero p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-content {
    padding: 80px 20px;
}

.contact-hero {
    padding: 100px 20px;
    background-color: #f5f0eb;
    text-align: center;
}

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

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

.contact-info {
    background-color: #f9f7f5;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #b8956f;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.thanks-page {
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #b8956f;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-page .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #b8956f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-page .btn-home:hover {
    background-color: #a07d57;
}

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

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

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

    .nav-main {
        flex-direction: column;
        gap: 12px;
    }

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

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

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