/* Privacy Terms Section Styles */
.privacy-terms {
    min-height: 100vh;
    padding: 80px 0 50px;
    background: #f7f7f7;
    position: relative;
}

.privacy-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.privacy-terms .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Main Heading */
.privacy-terms h1 {
    font-size: 3.5rem;
    color: #343434;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.privacy-terms h1 span {
    background: linear-gradient(135deg, #ff3131, #ff9748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Cards */
.section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Section Headings */
.section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.section h2 i {
    color: #667eea;
    font-size: 1.8rem;
}

.section h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin: 25px 0 15px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Paragraphs */
.section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Lists */
.section ul {
    margin: 15px 0;
    padding-left: 0;
}

.section li {
    list-style: none;
    position: relative;
    padding: 10px 0 10px 30px;
    color: #1a1a2e;
    line-height: 1.3;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #2546d7;
    font-weight: bold;
    font-size: 1.3rem;
}

.section li:hover {
    color: #0e0e0e;
    padding-left: 35px;
}

/* Contact Information Styling */
.section p strong {
    color: #1e3fd2;
    font-weight: 600;
}

/* Last Updated */
.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.last-updated p {
    color: #303030;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff9748, #ff3131);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.738);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: linear-gradient(135deg, #ff3131, #ff9748);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.back-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

/* Dark Mode Styles */
.dark-mode .privacy-terms {
    background: #080808;
}

.dark-mode .section {
    background: rgba(255, 255, 255, 0.088);
    border: 1px solid rgba(255, 136, 0, 0.272);
}

.dark-mode .section h2 {
    color: #fff;
    border-bottom-color: #ff9a5b;
}

.dark-mode .section h2 i {
    color: #ff9a5b;
}

.dark-mode .section h3 {
    color: #ff9a5b;
}

.dark-mode .privacy-terms h1 {
    color: #f0f0f0;
}

.dark-mode .section p {
    color: #eaeaea;
}

.dark-mode .section li {
    color: #f5f5f5;
}

.dark-mode .section li:hover {
    color: #ffffff;
}

.dark-mode .section li::before {
    color: #fab184;
}

.dark-mode .section p strong {
    color: #fab184;
}

.dark-mode .back-btn {
    background: linear-gradient(135deg, #ffd6b6, #fb8484);
    border-color: #ffffff;
    color: #000000;
}

.dark-mode .back-btn:hover {
    background: linear-gradient(135deg, #fb8484, #ffd6b6);
}

.dark-mode .last-updated p{
    color: #dcdcdc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-terms {
        padding: 100px 0 30px;
    }
    
    .privacy-terms .container {
        padding: 0 15px;
    }
    
    .privacy-terms h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .section {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .section h2 {
        font-size: 1.8rem;
        gap: 10px;
    }
    
    .section h2 i {
        font-size: 1.5rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }
    
    .back-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-terms h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 20px 15px;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .section h3 {
        font-size: 1.1rem;
    }

}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease forwards;
}

.section:nth-child(2) {
    animation-delay: 0.1s;
}

.section:nth-child(3) {
    animation-delay: 0.2s;
}

.last-updated {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}
