/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #e53e3e;
    --light-color: #f7fafc;
    --text-color: #2d3748;
    --text-light: #718096;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-screen p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    text-align: left;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.logo-main {
    color: var(--primary-color);
}

.logo-desk {
    color: var(--accent-color);
}

.tagline {
    color: var(--text-light);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-link:hover .logo {
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    font-family: 'Inter', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Action Area */
.hero-action {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.action-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Social Buttons */
.social-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.social-btn.twitter {
    background: #000000;
    color: white;
}

.social-btn.twitter:hover {
    background: #333333;
    transform: translateY(-2px);
}

.social-btn.facebook {
    background: #1877F2;
    color: white;
}

.social-btn.facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #3048C4, #4839C1, #722A9A, #B12564, #D1205C, #ED0D0D);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-text {
    flex: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    opacity: 0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Coverage Section */
.coverage {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coverage-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-color);
}

.coverage-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.coverage-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.coverage-icon {
    font-size: 2.5rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
}

.coverage-card:hover .coverage-icon {
    opacity: 0.3;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    padding-top: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: block;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-details {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    color: white;
}

.social-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
    opacity: 0;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.social-link.twitter {
    border-left-color: #1DA1F2;
}

.social-link.facebook {
    border-left-color: #1877F2;
}

.social-link.linkedin {
    border-left-color: #0077B5;
}

.social-link.instagram {
    border-left-color: #E4405F;
}

.social-link.youtube {
    border-left-color: #FF0000;
}

.social-icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    text-align: center;
}

.social-name {
    font-weight: 500;
    flex: 1;
}

.social-handle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-meta {
    display: flex;
    gap: 30px;
}

.location, .language {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    opacity: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question:hover {
    background-color: #f7fafc;
}

.faq-question[aria-expanded="true"] {
    background-color: #f7fafc;
}

.faq-question-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    min-width: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.open {
    padding: 0 30px 25px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 15px 0;
}

/* Email Protection Styles - Enhanced */
.email-obfuscated {
    unicode-bidi: bidi-override;
    direction: rtl;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 2px 4px;
    border-radius: 3px;
}

.email-obfuscated:hover {
    color: var(--primary-color);
    text-decoration: underline;
    background-color: rgba(229, 62, 62, 0.1);
}

.email-obfuscated::after {
    content: " (click to reveal)";
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: normal;
    direction: ltr;
    unicode-bidi: normal;
}

.email-obfuscated:hover::after {
    content: " (click to email)";
}

/* For links specifically */
a.email-obfuscated {
    border-bottom: 1px dotted var(--accent-color);
}

a.email-obfuscated:hover {
    border-bottom: 1px solid var(--primary-color);
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.cta-link:hover {
    border-bottom-color: var(--accent-color);
}

/* Page Hero for Policy Pages */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: var(--header-height);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 400;
}

.page-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    padding: 80px 0;
    background-color: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.policy-article {
    max-width: 900px;
}

.policy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-section li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-update {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 60px;
    text-align: center;
}

.policy-update p {
    margin: 0;
    font-size: 1.1rem;
}

/* Sidebar Styles */
.policy-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.sidebar-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.sidebar-links li:last-child a {
    border-bottom: none;
}

.policy-highlights {
    list-style: none;
    padding: 0;
}

.policy-highlights li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
}

.policy-highlights li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-highlights li:last-child {
    border-bottom: none;
}

/* Journalistic Ethics Specific Styles */
.ethics-intro {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.ethics-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    margin: 0;
}

.ethics-principles {
    list-style: none;
    padding: 0;
}

.ethics-principles li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
}

.ethics-principles li:last-child {
    border-bottom: none;
}

.ethics-principles strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.resources-list {
    list-style: none;
    padding: 0;
}

.resources-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-light);
}

.resources-list li:last-child {
    border-bottom: none;
}

.ethics-pledge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    margin-top: 60px;
    text-align: center;
}

.pledge-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pledge-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pledge-content p:last-child {
    margin-bottom: 0;
}

/* Email Protection Styles */
.email-obfuscated {
    unicode-bidi: bidi-override;
    direction: rtl;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.email-obfuscated:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card, .coverage-card, .social-link {
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Animation Delays */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.coverage-card:nth-child(1) { animation-delay: 0.1s; }
.coverage-card:nth-child(2) { animation-delay: 0.2s; }
.coverage-card:nth-child(3) { animation-delay: 0.3s; }
.coverage-card:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

/* Add more spacing for better readability */
.hero-action .social-preview {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .policy-sidebar {
        position: static;
        order: -1;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.open {
        padding: 0 20px 20px;
    }
    
    .faq-cta {
        padding: 20px;
        margin-top: 30px;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section h2 {
        font-size: 1.7rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .ethics-intro {
        padding: 30px 20px;
    }
    
    .ethics-pledge {
        padding: 30px 20px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
    
    .logo-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .site-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-action {
        padding: 30px 20px;
    }
    
    .social-section {
        padding: 30px 20px;
    }
    
    .social-link {
        padding: 12px 15px;
    }
    
    .social-handle {
        display: none;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer.open {
        padding: 0 15px 15px;
    }
    
    .faq-cta {
        padding: 15px;
    }
    
    .page-hero {
        padding: 60px 0 30px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .contact-details {
        padding: 20px 15px;
    }
    
    .policy-update {
        padding: 20px 15px;
    }
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.feed-container {
    max-width: 1200px;
    margin: 50px auto 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    padding: 40px;
}

.instagram-embed {
    width: 100%;
    min-height: 400px;
    position: relative;
}

.feed-loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    color: var(--text-light);
}

.feed-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(229, 62, 62, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.feed-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.instagram:hover {
    background: linear-gradient(45deg, #3048C4, #4839C1, #722A9A, #B12564, #D1205C, #ED0D0D);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.instagram:active {
    transform: translateY(-1px);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-text {
    flex: 1;
}

.cta-subtext {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Style for EmbedSocial iframe */
.instagram-embed iframe {
    width: 100%;
    border: none;
    border-radius: var(--border-radius);
    min-height: 400px;
}

/* Instagram feed grid override */
.instagram-embed .espro-widget-container {
    background: transparent !important;
}

.instagram-embed .espro-widget {
    margin: 0 !important;
    padding: 0 !important;
}