/* Privacy Policy - Premium VIP Styles */
.premium-privacy-wrapper {
}

/* Header */
.privacy-header {
    text-align: center;
    padding: 60px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: #fafafa;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 280px;
}



.privacy-title {
    font-size: 48px;
    font-weight: 600;
    color: #4A3426;
    letter-spacing: -0.5px;
    z-index: 2;
    margin: 0 !important;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.privacy-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #4B5563;
    position: relative;
    z-index: 2;
    margin: 0 !important;
font-family: -apple-system, BlinkMacSystemFont, 
             "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.privacy-date {
    display: inline-block;
    padding: 8px 22px;
    background: #fff;
    border-radius: 20px;
    font-size: 14px;
    color: #b87939;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(184, 121, 57, 0.1);
    position: relative;
    z-index: 2;
}



/* Content Sections */

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 16px;
}

.privacy-content {
    margin-bottom: 70px;
}

.privacy-section {
    position: relative;
    padding: 45px 35px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.privacy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(184, 121, 57, 0.1);
    border-color: #b87939;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-number {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    user-select: none;
    opacity: 0.6;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    border-radius: 2px;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Footer CTA */
/* Contact CTA */
.shipping-cta {
    background: #4A3426;
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(184, 121, 57, 0.3);
}


@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shipping-cta h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}

.shipping-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background: #FFFFFF1A;
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: black !important;
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-container {
        padding: 40px 12px;
    }
    .privacy-header {
        padding: 40px 0;
        height: 250px;
    }
    
    .privacy-title {
        font-size: 32px;
    }
    .privacy-subtitle {
        font-size: 16px;
    }
    
    .privacy-content {
        margin-bottom: 50px;
    }
    
    .privacy-section {
        padding: 35px 24px;
        margin-bottom: 20px;
    }
    
    .section-number {
        font-size: 48px;
        right: 20px;
        top: 15px;
    }
    
    .section-title {
        font-size: 19px;
    }
    
    .section-title::before {
        left: -24px;
        height: 20px;
    }
    
    .shipping-cta {
        padding: 40px 28px;
    }
    
    .shipping-cta h3 {
        font-size: 24px;
    }
}