/* taleb.io consolidated styles - Cyan/Education Theme */
/* Exactly the same structure as Samo, adapted for taleb.io with #15c2ea */

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Tajawal', sans-serif;
    line-height: 1.6;
    color: #e4f0fa;
    background: linear-gradient(135deg, #0b2a3b 0%, #103c50 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #b0eaff;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(21, 194, 234, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #cde8f5;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    margin-bottom: 40px;
}

.policy-card {
    background: #0e3342;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(21, 194, 234, 0.25);
    border: 1px solid rgba(21, 194, 234, 0.35);
    overflow: hidden;
}

.policy-section {
    padding: 32px;
    border-bottom: 1px solid rgba(21, 194, 234, 0.2);
    transition: all 0.3s ease;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section:hover {
    background: rgba(21, 194, 234, 0.07);
}

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

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0e8faf 0%, #15c2ea 100%);
    color: #031016;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(21, 194, 234, 0.5);
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c2f0ff;
    margin: 0;
}

.policy-section p {
    color: #dff1fc;
    line-height: 1.7;
    font-size: 1rem;
    margin-right: 56px;
}

.footer {
    text-align: center;
    padding: 30px;
}

.footer-content {
    background: #0a2833;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(21, 194, 234, 0.25);
    border: 1px solid rgba(21, 194, 234, 0.35);
}

.footer-content p {
    color: #cbe5f0;
    margin-bottom: 8px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content strong {
    color: #b0eaff;
}

/* ===== Cyan/Teal Theme Overrides (taleb.io) ===== */

/* Page background */
body {
    background: linear-gradient(135deg, #0b2a3b 0%, #0f3647 100%);
}

/* Header */
.main-title {
    color: #b5f0ff;
    text-shadow: 2px 2px 4px rgba(18, 150, 180, 0.5);
}
.subtitle {
    color: #d3f0fa;
}

/* Card and sections */
.policy-card {
    box-shadow: 0 20px 40px rgba(21, 194, 234, 0.3);
    border: 1px solid rgba(21, 194, 234, 0.4);
}
.policy-section {
    border-bottom: 1px solid rgba(21, 194, 234, 0.2);
}
.policy-section:hover {
    background: rgba(21, 194, 234, 0.08);
}
.section-header h2 {
    color: #c2f0ff;
}
.section-number {
    background: linear-gradient(135deg, #0e8faf 0%, #15c2ea 100%);
    box-shadow: 0 4px 12px rgba(21, 194, 234, 0.5);
    color: #031016;
    font-weight: 800;
}

/* Footer */
.footer-content {
    box-shadow: 0 10px 30px rgba(21, 194, 234, 0.3);
    border: 1px solid rgba(21, 194, 234, 0.4);
}
.footer-content strong {
    color: #c2f0ff;
}

/* Links */
a {
    color: #a2e6ff;
    text-decoration: none;
    font-weight: 500;
}
a:hover {
    color: #e1f9ff;
    text-decoration: underline;
}

/* Scrollbar accent */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #103c50;
}
::-webkit-scrollbar-thumb {
    background: #15c2ea;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3fd0f0;
}

/* Hover accents */
.policy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(21, 194, 234, 0.4);
    transition: all 0.3s ease;
}
.section-number:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.policy-section {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container { padding: 15px; }
    .main-title { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    .policy-section { padding: 24px 20px; }
    .section-header h2 { font-size: 1.3rem; }
    .policy-section p { margin-right: 0; margin-top: 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2rem; }
    .policy-section { padding: 20px 16px; }
    .section-header h2 { font-size: 1.2rem; }
    .policy-section p { font-size: 0.95rem; }
}

html { 
    scroll-behavior: smooth; 
}