/* Pages specific styles */

/* Main content styling */
main {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
}

.section-title {
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--accent-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(246, 246, 245, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(251, 82, 1, 0.1);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background: rgba(246, 246, 245, 0.05);
    border-color: rgba(251, 82, 1, 0.2);
    transform: translateY(-2px);
}

.privacy-section h2 {
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.privacy-section h3 {
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin: 25px 0 15px;
    line-height: 1.4;
}

.privacy-section p {
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section li {
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.privacy-section li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-section strong {
    color: var(--accent-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-section a:hover {
    color: var(--add-color);
    border-bottom-color: var(--add-color);
}

/* Table styling for cookie policy */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(246, 246, 245, 0.03);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(251, 82, 1, 0.1);
}

.cookie-table thead {
    background: rgba(251, 82, 1, 0.1);
}

.cookie-table th {
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 15px;
    text-align: left;
    border-bottom: 2px solid rgba(251, 82, 1, 0.2);
}

.cookie-table td {
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    padding: 18px 15px;
    border-bottom: 1px solid rgba(251, 82, 1, 0.1);
    opacity: 0.9;
}

.cookie-table tbody tr:hover {
    background: rgba(251, 82, 1, 0.05);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive design */
@media (max-width: 1200px) {
    .privacy-content {
        max-width: 900px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    main {
        padding: 30px 0 60px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .privacy-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
        margin: 20px 0 12px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }
    
    .cookie-table {
        font-size: 12px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}

/* Animation for page load */
.privacy-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for multiple sections */
.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1.0s; }
.privacy-section:nth-child(11) { animation-delay: 1.1s; }
.privacy-section:nth-child(12) { animation-delay: 1.2s; }
