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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #e6c158;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
}

.header-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.brand-mark {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
}

.hero-immersive {
    margin-top: 0;
    width: 100%;
    height: 92vh;
    position: relative;
}

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

.hero-image-overlay::before {
    content: '';
    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));
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.narrative-intro {
    padding: 8rem 2rem;
    background: #fff;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.visual-statement {
    background: #f8f8f8;
    padding: 0;
}

.image-text-split {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-reveal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.centered-insight {
    max-width: 900px;
    margin: 0 auto;
}

.centered-insight h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.insight-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.scientific-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #d4af37;
}

.scientific-note p {
    font-size: 0.95rem;
    margin: 0;
}

.scientific-note a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.scientific-note a:hover {
    text-decoration: underline;
}

.trust-builders {
    padding: 6rem 2rem;
    background: #fff;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    background: #f9f9f9;
    border-left: 4px solid #d4af37;
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.testimonial-card cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.benefit-showcase {
    padding: 7rem 2rem;
    background: #f5f5f5;
}

.benefit-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

.benefit-item h3 {
    font-size: 1.5rem;
    padding: 2rem 2rem 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.collection-preview {
    padding: 7rem 2rem;
    background: #fff;
}

.collection-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.collection-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.collection-header p {
    font-size: 1.2rem;
    color: #555;
}

.collection-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.collection-card {
    display: flex;
    background: #fafafa;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.collection-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

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

.card-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.price-tag {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 2rem;
}

.select-service {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.appointment-form-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: #2a2a2a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1.2rem 3rem;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.final-cta {
    padding: 6rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f0f0f0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.references-section {
    padding: 3rem 2rem;
    background: #fff;
}

.references-content {
    max-width: 1000px;
    margin: 0 auto;
}

.references-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.references-list {
    list-style-position: inside;
    padding-left: 1rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.references-list a {
    color: #2a2a2a;
    text-decoration: none;
}

.references-list a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 400;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 5rem 4rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 300;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.thanks-content .selected-service {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.content-section {
    padding: 6rem 2rem;
    background: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 300;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2a2a2a;
    font-weight: 400;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
}

.content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content-wrapper li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.contact-info-block {
    background: #f8f8f8;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #d4af37;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .image-text-split {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

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

    .collection-card:nth-child(even) {
        flex-direction: column;
    }

    .card-content {
        padding: 3rem 2rem;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .form-container {
        padding: 2rem;
    }

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