/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --header-bg: #ffffff;
    --top-header-bg: #f8f9fa;
    --accent-color: #e67e22;
    --card-bg: white;
    --bg-color: #f5f5f5;
    --footer-bg: #2c3e50;
    --filter-btn-bg: white;
    --modal-bg: white;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --header-text-color: #2c3e50;
    --border-color: #e0e0e0;
    --white: #fff;
    --black: #000;
    --gray: #95a5a6;
    --light-gray: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-sm: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --header-bg: #1a1a1a;
    --top-header-bg: #0d0d0d;
    --accent-color: #e67e22;
    --card-bg: #1e1e1e;
    --footer-bg: #1a1a1a;
    --filter-btn-bg: #2d2d2d;
    --modal-bg: #2d2d2d;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    --header-text-color: #ffffff;
    --border-color: #333333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn.secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.section {
    padding: 80px 0;
}



/* Top Header Styles */
.top-header {
    background-color: var(--top-header-bg);
    color: var(--header-text-color);
    padding: 0.8rem 0.2rem;
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.logo {
    width: 60px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;

    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--header-text-color);
}

.site-tagline {
    font-size: 0.9rem;
    color: var(--header-text-color);
    opacity: 0.8;
    margin-top: 3px;
}

/* Main Header Styles */
header {
    background-color: var(--header-bg);
    color: var(--header-text-color);
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--header-text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--header-text-color);
    border-radius: 2px;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--header-text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--header-bg);
    z-index: 999;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mobile-nav-logo-text h3 {
    font-size: 1.2rem;
    color: var(--header-text-color);
}

.mobile-nav-logo-text p {
    font-size: 0.8rem;
    color: var(--header-text-color);
    opacity: 0.8;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--header-text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    padding: 1.5rem;
}

.mobile-nav-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    color: var(--header-text-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a.active {
    color: var(--accent-color);
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    margin: 15px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-preview .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonials .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-video {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.testimonial-video video {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* News Preview Section */
.news-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.news-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 15px;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h3 {
    padding: 0 20px;
    margin-top: 15px;
}

.news-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.news-card .btn {
    margin: 0 20px 20px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    color: var(--light-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-column p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    border: none;
}

.newsletter button {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

.page-header p {
    color: var(--light-gray);
    font-size: 1.2rem;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-history,
.mission-vision {
    margin-bottom: 60px;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission,
.vision {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid var(--light-color);
}

.achievements {
    margin-bottom: 60px;
}

.achievement-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.achievement-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.achievement-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.partners {
    margin-bottom: 60px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logos img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.cta-section {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

/* Donation Page Styles */
.donation-content {
    padding: 60px 0;
}

.donation-intro {
    margin-bottom: 60px;
}

.donation-intro ul {
    margin: 20px 0 20px 20px;
}

.donation-intro ul li {
    margin-bottom: 10px;
}

.donation-options {
    margin-bottom: 60px;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.option-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.option-card h3 {
    color: var(--primary-color);
}

.option-card .btn {
    margin-top: 20px;
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.payment-methods {
    margin: 30px 0;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-option {
    flex: 1;
    min-width: 150px;
}

.payment-option input {
    display: none;
}

.payment-card {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.payment-option input:checked+.payment-card {
    border-color: var(--primary-color);
    background-color: rgba(44, 62, 80, 0.1);
}

.payment-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.payment-card span {
    display: block;
    font-weight: 600;
}

.donation-impact {
    margin-bottom: 60px;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.impact-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.impact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.impact-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.donor-recognition {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.donor-recognition ul {
    margin: 20px 0 20px 20px;
}

.donor-recognition ul li {
    margin-bottom: 15px;
}

.donor-recognition ul li strong {
    color: var(--primary-color);
}

/* News Page Styles */
.news-content {
    padding: 60px 0;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-sm);
}

.news-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.news-date .month {
    font-size: 0.9rem;
    display: block;
    line-height: 1;
}

.news-details {
    padding: 20px;
}

.news-category {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.news-details h3 {
    margin-bottom: 10px;
}

.news-details h3 a {
    color: var(--dark-color);
}

.news-details h3 a:hover {
    color: var(--secondary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition);
}

.page-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-btn.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

.newsletter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    color: var(--white);
}

.newsletter-section p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--light-gray);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

/* Activities Page Styles */
.activities-content {
    padding: 60px 0;
}

.activities-intro {
    margin-bottom: 40px;
}

.activities-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.activity-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-image {
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.activity-details {
    padding: 20px;
}

.activity-details h3 {
    margin-bottom: 10px;
}

.activity-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.activity-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.activity-testimonials {
    margin: 60px 0;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-video {
    flex: 1;
    min-width: 300px;
}

.testimonial-video video {
    width: 100%;
    border-radius: var(--radius);
}

.testimonial-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 15px;
    font-style: normal;
}

.activity-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
}

.activity-cta h2 {
    color: var(--white);
}

.activity-cta p {
    max-width: 600px;
    margin: 0 auto 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* More Page Styles */
.more-content {
    padding: 60px 0;
}

.more-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.more-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.more-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.more-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.more-card h3 {
    margin-bottom: 15px;
}

.more-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.info-content h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.map-container {
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.transport-options {
    margin-top: 20px;
}

.transport-options h4 {
    margin-bottom: 10px;
}

.transport-options p {
    margin-bottom: 5px;
}

.transport-options strong {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.contact-map {
    margin-bottom: 60px;
}

.contact-departments {
    max-width: 1000px;
    margin: 0 auto;
}

.departments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.department-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.department-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.department-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.department-card i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Book Online Page Styles */
.booking-content {
    padding: 60px 0;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.booking-steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.step.active span {
    background-color: var(--primary-color);
}

.step.active p {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.activity-options {
    margin-bottom: 30px;
}

.activity-option {
    margin-bottom: 15px;
}

.activity-option input {
    display: none;
}

.activity-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.activity-option input:checked+label {
    border-color: var(--primary-color);
    background-color: rgba(44, 62, 80, 0.05);
}

.activity-option h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.activity-option .price {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.booking-summary {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
}

.booking-summary h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.summary-details p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.summary-details p strong {
    color: var(--primary-color);
}

.summary-details p span {
    font-weight: 600;
}

.terms {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.terms input {
    width: auto;
    margin-right: 10px;
}

.terms label {
    margin-bottom: 0;
}

.booking-info {
    max-width: 800px;
    margin: 0 auto;
}

/* Members Page Styles */
.members-content {
    padding: 60px 0;
}

.login-required {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.login-message {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.member-welcome {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.member-benefits {
    margin-bottom: 60px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    margin-bottom: 15px;
}

.member-exclusive {
    margin-bottom: 60px;
}

.exclusive-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.exclusive-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.exclusive-video video,
.exclusive-image img {
    width: 100%;
    display: block;
}

.exclusive-item h4 {
    padding: 20px 20px 10px;
}

.exclusive-item p {
    padding: 0 20px 20px;
}

.exclusive-item .btn {
    margin: 0 20px 20px;
}

.member-events {
    margin-bottom: 60px;
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.event-date {
    flex: 0 0 80px;
    text-align: center;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    display: block;
    line-height: 1;
}

.event-details {
    flex: 1;
    min-width: 250px;
}

.event-details h4 {
    margin-bottom: 15px;
}

.event-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.event-details i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.member-profile {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-image {
    flex: 0 0 150px;
    text-align: center;
}

.profile-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid var(--light-color);
}

.profile-details {
    flex: 1;
    min-width: 250px;
}

.profile-details p {
    margin-bottom: 15px;
}

.profile-details strong {
    color: var(--primary-color);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Auth Pages Styles */
.auth-content {
    padding: 60px 0;
}

.auth-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.auth-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-benefits {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.auth-benefits h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.auth-benefits ul {
    list-style: none;
}

.auth-benefits ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.auth-benefits ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.auth-switch {
    margin-top: 20px;
    text-align: center;
}

.auth-switch p {
    color: var(--text-light);
}

.auth-switch a {
    color: var(--secondary-color);
    font-weight: 600;
}

.forgot-password {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.remember {
    display: flex;
    align-items: center;
}

.remember input {
    width: auto;
    margin-right: 10px;
}

.remember label {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .feature-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .about-preview .container,
    .mission-vision {
        flex-direction: column;
    }

    .news-card,
    .activity-card {
        max-width: 100%;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex: 1;
        min-width: 100px;
    }

    .booking-steps:before {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-video {
        position: relative;
        height: 300px;
    }

    .hero-content {
        position: relative;
        margin-top: 300px;
    }

    .cta-buttons,
    .auth-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: var(--radius-sm);
    }

    .form-navigation {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .form-navigation .btn {
        width: 100%;
    }
}





/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
    color: #ffffff;
}

.dark-mode header {
    background-color: #1e1e1e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .logo h1 {
    color: #ffffff;
}

.dark-mode nav ul li a {
    color: #e0e0e0;
}

.dark-mode nav ul li a:hover {
    color: #f39c12;
}

.dark-mode .feature-card,
.dark-mode .mission,
.dark-mode .vision,
.dark-mode .achievement-card,
.dark-mode .option-card,
.dark-mode .donation-form-container,
.dark-mode .donor-recognition,
.dark-mode .news-card,
.dark-mode .activity-card,
.dark-mode .more-card,
.dark-mode .info-card,
.dark-mode .contact-form-container,
.dark-mode .contact-info,
.dark-mode .department-card,
.dark-mode .booking-form-container,
.dark-mode .booking-info .info-card,
.dark-mode .login-required,
.dark-mode .member-welcome,
.dark-mode .benefit-card,
.dark-mode .exclusive-item,
.dark-mode .event-card,
.dark-mode .profile-card,
.dark-mode .auth-form {
    background-color: #1e1e1e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
}

.dark-mode .impact-card,
.dark-mode .testimonial {
    background-color: #1e1e1e;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
}

.dark-mode .payment-card {
    background-color: #2d2d2d;
}

.dark-mode .payment-option input:checked+.payment-card {
    background-color: rgba(243, 156, 18, 0.1);
}

.dark-mode .activity-option label {
    border-color: #3d3d3d;
    background-color: #2d2d2d;
}

.dark-mode .activity-option input:checked+label {
    background-color: rgba(243, 156, 18, 0.1);
}

.dark-mode footer {
    background-color: #1e1e1e;
}

.dark-mode .footer-column h3 {
    color: #ffffff;
}

.dark-mode .footer-column ul li a,
.dark-mode .footer-column p {
    color: #b0b0b0;
}

.dark-mode .footer-column ul li a:hover {
    color: #ffffff;
}

.dark-mode .social-icons a {
    color: #b0b0b0;
}

.dark-mode .social-icons a:hover {
    color: #f39c12;
}

.dark-mode .page-header {
    background-color: #1e1e1e;
}

.dark-mode .page-header h1 {
    color: #ffffff;
}

.dark-mode .page-header p {
    color: #b0b0b0;
}

.dark-mode .booking-summary {
    background-color: #2d2d2d;
}

.dark-mode .summary-details p strong {
    color: #f39c12;
}

.dark-mode .terms label,
.dark-mode .remember label {
    color: #e0e0e0;
}

.dark-mode .auth-benefits {
    background-color: #1e1e1e;
}

.dark-mode .auth-benefits h3 {
    color: #ffffff;
}

.dark-mode .auth-benefits ul li {
    color: #e0e0e0;
}

.dark-mode .auth-switch p {
    color: #b0b0b0;
}

.dark-mode .dark-mode-toggle {
    color: #f39c12;
}

/* Additional dark mode styles for specific elements */
.dark-mode .hero-content {
    background-color: rgba(30, 30, 30, 0.9);
}

.dark-mode .btn {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .btn:hover {
    background-color: #e67e22;
}

.dark-mode .btn.secondary {
    background-color: #2d2d2d;
    color: #f39c12;
}

.dark-mode .btn.secondary:hover {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .filter-btn {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .filter-btn.active {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .step span {
    background-color: #3d3d3d;
}

.dark-mode .step.active span {
    background-color: #f39c12;
}

.dark-mode .step.active p {
    color: #f39c12;
}

.dark-mode .read-more {
    color: #f39c12;
}

.dark-mode .read-more:hover {
    color: #e67e22;
}

.dark-mode .news-date {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .activity-price {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .event-date {
    background-color: #f39c12;
    color: #121212;
}

.dark-mode .profile-image img {
    border-color: #2d2d2d;
}

.dark-mode .partner-logos img {
    filter: grayscale(100%) brightness(0.8);
}

.dark-mode .partner-logos img:hover {
    filter: grayscale(0) brightness(1);
}



/* ======================
   FOOTER STYLES
   ====================== */

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-newsletter input {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: none;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-gray);
}






.social-links {
    margin-top: 25px;
}

.social-links h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 25px;
}

.newsletter h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--light-gray);
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-bottom a {
    color: var(--accent-color);
}

















/* ======================
   FOOTER DARK MODE STYLES
   ====================== */

.dark-mode footer {
    background-color: #1e1e1e;
    border-top: 1px solid #2d2d2d;
}

.dark-mode .footer-column h3 {
    color: var(--white);
    border-bottom-color: #2d2d2d;
}

.dark-mode .footer-column ul li a {
    color: #b0b0b0;
}

.dark-mode .footer-column ul li a:hover {
    color: var(--accent-color);
}

.dark-mode .footer-contact-info p {
    color: #b0b0b0;
}

.dark-mode .social-icons a {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .social-icons a:hover {
    background-color: var(--accent-color);
    color: #121212;
}

.dark-mode .newsletter-form input {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .newsletter-form input::placeholder {
    color: #7f7f7f;
}

.dark-mode .footer-bottom {
    border-top-color: #2d2d2d;
    color: #7f7f7f;
}




/* ======================
   NEWS SINGLE PAGE STYLES
   ====================== */

.news-single-content {
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.breadcrumbs a {
    color: var(--light-gray);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--accent-color);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.news-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
}

.featured-image {
    margin-bottom: 30px;
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: var(--radius);
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.article-content {
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content .intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.dark-mode .article-content .intro {
    color: var(--white);
}

.article-content h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.article-content h3 {
    margin: 30px 0 15px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.video-embed {
    margin: 40px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.video-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.schedule-day {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius);
}

.dark-mode .schedule-day {
    background-color: #2d2d2d;
}

.schedule-day h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .schedule-day h3 {
    border-bottom-color: #3d3d3d;
}

.schedule-day p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: var(--light-color);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.dark-mode blockquote {
    background-color: #2d2d2d;
}

.ticket-prices {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.ticket-prices th,
.ticket-prices td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.ticket-prices th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--primary-color);
}

.dark-mode .ticket-prices th {
    background-color: #2d2d2d;
}

.ticket-prices tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.dark-mode .ticket-prices tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.article-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.tags {
    margin-bottom: 15px;
}

.tags a {
    color: var(--text-light);
    margin-right: 5px;
}

.tags a:hover {
    color: var(--accent-color);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-share span {
    font-weight: 600;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-share a.facebook {
    background-color: #3b5998;
}

.social-share a.twitter {
    background-color: #1da1f2;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a.linkedin {
    background-color: #0077b5;
}

.social-share a:hover {
    transform: translateY(-3px);
}

.related-news {
    margin-top: 80px;
}

.related-news h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.related-item {
    flex: 1;
    min-width: 250px;
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.related-item:hover img {
    transform: scale(1.03);
}

.related-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: var(--transition);
}

.related-item:hover h3 {
    color: var(--accent-color);
}

.related-item .date {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-share {
        margin-top: 15px;
    }
}




/* ======================
   TERMS & CONDITIONS PAGE
   ====================== */

.legal-content {
    padding: 60px 0;
}

.legal-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.toc-sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.toc-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.toc-sidebar ul {
    list-style: none;
}

.toc-sidebar li {
    margin-bottom: 12px;
}

.toc-sidebar a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.toc-sidebar a:hover,
.toc-sidebar a.active {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.legal-main-content {
    flex: 1;
    min-width: 300px;
}

.legal-main-content article {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.legal-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-color);
}

.legal-main-content h3 {
    margin: 25px 0 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.dark-mode .legal-main-content h3 {
    color: var(--white);
}

.legal-main-content p,
.legal-main-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-main-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-main-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.legal-main-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.legal-main-content address {
    font-style: normal;
    margin: 20px 0;
}

.legal-main-content address p {
    margin-bottom: 5px;
}

.acceptance-section {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
}

.dark-mode .acceptance-section {
    background-color: #2d2d2d;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .toc-sidebar {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .toc-sidebar {
        position: static;
        flex: 0 0 100%;
        max-height: none;
    }

    .legal-main-content article {
        scroll-margin-top: 20px;
    }
}


/* ======================
   PRIVACY POLICY PAGE
   ====================== */

.legal-content {
    padding: 60px 0;
}

.legal-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.toc-sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.toc-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.toc-sidebar ul {
    list-style: none;
}

.toc-sidebar li {
    margin-bottom: 12px;
}

.toc-sidebar a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.toc-sidebar a:hover,
.toc-sidebar a.active {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.legal-main-content {
    flex: 1;
    min-width: 300px;
}

.legal-main-content article {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.legal-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-color);
}

.legal-main-content h3 {
    margin: 25px 0 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.dark-mode .legal-main-content h3 {
    color: var(--white);
}

.legal-main-content p,
.legal-main-content li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-main-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-main-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.legal-main-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.legal-main-content address {
    font-style: normal;
    margin: 20px 0;
}

.legal-main-content address p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .toc-sidebar {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .toc-sidebar {
        position: static;
        flex: 0 0 100%;
        max-height: none;
    }

    .legal-main-content article {
        scroll-margin-top: 20px;
    }
}


/* ======================
   AUTH PAGES STYLES
   ====================== */

.auth-section {
    padding: 80px 0;
}

.auth-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.dark-mode .auth-form {
    background-color: #1e1e1e;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.auth-header p {
    color: var(--text-light);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon input {
    width: 100%;
    padding-left: 40px;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.auth-footer p {
    margin-bottom: 10px;
}

.auth-footer a {
    color: var(--accent-color);
    font-weight: 600;
}

.auth-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.auth-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-benefits {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.dark-mode .auth-benefits {
    background-color: #1e1e1e;
}

.auth-benefits h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.auth-benefits ul {
    list-style: none;
}

.auth-benefits ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.auth-benefits ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        gap: 30px;
    }

    .auth-image {
        order: -1;
    }

    .auth-benefits {
        position: static;
        margin-top: 30px;
    }
}



/* GALLERY PAGE */

        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            height: 70vh;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            text-align: center;
            color: white;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 2rem;
            border-radius: 5px;
            max-width: 600px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .slide-content p {
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: white;
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .arrow {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.3);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            transition: background-color 0.3s;
        }

        .arrow:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        /* Gallery Section Styles */
        .gallery-section {
            padding: 3rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .filter-btn {
            background-color: white;
            border: 1px solid #ddd;
            padding: 0.7rem 1.5rem;
            margin: 0.5rem;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background-color: #e67e22;
            color: white;
            border-color: #e67e22;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }

        .gallery-item-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .gallery-item-category {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        
        .gallery-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background-color: var(--card-bg);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .gallery-cta h2 {
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .gallery-cta p {
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        /* Modal Lightbox Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: auto;
        }

        .modal-content {
            position: relative;
            margin: 5% auto;
            width: 80%;
            max-width: 800px;
            max-height: 500px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            animation: modalOpen 0.5s;
        }

        @keyframes modalOpen {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-image {
            width: 100%;
            height: 50vh;
            object-fit: cover;
        }

        .modal-info {
            padding: 1.5rem;
        }

        .modal-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .modal-category {
            color: #e67e22;
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background-color: #fef5e7;
            border-radius: 4px;
        }

        .modal-description {
            line-height: 1.6;
            color: #555;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 10;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .modal-arrow {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .modal-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

             /* Responsive Styles */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal-content {
                width: 90%;
            }
        }

        @media (max-width: 768px) {
            .top-header, header {
                position: sticky;
                top: 0;
                z-index: 1000;
            }

            header {
                top: 115px;
            }

            .hero-slider {
                height: 50vh;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .slider-arrows {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .hamburger {
                display: flex;
            }

            .desktop-nav {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-newsletter form {
                flex-direction: column;
            }
        }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Higher than header/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Dark mode support */
.dark-mode .whatsapp-float {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.me {
    color: green;
}


/* FAQ Page Styles */
.faq-content {
    padding: 60px 0;
}

.faq-intro {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-categories {
    margin-bottom: 40px;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-btn:hover:not(.active) {
    background-color: var(--accent-color);
    color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-color);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--radius);
}

.faq-cta h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-cta p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Mode Styles for FAQ */
.dark-mode .faq-item {
    border-color: #3d3d3d;
}

.dark-mode .faq-question {
    background-color: #1e1e1e;
}

.dark-mode .faq-question h3 {
    color: var(--accent-color);
}

.dark-mode .faq-question i {
    color: var(--accent-color);
}

.dark-mode .faq-answer {
    background-color: #1e1e1e;
}

.dark-mode .faq-answer p {
    color: #e0e0e0;
}

.dark-mode .faq-cta {
    background-color: #2d2d2d;
}

.dark-mode .category-btn {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .category-btn.active {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.dark-mode .category-btn:hover:not(.active) {
    background-color: var(--accent-color);
    color: var(--dark-color);
}


/* Resources Page Styles */
.resources-content {
    padding: 60px 0;
}

.resources-intro {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.resources-intro h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.category-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resources-section {
    margin-bottom: 60px;
    padding-top: 30px;
}

.resources-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-image {
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-details {
    padding: 20px;
}

.resource-details h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.resource-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.resources-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--radius);
    margin-top: 60px;
}

.resources-cta h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resources-cta p {
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Dark Mode Styles for Resources */
.dark-mode .category-card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .category-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .resource-card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .resource-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .resources-section h2 {
    border-bottom-color: #3d3d3d;
}

.dark-mode .resource-details h3 {
    color: var(--accent-color);
}

.dark-mode .resources-cta {
    background-color: #2d2d2d;
}

.dark-mode .resource-meta {
    color: #b0b0b0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-categories {
        flex-direction: column;
        align-items: center;
    }

    .category-card {
        width: 100%;
        max-width: 400px;
    }
}