/* ====================================
   IMPORT HEADER & FOOTER
   ==================================== */
@import url('header.css');
@import url('footer.css');


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

body {
    font-family: 'Inter', sans-serif;
    background: #FDF9F5;
    color: #2C0E1F;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gold-text {
    color: #D4AF37;
}

.wine-text {
    color: #2C0E1F;
}

.cream-text {
    color: #F5E6D3;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 20px;
    color: #2C0E1F;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2C0E1F, #D4AF37, #2C0E1F);
}

.section-title span {
    color: #D4AF37;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: #2C0E1F;
    color: #F5E6D3;
    padding: 14px 32px;
    border: 2px solid #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4A1A2F;
    border-color: #F5E6D3;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #2C0E1F;
    color: #2C0E1F;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #2C0E1F;
    color: #F5E6D3;
    border-color: #2C0E1F;
}

.btn-gold {
    background: #D4AF37;
    color: #2C0E1F;
    padding: 14px 32px;
    border: 2px solid #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-gold:hover {
    background: transparent;
    color: #D4AF37;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ====================================
   HERO SECTION - SPLIT LAYOUT (from playsprintfncy)
   ==================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍷';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.hero::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
    color: #D4AF37;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1 1 400px;
}

.hero-badge {
    display: inline-block;
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 5px;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.hero-left h1 .gold-text {
    display: block;
    font-size: 4rem;
    margin-top: 5px;
}

.hero-left p {
    font-size: 1.1rem;
    color: #4A1A2F;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
}

.hero-stat-label {
    color: #4A1A2F;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1 1 400px;
}

/* Hero Card (from allthejoycircuit) */
.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(44, 14, 31, 0.1);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-card-header span {
    color: #2C0E1F;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-card-header small {
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.hero-card-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero-card-rank {
    width: 30px;
    height: 30px;
    background: #2C0E1F;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-card-info {
    flex: 1;
}

.hero-card-info h4 {
    color: #2C0E1F;
    font-size: 1rem;
    margin-bottom: 3px;
}

.hero-card-info p {
    color: #D4AF37;
    font-size: 0.8rem;
    margin: 0;
}

.hero-card-bonus {
    color: #2C0E1F;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ====================================
   BRANDS CAROUSEL (from neon tokyo)
   ==================================== */
.brands-carousel {
    background: #2C0E1F;
    padding: 20px 0;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.brand-item {
    color: #F5E6D3;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 20px;
    opacity: 0.8;
}

.brand-item:hover {
    opacity: 1;
    color: #D4AF37;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====================================
   BOOKMAKERS SECTION - CARD GRID (from playsprintfncy)
   ==================================== */
.bookmakers-section {
    padding: 80px 0;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.wine-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.wine-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2C0E1F;
    color: #D4AF37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-badge.gold {
    background: #D4AF37;
    color: #2C0E1F;
}

.card-logo {
    width: 60px;
    height: 60px;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #F5E6D3;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2C0E1F;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-number {
    background: #F5E6D3;
    color: #2C0E1F;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-bonus {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bonus-label {
    color: #2C0E1F;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C0E1F;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #F5E6D3;
    color: #2C0E1F;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.card-footer {
    display: flex;
    gap: 10px;
}

.btn-card-primary {
    flex: 2;
    background: #2C0E1F;
    border: 2px solid #2C0E1F;
    color: #F5E6D3;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-card-primary:hover {
    background: #4A1A2F;
    border-color: #D4AF37;
    color: #D4AF37;
}

.btn-card-secondary {
    flex: 1;
    background: transparent;
    border: 2px solid #2C0E1F;
    color: #2C0E1F;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-card-secondary:hover {
    background: #2C0E1F;
    color: #F5E6D3;
}

.geo-warning-small {
    font-size: 0.7rem;
    color: #D4AF37;
    margin-top: 10px;
    font-style: italic;
}

/* ====================================
   HOW IT WORKS - TIMELINE (from allthejoycircuit)
   ==================================== */
.how-it-works {
    padding: 60px 0;
    background: #F5E6D3;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 70px;
    width: 2px;
    background: linear-gradient(180deg, #2C0E1F, #D4AF37, #2C0E1F);
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C0E1F;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C0E1F;
}

.step-content p {
    color: #4A1A2F;
    line-height: 1.7;
}

/* ====================================
   FEATURES SPLIT (from neon tokyo)
   ==================================== */
.features-split {
    padding: 60px 0;
}

.split-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 14, 31, 0.1);
}

.split-left {
    flex: 1 1 300px;
    background: #2C0E1F;
    padding: 50px 40px;
}

.split-right {
    flex: 1 1 300px;
    background: #D4AF37;
    padding: 50px 40px;
}

.split-content {
    color: #F5E6D3;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: inherit;
}

.split-content.dark h2 {
    color: #2C0E1F;
}

.split-list {
    list-style: none;
    padding: 0;
}

.split-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.split-list li::before {
    content: '✦';
    color: #D4AF37;
    font-weight: bold;
}

.split-right .split-list li::before {
    color: #2C0E1F;
}

/* ====================================
   STATS BANNER
   ==================================== */
.stats-banner {
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-block {
    text-align: center;
    min-width: 150px;
}

.stat-block .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
}

.stat-block .label {
    color: #F5E6D3;
    margin-top: 5px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ====================================
   RESPONSIBLE GAMING
   ==================================== */
.resp {
    background: #F5E6D3;
    text-align: center;
    padding: 30px 20px;
    margin: 40px 0;
    border: 2px solid #2C0E1F;
}

.resp p {
    color: #2C0E1F;
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
    background: linear-gradient(135deg, #2C0E1F, #4A1A2F);
    padding: 80px 20px;
    text-align: center;
    border-top: 4px solid #D4AF37;
    border-bottom: 4px solid #D4AF37;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #F5E6D3;
}

.cta p {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta .btn-primary {
    background: #D4AF37;
    color: #2C0E1F;
    border-color: #F5E6D3;
}

.cta .btn-primary:hover {
    background: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .hero-left h1 .gold-text {
        font-size: 3.5rem;
    }
    
    .wine-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-left h1 .gold-text {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .wine-card {
        flex: 0 1 100%;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .split-left, .split-right {
        padding: 40px 25px;
    }
    
    .stats-banner {
        padding: 30px;
    }
    
    .stat-block {
        min-width: 120px;
    }
    
    .stat-block .number {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-left h1 .gold-text {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-card-item {
        flex-wrap: wrap;
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .stats-banner {
        flex-direction: column;
        align-items: center;
    }
}
/* ====================================
   ABOUT PAGE - ROYAL WINE
   ==================================== */

/* About Hero */
.about-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '👑';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.about-hero::after {
    content: '🍷';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.about-title .line {
    display: block;
}

.about-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Section */
.about-stats {
    padding: 60px 0;
    background: #2C0E1F;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-card {
    text-align: center;
    min-width: 180px;
    padding: 20px;
    border: 2px solid #D4AF37;
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #F5E6D3;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Section Title Left */
.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C0E1F;
}

/* Mission Section */
.about-mission {
    padding: 80px 0;
    background: #FDF9F5;
}

.mission-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mission-content {
    flex: 1 1 500px;
}

.mission-text {
    color: #4A1A2F;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-quote {
    margin-top: 40px;
    padding: 25px 30px;
    border-left: 4px solid #D4AF37;
    background: #F5E6D3;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quote-marker {
    font-size: 2.5rem;
    color: #D4AF37;
}

.mission-quote p {
    color: #2C0E1F;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.mission-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.royal-seal {
    background: #2C0E1F;
    border: 4px solid #D4AF37;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.seal-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.seal-text {
    color: #F5E6D3;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.seal-year {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 3px;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: #F5E6D3;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.value-card {
    flex: 0 1 calc(25% - 23px);
    min-width: 220px;
    background: white;
    border: 2px solid #D4AF37;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #2C0E1F;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.value-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.value-card p {
    color: #4A1A2F;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Work Section */
.about-work {
    padding: 80px 0;
    background: #FDF9F5;
}

.work-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.work-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.work-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 20px;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #D4AF37, transparent);
}

.step-number {
    font-weight: 700;
    color: #D4AF37;
    opacity: 0.5;
    min-width: 70px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #4A1A2F;
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background: #F5E6D3;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.team-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border: 2px solid #D4AF37;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #2C0E1F;
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.team-card h3 {
    color: #2C0E1F;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-role {
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-card p {
    color: #4A1A2F;
    font-size: 0.9rem;
    line-height: 1.7;
}

.team-seal {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #D4AF37;
    opacity: 0.3;
}

/* Commitment Section */
.about-commitment {
    padding: 60px 0;
    background: #2C0E1F;
}

.commitment-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid #D4AF37;
}

.commitment-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #F5E6D3;
}

.commitment-box p {
    color: #F5E6D3;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.commitment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.commitment-logos img {
    height: 50px;
    background: #2c0e1f;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.commitment-logos img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* FAQ Section */
.about-faq {
    padding: 80px 0;
    background: #FDF9F5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.faq-item h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #4A1A2F;
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .value-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .team-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-title .line:first-child {
        font-size: 2rem;
    }
    
    .value-card {
        flex: 0 1 100%;
    }
    
    .team-card {
        flex: 0 1 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-quote {
        flex-direction: column;
        text-align: center;
    }
    
    .work-step {
        flex-direction: column;
        gap: 10px;
    }
    
    .work-step:not(:last-child)::after {
        display: none;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 140px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .royal-seal {
        width: 250px;
        height: 250px;
    }
    
    .seal-icon {
        font-size: 3rem;
    }
    
    .commitment-box {
        padding: 30px 20px;
    }
    
    .commitment-box h2 {
        font-size: 1.8rem;
    }
}
/* ====================================
   METHODOLOGY PAGE - ROYAL WINE
   ==================================== */

/* Methodology Hero */
.methodology-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.methodology-hero::before {
    content: '📜';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.methodology-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.methodology-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.methodology-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.methodology-title .line {
    display: block;
}

.methodology-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.methodology-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Methodology Stats */
.methodology-stats {
    padding: 60px 0;
    background: #2C0E1F;
}

/* Criteria Pillars */
.criteria-main {
    padding: 80px 0;
    background: #FDF9F5;
}

.criteria-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.pillar-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.pillar-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.pillar-header {
    background: #2C0E1F;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pillar-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.pillar-header h3 {
    color: #F5E6D3;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pillar-content {
    padding: 25px;
}

.pillar-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-list li {
    color: #2C0E1F;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.pillar-list li:last-child {
    border-bottom: none;
}

/* Scoring System */
.scoring-system {
    padding: 80px 0;
    background: #F5E6D3;
}

.scoring-grid {
    max-width: 700px;
    margin: 50px auto;
}

.scoring-item {
    margin-bottom: 25px;
}

.scoring-category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.category-name {
    color: #2C0E1F;
    font-size: 0.95rem;
    font-weight: 600;
}

.category-weight {
    color: #D4AF37;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(44, 14, 31, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2C0E1F, #D4AF37);
    border-radius: 4px;
}

.scoring-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-top: 2px solid #D4AF37;
    background: white;
    border-radius: 8px;
}

.scoring-note p {
    color: #2C0E1F;
    font-size: 0.95rem;
    margin: 0;
}

/* Detailed Process */
.detailed-process {
    padding: 80px 0;
    background: #FDF9F5;
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 20px;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #D4AF37, transparent);
}

.step-card {
    flex: 1;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.step-card h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step-tag {
    background: #F5E6D3;
    border: 1px solid #D4AF37;
    color: #2C0E1F;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
    background: #2C0E1F;
}

.transparency-box {
    text-align: center;
}

.transparency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #F5E6D3;
}

.transparency-box p {
    color: #F5E6D3;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

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

.transparency-item {
    flex: 0 1 calc(25% - 23px);
    min-width: 200px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #D4AF37;
    border-radius: 16px;
    transition: all 0.3s;
}

.transparency-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.transparency-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.transparency-item h3 {
    color: #F5E6D3;
    margin-bottom: 10px;
    font-size: 1rem;
}

.transparency-item p {
    color: #F5E6D3;
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Methodology FAQ */
.methodology-faq {
    padding: 80px 0;
    background: #FDF9F5;
}

/* Responsive */
@media (max-width: 1024px) {
    .pillar-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .transparency-item {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .methodology-title {
        font-size: 3rem;
    }
    
    .methodology-title .line:first-child {
        font-size: 2rem;
    }
    
    .pillar-card {
        flex: 0 1 100%;
    }
    
    .transparency-item {
        flex: 0 1 100%;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        font-size: 2rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .methodology-title {
        font-size: 2.5rem;
    }
    
    .scoring-grid {
        padding: 0 20px;
    }
    
    .pillar-header {
        flex-direction: column;
        text-align: center;
    }
    
    .transparency-box h2 {
        font-size: 2rem;
    }
}
/* ====================================
   REVIEW LISTING PAGE - ROYAL WINE
   ==================================== */

/* Review Hero */
.review-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '👑';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.review-hero::after {
    content: '📜';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.review-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.review-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.review-title .line {
    display: block;
}

.review-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.review-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Review Stats */
.review-stats {
    padding: 60px 0;
    background: #2C0E1F;
}

/* Filter Section */
.review-filter {
    padding: 40px 0;
    background: #F5E6D3;
}

.filter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
}

.filter-label {
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #2C0E1F;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #D4AF37;
    background: #F5E6D3;
}

.filter-btn.active {
    background: #2C0E1F;
    border-color: #2C0E1F;
    color: #F5E6D3;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 60px 0;
    background: #FDF9F5;
}

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

.review-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.review-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.review-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #D4AF37;
    opacity: 0.3;
}

.review-rank.royal-1 {
    opacity: 1;
}

.review-rank.royal-2 {
    opacity: 0.8;
}

.review-logo {
    width: 70px;
    height: 70px;
    background: #2C0E1F;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F5E6D3;
    margin-bottom: 20px;
}

.review-title-card {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2C0E1F;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-rating .stars {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 3px;
}

.review-rating .rating-number {
    background: #F5E6D3;
    color: #2C0E1F;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-bonus {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-bonus .bonus-label {
    font-size: 0.7rem;
    color: #2C0E1F;
    font-weight: 600;
    letter-spacing: 1px;
}

.review-bonus .bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C0E1F;
}

.review-excerpt {
    color: #4A1A2F;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.review-features .feature {
    background: #F5E6D3;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #2C0E1F;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.review-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-review {
    flex: 1;
    background: transparent;
    border: 2px solid #2C0E1F;
    color: #2C0E1F;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-review:hover {
    background: #2C0E1F;
    color: #F5E6D3;
}

.btn-bonus {
    flex: 1;
    background: #D4AF37;
    border: 2px solid #D4AF37;
    color: #2C0E1F;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-bonus:hover {
    background: transparent;
    color: #D4AF37;
}

.country-badge {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 0.7rem;
    color: #2C0E1F;
    background: #F5E6D3;
    padding: 3px 8px;
    border-radius: 20px;
}

.country-badge.warning {
    background: #D4AF37;
    color: #2C0E1F;
}

.coming-soon {
    opacity: 0.7;
}

.btn-disabled {
    flex: 1;
    background: #F5E6D3;
    border: 2px solid #ccc;
    color: #999;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: not-allowed;
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: #F5E6D3;
}

.table-container {
    overflow-x: auto;
    margin: 40px 0 15px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2C0E1F;
    color: #F5E6D3;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #2C0E1F;
}

.comparison-table tr:hover {
    background: #FDF9F5;
}

.rating-badge {
    display: inline-block;
    background: #D4AF37;
    color: #2C0E1F;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.table-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.table-link:hover {
    color: #2C0E1F;
}

.table-note {
    color: #4A1A2F;
    font-size: 0.8rem;
    margin-top: 10px;
    font-style: italic;
}

/* Methodology Link */
.methodology-link {
    padding: 40px 0;
    background: #FDF9F5;
}

.methodology-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
}

.methodology-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2C0E1F;
}

.methodology-box p {
    color: #4A1A2F;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .review-title {
        font-size: 3rem;
    }
    
    .review-title .line:first-child {
        font-size: 2rem;
    }
    
    .review-card {
        flex: 0 1 100%;
    }
    
    .filter-box {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
    
    .methodology-box {
        padding: 30px 20px;
    }
    
    .methodology-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .review-title {
        font-size: 2.5rem;
    }
    
    .review-footer {
        flex-direction: column;
    }
    
    .btn-review,
    .btn-bonus {
        width: 100%;
    }
}
/* ====================================
   CONTACT PAGE - ROYAL WINE
   ==================================== */

/* Contact Hero */
.contact-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '📜';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.contact-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.contact-title .line {
    display: block;
}

.contact-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.contact-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 60px 0;
    background: #FDF9F5;
}

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

.info-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.info-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.info-card.urgent {
    border-color: rgba(212, 175, 55, 0.5);
    background: #FDF9F5;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.info-card h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #4A1A2F;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.info-link {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.info-link:hover {
    color: #2C0E1F;
}

.info-link.disabled {
    color: #999;
    cursor: not-allowed;
}

.info-link.urgent-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C0E1F;
}

.info-link.urgent-link:hover {
    color: #D4AF37;
}

.info-note {
    display: block;
    color: #4A1A2F;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: #F5E6D3;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(44, 14, 31, 0.1);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2C0E1F;
    text-align: center;
}

.form-subtitle {
    color: #4A1A2F;
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 250px;
}

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

.form-group label {
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-control {
    background: #FDF9F5;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: rgba(74, 26, 47, 0.3);
}

select.form-control {
    cursor: pointer;
    color: #2C0E1F;
}

select.form-control option {
    background: white;
    color: #2C0E1F;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D4AF37;
}

.checkbox label {
    font-weight: 400;
    font-size: 0.85rem;
    color: #4A1A2F;
}

.checkbox a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #F5E6D3;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.submit-btn:hover {
    background: #4A1A2F;
    border-color: #F5E6D3;
    color: #D4AF37;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.form-success h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-success p {
    color: #4A1A2F;
    max-width: 400px;
    margin: 0 auto;
}

/* Office Hours */
.office-hours {
    padding: 60px 0;
    background: #FDF9F5;
}

.hours-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.hours-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.hours-content {
    flex: 1;
}

.hours-content h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.day {
    color: #2C0E1F;
    font-weight: 600;
}

.time {
    color: #D4AF37;
}

.hours-note {
    color: #4A1A2F;
    font-size: 0.85rem;
    font-style: italic;
}

/* Location */
.location {
    padding: 0 0 60px;
    background: #FDF9F5;
}

.location-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.location-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.location-content {
    flex: 1;
}

.location-content h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.address {
    color: #4A1A2F;
    line-height: 1.8;
    margin-bottom: 10px;
}

.location-note {
    color: #4A1A2F;
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: #F5E6D3;
}

/* Response Promise */
.response-promise {
    padding: 60px 0;
    background: #FDF9F5;
}

.promise-box {
    text-align: center;
}

.promise-box h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2C0E1F;
}

.promise-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promise-item {
    text-align: center;
    min-width: 150px;
}

.promise-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
}

.promise-text {
    color: #4A1A2F;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-title .line:first-child {
        font-size: 2rem;
    }
    
    .info-card {
        flex: 0 1 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .hours-box,
    .location-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hour-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .promise-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .promise-item {
        min-width: 120px;
    }
    
    .promise-number {
        font-size: 2rem;
    }
}
/* ====================================
   AFFILIATE DISCLOSURE - ROYAL WINE
   ==================================== */

/* Disclosure Hero */
.disclosure-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.disclosure-hero::before {
    content: '📜';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.disclosure-hero::after {
    content: '💰';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.disclosure-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.disclosure-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.disclosure-title .line {
    display: block;
}

.disclosure-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.disclosure-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Intro Section */
.disclosure-intro {
    padding: 60px 0;
    background: #FDF9F5;
}

.intro-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.intro-icon {
    font-size: 4rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2C0E1F;
}

.intro-content p {
    color: #4A1A2F;
    line-height: 1.8;
    margin: 0;
}

/* Disclosure Grid */
.disclosure-main {
    padding: 60px 0;
    background: #F5E6D3;
}

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

.disclosure-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.disclosure-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.disclosure-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclosure-card p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 20px;
}

.disclosure-card a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.disclosure-card a:hover {
    text-decoration: underline;
}

.card-highlight {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 15px;
    margin: 20px 0;
}

.card-highlight.success {
    border-left-color: #2C0E1F;
}

.highlight-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2C0E1F;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.card-highlight.success .highlight-label {
    color: #D4AF37;
}

.card-highlight p {
    margin: 0;
    color: #2C0E1F;
    font-size: 0.9rem;
}

.integrity-badge {
    display: inline-block;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #F5E6D3;
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.compliance-list li {
    padding: 5px 0;
    color: #4A1A2F;
}

/* Quick Summary */
.quick-summary {
    padding: 60px 0;
    background: #FDF9F5;
}

.summary-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.summary-box h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2C0E1F;
}

.summary-items {
    max-width: 700px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #FDF9F5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-align: left;
}

.summary-marker {
    width: 40px;
    height: 40px;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.summary-text {
    color: #4A1A2F;
    line-height: 1.6;
}

.summary-text strong {
    color: #2C0E1F;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    background: #F5E6D3;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.comparison-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.comparison-card.negative {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.comparison-card.positive {
    background: rgba(44, 14, 31, 0.03);
    border: 2px solid #2C0E1F;
}

.comparison-card h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.comparison-card.negative h3 {
    color: #D4AF37;
}

.comparison-card.positive h3 {
    color: #2C0E1F;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 14, 31, 0.1);
    color: #4A1A2F;
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* Disclosure FAQ */
.disclosure-faq {
    padding: 60px 0;
    background: #FDF9F5;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: #F5E6D3;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.badge-icon {
    font-size: 1.5rem;
    color: #D4AF37;
}

.badge-text {
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsible Reminder */
.responsible-reminder {
    padding: 20px 0;
    background: #FDF9F5;
}

.reminder-box {
    background: #F5E6D3;
    border: 2px solid #2C0E1F;
    border-radius: 50px;
    padding: 15px 25px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-box p {
    color: #2C0E1F;
    margin: 0;
    font-size: 0.85rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #2C0E1F;
    color: #2C0E1F;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: #2C0E1F;
    color: #F5E6D3;
}

/* Responsive */
@media (max-width: 1024px) {
    .disclosure-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .disclosure-title {
        font-size: 3rem;
    }
    
    .disclosure-title .line:first-child {
        font-size: 2rem;
    }
    
    .intro-box {
        flex-direction: column;
        text-align: center;
    }
    
    .disclosure-card {
        flex: 0 1 100%;
    }
    
    .comparison-card {
        flex: 0 1 100%;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
    }
    
    .badges-grid {
        gap: 15px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .disclosure-title {
        font-size: 2.5rem;
    }
    
    .intro-content h2 {
        font-size: 1.5rem;
    }
    
    .summary-box {
        padding: 30px 20px;
    }
    
    .summary-box h2 {
        font-size: 1.8rem;
    }
    
    .summary-marker {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* ====================================
   PRIVACY PAGE - ROYAL WINE
   ==================================== */

/* Privacy Hero */
.privacy-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '🛡️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.privacy-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.privacy-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.privacy-title .line {
    display: block;
}

.privacy-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.privacy-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Last Updated */
.last-updated {
    padding: 20px 0;
    background: #FDF9F5;
}

.updated-badge {
    text-align: center;
}

.updated-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Intro */
.privacy-intro {
    padding: 20px 0 40px;
    background: #FDF9F5;
}

.intro-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.intro-box p {
    color: #4A1A2F;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Privacy Grid */
.privacy-main {
    padding: 40px 0 60px;
    background: #F5E6D3;
}

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

.privacy-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.privacy-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.privacy-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.privacy-card p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.privacy-list li {
    padding: 8px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.9rem;
}

.privacy-list strong {
    color: #2C0E1F;
}

.privacy-note {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 12px;
    margin-top: 15px;
}

.privacy-note span {
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
}

.privacy-card a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.privacy-card a:hover {
    text-decoration: underline;
}

.mt-3 {
    margin-top: 15px;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Rights Section */
.rights-section {
    padding: 60px 0;
    background: #FDF9F5;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.rights-card {
    flex: 0 1 calc(33.333% - 17px);
    min-width: 250px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.rights-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.rights-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.rights-card h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rights-card p {
    color: #4A1A2F;
    line-height: 1.6;
    margin: 0;
}

.rights-exercise {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.rights-exercise h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.rights-exercise p {
    color: #4A1A2F;
    margin-bottom: 20px;
    text-align: center;
}

.exercise-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.exercise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FDF9F5;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.exercise-label {
    font-weight: 700;
    color: #2C0E1F;
}

.exercise-item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.exercise-item a:hover {
    color: #2C0E1F;
}

.exercise-note {
    color: #4A1A2F;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* CNIL Section */
.cnil-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.cnil-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.cnil-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.cnil-content {
    flex: 1;
}

.cnil-content h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cnil-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cnil-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.cnil-link:hover {
    color: #2C0E1F;
}

/* Children Section */
.children-section {
    padding: 40px 0;
    background: #FDF9F5;
}

.children-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.children-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.children-content {
    flex: 1;
}

.children-content h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.children-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin: 0;
}

/* Changes Section */
.changes-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.changes-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.changes-box h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.changes-box p {
    color: #4A1A2F;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .rights-card {
        flex: 0 1 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 3rem;
    }
    
    .privacy-title .line:first-child {
        font-size: 2rem;
    }
    
    .privacy-card {
        flex: 0 1 100%;
    }
    
    .rights-card {
        flex: 0 1 100%;
    }
    
    .exercise-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .exercise-item {
        width: 100%;
        justify-content: center;
    }
    
    .cnil-box,
    .children-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .intro-box {
        padding: 25px;
    }
    
    .intro-box p {
        font-size: 1rem;
    }
    
    .rights-exercise {
        padding: 25px;
    }
    
    .cnil-icon,
    .children-icon {
        font-size: 2.5rem;
    }
}
/* ====================================
   PRIVACY PAGE - ROYAL WINE
   ==================================== */

/* Privacy Hero */
.privacy-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '🛡️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.privacy-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.privacy-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.privacy-title .line {
    display: block;
}

.privacy-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.privacy-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Last Updated */
.last-updated {
    padding: 20px 0;
    background: #FDF9F5;
}

.updated-badge {
    text-align: center;
}

.updated-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Intro */
.privacy-intro {
    padding: 20px 0 40px;
    background: #FDF9F5;
}

.intro-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.intro-box p {
    color: #4A1A2F;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Privacy Grid */
.privacy-main {
    padding: 40px 0 60px;
    background: #F5E6D3;
}

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

.privacy-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.privacy-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.privacy-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.privacy-card p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.privacy-list li {
    padding: 8px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.9rem;
}

.privacy-list strong {
    color: #2C0E1F;
}

.privacy-note {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 12px;
    margin-top: 15px;
}

.privacy-note span {
    color: #2C0E1F;
    font-size: 0.85rem;
    font-weight: 600;
}

.privacy-card a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.privacy-card a:hover {
    text-decoration: underline;
}

.mt-3 {
    margin-top: 15px;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Rights Section */
.rights-section {
    padding: 60px 0;
    background: #FDF9F5;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.rights-card {
    flex: 0 1 calc(33.333% - 17px);
    min-width: 250px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.rights-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.rights-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.rights-card h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rights-card p {
    color: #4A1A2F;
    line-height: 1.6;
    margin: 0;
}

.rights-exercise {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.rights-exercise h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.rights-exercise p {
    color: #4A1A2F;
    margin-bottom: 20px;
    text-align: center;
}

.exercise-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.exercise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FDF9F5;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.exercise-label {
    font-weight: 700;
    color: #2C0E1F;
}

.exercise-item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.exercise-item a:hover {
    color: #2C0E1F;
}

.exercise-note {
    color: #4A1A2F;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* CNIL Section */
.cnil-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.cnil-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.cnil-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.cnil-content {
    flex: 1;
}

.cnil-content h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cnil-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cnil-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.cnil-link:hover {
    color: #2C0E1F;
}

/* Children Section */
.children-section {
    padding: 40px 0;
    background: #FDF9F5;
}

.children-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.children-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.children-content {
    flex: 1;
}

.children-content h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.children-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin: 0;
}

/* Changes Section */
.changes-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.changes-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.changes-box h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.changes-box p {
    color: #4A1A2F;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .rights-card {
        flex: 0 1 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 3rem;
    }
    
    .privacy-title .line:first-child {
        font-size: 2rem;
    }
    
    .privacy-card {
        flex: 0 1 100%;
    }
    
    .rights-card {
        flex: 0 1 100%;
    }
    
    .exercise-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .exercise-item {
        width: 100%;
        justify-content: center;
    }
    
    .cnil-box,
    .children-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .intro-box {
        padding: 25px;
    }
    
    .intro-box p {
        font-size: 1rem;
    }
    
    .rights-exercise {
        padding: 25px;
    }
    
    .cnil-icon,
    .children-icon {
        font-size: 2.5rem;
    }
}
/* ====================================
   COOKIES PAGE - ROYAL WINE
   ==================================== */

/* Cookies Hero */
.cookies-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.cookies-hero::before {
    content: '🍪';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.cookies-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.cookies-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cookies-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.cookies-title .line {
    display: block;
}

.cookies-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.cookies-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* What are cookies */
.what-are-cookies {
    padding: 40px 0;
    background: #FDF9F5;
}

.cookies-info-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.cookies-icon-header {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.cookies-info-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.cookies-info-box p {
    color: #4A1A2F;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Cookie Types */
.cookie-types {
    padding: 60px 0;
    background: #F5E6D3;
}

.cookies-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.cookie-type-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.cookie-type-card.essential .cookie-type-header {
    background: rgba(44, 14, 31, 0.05);
    border-bottom: 2px solid #2C0E1F;
}

.cookie-type-card.performance .cookie-type-header {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 2px solid #D4AF37;
}

.cookie-type-card.functionality .cookie-type-header {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 2px solid #D4AF37;
}

.cookie-type-card.targeting .cookie-type-header {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 2px solid #D4AF37;
}

.cookie-type-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2C0E1F;
}

.cookie-badge {
    font-weight: 700;
    font-size: 1rem;
}

.cookie-required, .cookie-optional {
    background: rgba(44, 14, 31, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-type-content {
    padding: 25px;
}

.cookie-type-content p {
    color: #4A1A2F;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.cookie-list li {
    padding: 6px 0;
    color: #2C0E1F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cookie-duration {
    background: #FDF9F5;
    padding: 10px;
    text-align: center;
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Third Party */
.third-party {
    padding: 60px 0;
    background: #FDF9F5;
}

.third-party-box {
    text-align: center;
}

.third-party-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2C0E1F;
}

.third-party-box p {
    color: #4A1A2F;
    margin-bottom: 40px;
}

.third-party-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.third-party-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s;
}

.third-party-item:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
}

.third-party-logo {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    color: #D4AF37;
}

.third-party-info {
    flex: 1;
}

.third-party-info h4 {
    color: #2C0E1F;
    margin-bottom: 5px;
}

.third-party-info p {
    color: #4A1A2F;
    margin-bottom: 5px;
    text-align: left;
}

.third-party-info a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.third-party-info a:hover {
    color: #2C0E1F;
}

.third-party-note {
    color: #4A1A2F;
    font-size: 0.8rem;
}

/* Manage Cookies */
.manage-cookies {
    padding: 60px 0;
    background: #F5E6D3;
}

.manage-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.manage-box h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2C0E1F;
    text-align: center;
}

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

.manage-item {
    flex: 1 1 300px;
}

.manage-item h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.manage-item p {
    color: #4A1A2F;
    margin-bottom: 20px;
}

.demo-toggles {
    background: #FDF9F5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.toggle-item:last-child {
    border-bottom: none;
}

.toggle-status {
    color: #D4AF37;
    font-size: 0.8rem;
    font-weight: 600;
}

.toggle-status.always {
    color: #2C0E1F;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 12px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #D4AF37;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.btn-small {
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #F5E6D3;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border-radius: 8px;
}

.btn-small:hover {
    background: #4A1A2F;
    border-color: #F5E6D3;
    color: #D4AF37;
}

.browser-list {
    list-style: none;
    padding: 0;
}

.browser-list li {
    padding: 8px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.browser-list strong {
    color: #2C0E1F;
}

/* Retention Section */
.retention-section {
    padding: 40px 0;
    background: #FDF9F5;
}

.retention-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.retention-box h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
}

.retention-box p {
    color: #4A1A2F;
    margin-bottom: 15px;
}

.retention-list {
    list-style: none;
    padding: 0;
}

.retention-list li {
    padding: 8px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.retention-list li:last-child {
    border-bottom: none;
}

/* Cookies Rights */
.cookies-rights {
    padding: 60px 0;
    background: #F5E6D3;
}

.rights-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.rights-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.rights-box p {
    color: #4A1A2F;
    line-height: 1.8;
    margin-bottom: 15px;
}

.rights-box a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.rights-box a:hover {
    color: #2C0E1F;
}

/* Cookies FAQ */
.cookies-faq {
    padding: 60px 0;
    background: #FDF9F5;
}

/* CNIL Link */
.cnil-link-section {
    padding: 40px 0;
    background: #F5E6D3;
}

.cnil-link-box {
    text-align: center;
}

.cnil-link-box p {
    color: #4A1A2F;
    margin-bottom: 20px;
}

.cnil-link-box .btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #2C0E1F;
    color: #2C0E1F;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cnil-link-box .btn-secondary:hover {
    background: #2C0E1F;
    color: #F5E6D3;
}

/* Responsive */
@media (max-width: 1024px) {
    .cookie-type-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    .cookies-title {
        font-size: 3rem;
    }
    
    .cookies-title .line:first-child {
        font-size: 2rem;
    }
    
    .cookies-info-box {
        padding: 30px 20px;
    }
    
    .cookies-info-box h2 {
        font-size: 1.8rem;
    }
    
    .manage-box {
        padding: 30px 20px;
    }
    
    .manage-grid {
        flex-direction: column;
    }
    
    .third-party-item {
        flex-direction: column;
        text-align: center;
    }
    
    .toggle-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .rights-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .cookies-title {
        font-size: 2.5rem;
    }
    
    .cookie-type-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* ====================================
   TERMS PAGE - ROYAL WINE
   ==================================== */

/* Terms Hero */
.terms-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '📜';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.terms-hero::after {
    content: '⚖️';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.terms-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.terms-title .line {
    display: block;
}

.terms-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.terms-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Terms Grid */
.terms-main {
    padding: 40px 0 60px;
    background: #FDF9F5;
}

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

.terms-card {
    flex: 0 1 calc(50% - 15px);
    min-width: 350px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.terms-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.terms-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.terms-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.terms-card p {
    color: #4A1A2F;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.terms-list li {
    padding: 8px 0 8px 25px;
    color: #4A1A2F;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.terms-list li:before {
    content: "✦";
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.terms-warning {
    background: #FDF9F5;
    border-left: 4px solid #D4AF37;
    padding: 12px 15px;
    margin-top: 15px;
}

.terms-warning span {
    color: #2C0E1F;
    font-weight: 600;
}

.terms-note {
    background: #F5E6D3;
    border-left: 4px solid #2C0E1F;
    padding: 15px;
    margin-top: 15px;
}

.terms-note p {
    color: #2C0E1F;
    margin: 0;
}

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

.terms-note a:hover {
    color: #2C0E1F;
    text-decoration: underline;
}

.terms-highlight {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid #D4AF37;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

.responsible-contact {
    background: #F5E6D3;
    border: 2px solid #D4AF37;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    border-radius: 8px;
}

.responsible-contact p {
    color: #2C0E1F;
    margin: 0;
}

.responsible-contact strong {
    color: #D4AF37;
    font-size: 1.1rem;
}

.contact-details {
    background: #FDF9F5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #2C0E1F;
}

/* Summary Section */
.terms-summary {
    padding: 60px 0;
    background: #F5E6D3;
}

.summary-box {
    text-align: center;
}

.summary-box h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2C0E1F;
}

.summary-points {
    max-width: 700px;
    margin: 0 auto;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.summary-point:hover {
    border-color: #D4AF37;
}

.point-marker {
    width: 30px;
    height: 30px;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.summary-point span:last-child {
    color: #4A1A2F;
    font-weight: 500;
}

/* Compliance Section */
.compliance-section {
    padding: 40px 0;
    background: #FDF9F5;
}

.compliance-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.compliance-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2C0E1F;
}

.compliance-box p {
    color: #4A1A2F;
    margin-bottom: 20px;
}

.anj-logo {
    margin: 20px 0;
}

.anj-logo img {
    height: 50px;
    background: white;
    padding: 8px 20px;
    border: 1px solid #D4AF37;
    border-radius: 8px;
}

/* Acceptance Reminder */
.acceptance-reminder {
    padding: 20px 0 60px;
    background: #F5E6D3;
}

.reminder-box {
    background: white;
    border: 2px solid #2C0E1F;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.reminder-box p {
    color: #2C0E1F;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .terms-card {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 3rem;
    }
    
    .terms-title .line:first-child {
        font-size: 2rem;
    }
    
    .terms-card {
        min-width: auto;
        padding: 25px;
    }
    
    .terms-card h3 {
        font-size: 1.1rem;
    }
    
    .summary-box h2 {
        font-size: 1.8rem;
    }
    
    .summary-point {
        flex-direction: column;
        text-align: center;
    }
    
    .point-marker {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-card {
        padding: 20px;
    }
    
    .terms-list li {
        font-size: 0.9rem;
    }
    
    .responsible-contact strong {
        font-size: 1rem;
    }
    
    .contact-details {
        padding: 10px;
    }
    
    .compliance-box h3 {
        font-size: 1.5rem;
    }
    
    .compliance-box {
        padding: 30px 20px;
    }
    
    .reminder-box {
        border-radius: 20px;
        padding: 15px;
    }
}
/* ====================================
   RESPONSIBLE GAMBLING PAGE - ROYAL WINE
   ==================================== */

/* Responsible Hero */
.responsible-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FDF9F5 0%, #F5E6D3 100%);
    position: relative;
    overflow: hidden;
}

.responsible-hero::before {
    content: '🛡️';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

.responsible-hero::after {
    content: '👑';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.responsible-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.responsible-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.responsible-title .line {
    display: block;
}

.responsible-title .line:first-child {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.responsible-description {
    font-size: 1.2rem;
    color: #4A1A2F;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Warning Banner */
.warning-banner {
    padding: 30px 0;
    background: #FDF9F5;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.warning-icon {
    font-size: 2.5rem;
    color: #D4AF37;
}

.warning-text h3 {
    color: #2C0E1F;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.warning-text p {
    color: #4A1A2F;
    margin: 0;
}

.warning-text strong {
    color: #D4AF37;
}

/* Key Principles */
.key-principles {
    padding: 60px 0;
    background: #F5E6D3;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.principle-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.principle-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.principle-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.principle-card p {
    color: #4A1A2F;
    line-height: 1.6;
}

.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Warning Signs */
.warning-signs {
    padding: 60px 0;
    background: #FDF9F5;
}

.signs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.signs-column {
    flex: 1 1 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.signs-column h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
}

.signs-list {
    list-style: none;
    padding: 0;
}

.signs-list li {
    padding: 10px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.signs-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #F5E6D3;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.signs-cta p {
    color: #2C0E1F;
    margin: 0;
    font-weight: 600;
}

/* Tools Section */
.tools-section {
    padding: 60px 0;
    background: #F5E6D3;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.tool-card {
    flex: 0 1 calc(25% - 23px);
    min-width: 240px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.tool-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
}

.tool-card h3 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tool-card p {
    color: #4A1A2F;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tool-note {
    background: #FDF9F5;
    border: 1px solid #D4AF37;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.7rem;
    color: #2C0E1F;
    font-weight: 600;
}

/* ANJ Section */
.anj-section {
    padding: 60px 0;
    background: #FDF9F5;
}

.anj-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.anj-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.anj-logo-large {
    height: 60px;
    background: white;
    padding: 10px 20px;
    border: 1px solid #D4AF37;
    border-radius: 8px;
}

.anj-header h2 {
    color: #2C0E1F;
    font-size: 2rem;
}

.anj-box p {
    color: #4A1A2F;
    max-width: 700px;
    margin: 0 auto 30px;
}

.anj-missions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.anj-mission {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FDF9F5;
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 10px 20px;
}

.mission-badge {
    font-size: 1.2rem;
}

.anj-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
}

.anj-footer p {
    margin-bottom: 20px;
}

/* Help Resources */
.help-resources {
    padding: 60px 0;
    background: #F5E6D3;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.resource-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.resource-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.resource-icon {
    font-size: 2rem;
    color: #D4AF37;
}

.resource-header h3 {
    color: #2C0E1F;
    font-size: 1.2rem;
}

.resource-card p {
    color: #4A1A2F;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-contact {
    background: #FDF9F5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.resource-phone {
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 5px;
}

.resource-web {
    color: #2C0E1F;
    font-size: 0.85rem;
    word-break: break-all;
}

.resource-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.resource-badge {
    background: #F5E6D3;
    border: 1px solid #D4AF37;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: #2C0E1F;
    font-weight: 600;
}

/* Self Assessment */
.self-assessment {
    padding: 60px 0;
    background: #FDF9F5;
}

.assessment-box {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.assessment-box h2 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 2rem;
}

.assessment-box p {
    color: #4A1A2F;
    margin-bottom: 30px;
}

.assessment-questions {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.question-number {
    width: 30px;
    height: 30px;
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.question-text {
    color: #4A1A2F;
    flex: 1;
}

.assessment-result {
    background: #F5E6D3;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.assessment-result p {
    color: #2C0E1F;
    margin: 0;
    font-weight: 600;
}

/* Parental Control */
.parental-control {
    padding: 60px 0;
    background: #F5E6D3;
}

.parental-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.parental-content {
    flex: 1 1 400px;
}

.parental-content h2 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 2rem;
}

.parental-content p {
    color: #4A1A2F;
    line-height: 1.8;
    margin-bottom: 25px;
}

.parental-list {
    list-style: none;
    padding: 0;
}

.parental-list li {
    padding: 10px 0;
    color: #4A1A2F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.parental-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.royal-seal-small {
    background: #2C0E1F;
    border: 4px solid #D4AF37;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.seal-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #D4AF37;
}

.seal-text {
    color: #F5E6D3;
    font-size: 2rem;
    font-weight: 700;
}

/* Commitment Section */
.commitment-section {
    padding: 60px 0;
    background: #FDF9F5;
}

.commitment-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.commitment-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C0E1F;
}

.commitment-box p {
    color: #4A1A2F;
    margin-bottom: 30px;
}

.commitment-list {
    text-align: left;
    margin-bottom: 30px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.commitment-check {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.commitment-item span:last-child {
    color: #4A1A2F;
}

.commitment-footer {
    border-top: 1px solid #D4AF37;
    padding-top: 20px;
}

.commitment-footer p {
    color: #2C0E1F;
    margin: 0;
    font-weight: 600;
}

/* Quick Help */
.quick-help {
    padding: 40px 0;
    background: #F5E6D3;
}

.help-buttons {
    text-align: center;
}

.help-buttons h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .principle-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .tool-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .resource-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .responsible-title {
        font-size: 3rem;
    }
    
    .responsible-title .line:first-child {
        font-size: 2rem;
    }
    
    .principle-card {
        flex: 0 1 100%;
    }
    
    .tool-card {
        flex: 0 1 100%;
    }
    
    .resource-card {
        flex: 0 1 100%;
    }
    
    .signs-grid {
        flex-direction: column;
    }
    
    .anj-header {
        flex-direction: column;
    }
    
    .anj-header h2 {
        font-size: 1.5rem;
    }
    
    .anj-mission {
        width: 100%;
        justify-content: center;
    }
    
    .assessment-box {
        padding: 30px 20px;
    }
    
    .assessment-box h2 {
        font-size: 1.5rem;
    }
    
    .question-item {
        flex-direction: column;
        text-align: center;
    }
    
    .parental-grid {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .responsible-title {
        font-size: 2.5rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .anj-header h2 {
        font-size: 1.2rem;
    }
    
    .anj-logo-large {
        height: 50px;
    }
    
    .royal-seal-small {
        width: 150px;
        height: 150px;
    }
    
    .seal-icon {
        font-size: 2rem;
    }
    
    .seal-text {
        font-size: 1.5rem;
    }
}
/* ====================================
   INDIVIDUAL REVIEW PAGES - ROYAL WINE
   ==================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #FDF9F5;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #D4AF37;
}

.breadcrumb-links a {
    color: #2C0E1F;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-links a:hover {
    color: #D4AF37;
}

.breadcrumb-links .separator {
    color: #D4AF37;
}

.breadcrumb-links .current {
    color: #2C0E1F;
    font-weight: 600;
}

/* Review Header */
.review-header {
    padding: 40px 0;
    background: #F5E6D3;
    border-bottom: 2px solid #D4AF37;
}

.review-header-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.review-logo-large {
    width: 100px;
    height: 100px;
    background: #2C0E1F;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #F5E6D3;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.review-header-info {
    flex: 1;
    min-width: 250px;
}

.review-header-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2C0E1F;
}

.review-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-rating-large .stars {
    color: #D4AF37;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.rating-badge {
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    color: #F5E6D3;
    padding: 4px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.review-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #FDF9F5;
    border: 1px solid #D4AF37;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #2C0E1F;
}

.review-header-cta {
    min-width: 280px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.bonus-box {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-label {
    font-size: 0.8rem;
    color: #D4AF37;
    letter-spacing: 2px;
    font-weight: 600;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2C0E1F;
    display: block;
}

.bonus-desc {
    color: #4A1A2F;
    font-size: 0.9rem;
}

.cta-note {
    font-size: 0.7rem;
    color: #4A1A2F;
    margin-top: 10px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Verdict */
.verdict {
    padding: 40px 0;
    background: #FDF9F5;
}

.verdict-box {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.verdict-icon {
    font-size: 3rem;
    color: #D4AF37;
    flex: 0 0 auto;
}

.verdict-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2C0E1F;
}

.verdict-content p {
    color: #4A1A2F;
    line-height: 1.7;
    margin: 0;
}

/* Pros & Cons */
.pros-cons {
    padding: 40px 0;
    background: #F5E6D3;
}

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

.pros-box, .cons-box {
    flex: 1 1 300px;
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.pros-box h3, .cons-box h3 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #4A1A2F;
}

/* Content Grid */
.review-content {
    padding: 60px 0;
    background: #FDF9F5;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Info Cards */
.info-card {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.info-card h2 {
    color: #2C0E1F;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.license-box {
    background: #FDF9F5;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.license-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.license-item strong {
    color: #D4AF37;
}

.stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.stat-mini {
    text-align: center;
}

.stat-mini-value {
    display: block;
    font-size: 1.5rem;
    color: #D4AF37;
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.7rem;
    color: #2C0E1F;
}

/* Bonus Detail */
.bonus-detail {
    margin-bottom: 25px;
}

.bonus-detail h3 {
    color: #2C0E1F;
    font-size: 1rem;
    margin-bottom: 10px;
}

.bonus-highlight {
    background: #F5E6D3;
    border-left: 4px solid #D4AF37;
    padding: 10px 15px;
    font-size: 1.2rem;
    color: #2C0E1F;
    margin-bottom: 10px;
}

.bonus-note {
    background: #FDF9F5;
    border: 1px solid #D4AF37;
    padding: 15px;
    font-size: 0.9rem;
    color: #2C0E1F;
}

/* Sports Tags */
.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.sports-tags span {
    background: #F5E6D3;
    border: 1px solid #D4AF37;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #2C0E1F;
}

/* App Features */
.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.app-features span {
    background: #F5E6D3;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #2C0E1F;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.payment-methods span {
    background: #F5E6D3;
    border: 1px solid #D4AF37;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #2C0E1F;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-bonus {
    background: #2C0E1F;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.sidebar-bonus h3 {
    color: #F5E6D3;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sidebar-bonus-value {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.sidebar-info {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(44, 14, 31, 0.05);
}

.sidebar-info h4 {
    color: #2C0E1F;
    margin-bottom: 15px;
    font-size: 1rem;
    border-bottom: 1px solid #D4AF37;
    padding-bottom: 10px;
}

.sidebar-note {
    font-size: 2.5rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #2C0E1F;
}

.sidebar-small {
    font-size: 0.8rem;
    color: #F5E6D3;
    margin-top: 15px;
}

.geo-small {
    color: #D4AF37 !important;
}

/* Geo Warning */
.geo-warning .warning-box.geo {
    background: #F5E6D3;
    border: 2px solid #D4AF37;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 50px;
}

.geo-warning .warning-box.geo span {
    font-size: 2rem;
}

.geo-warning .warning-box.geo p {
    color: #2C0E1F;
    margin: 0;
}

/* Card Gold Line */
.card-gold-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: #F5E6D3;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(44, 14, 31, 0.05);
}

.faq-item h3 {
    color: #2C0E1F;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4A1A2F;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .review-header-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .review-rating-large {
        justify-content: center;
    }
    
    .review-badges {
        justify-content: center;
    }
    
    .verdict-box {
        flex-direction: column;
        text-align: center;
    }
    
    .license-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}