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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 10000;
    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: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #c9a961;
    color: white;
}

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

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

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

.nav-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-brand {
    font-size: 26px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
}

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

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

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

.nav-links a:hover {
    color: #c9a961;
}

.hero-card {
    margin: 0;
    background: #e8e8e8;
}

.hero-image-container {
    position: relative;
    height: 550px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 650px;
    font-weight: 300;
}

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

.intro-card {
    background: #f9f9f9;
    padding: 60px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.problem-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #2a2a2a;
    padding: 45px;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #c9a961;
    font-weight: 400;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #d4d4d4;
}

.insight-section {
    padding: 90px 0;
    background: white;
}

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

.insight-content {
    flex: 1;
    min-width: 320px;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.insight-image {
    flex: 1;
    min-width: 320px;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.testimonial-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-size: 60px;
    color: #c9a961;
    line-height: 1;
    margin-bottom: 15px;
}

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

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.collection-preview {
    padding: 90px 0;
    background: white;
}

.collection-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 55px;
    color: #1a1a1a;
    font-weight: 400;
}

.collection-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.collection-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.collection-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8e8e8;
}

.collection-info {
    padding: 35px;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.collection-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #c9a961;
    text-decoration: none;
    border: 2px solid #c9a961;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #c9a961;
    color: white;
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 55px;
    color: #1a1a1a;
    font-weight: 400;
}

.benefits-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 40px;
    color: #c9a961;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.service-selection {
    padding: 90px 0;
    background: white;
}

.service-selection h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-form {
    max-width: 1100px;
    margin: 0 auto;
}

.service-options {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-option-card {
    flex: 1;
    min-width: 300px;
}

.service-option-card input[type="radio"] {
    display: none;
}

.service-option-card label {
    display: block;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-option-card label:hover {
    border-color: #c9a961;
}

.service-option-card input[type="radio"]:checked + label {
    background: #fff8ed;
    border-color: #c9a961;
}

.service-option-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-option-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.service-option-card .price {
    font-size: 20px;
    color: #c9a961;
    font-weight: 600;
}

.form-fields {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    width: 100%;
    padding: 16px;
    background: #c9a961;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b89550;
}

.cta-section {
    padding: 90px 0;
    background: #1a1a1a;
}

.cta-card {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #d4d4d4;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: #c9a961;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-primary-large:hover {
    background: #b89550;
}

.footer {
    background: #0f0f0f;
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c9a961;
    font-weight: 400;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

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

.footer-section ul li a:hover {
    color: #c9a961;
}

.footer-disclaimer {
    border-top: 1px solid #2a2a2a;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

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

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 70px;
    color: #c9a961;
    margin-bottom: 25px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.thanks-card .service-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.thanks-card .service-info strong {
    color: #c9a961;
}

.content-page {
    padding: 80px 0;
    background: white;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

.content-page ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-page ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a4a4a;
}

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

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #c9a961;
    font-weight: 400;
}

.contact-info-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

    .nav-links {
        gap: 20px;
        margin-top: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .intro-card {
        padding: 35px;
    }

    .insight-card-main {
        flex-direction: column;
    }

    .collection-cards,
    .benefits-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .service-options {
        flex-direction: column;
    }
}