/* Global Styles */
:root {
    --primary-color: #1a3e59;
    --secondary-color: #ff6b35;
    --accent-color: #3fa9f5;
    --dark-color: #1a2639;
    --light-color: #f5f7fa;
    --text-color: #333;
    --light-text: #f5f7fa;
    --border-color: #e1e4e8;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #FF5252;
    --gray-color: #6c757d;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap');

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    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: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

button, .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

button:hover, .btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #e65728;
}

.btn-tertiary {
    background-color: var(--gray-color);
    color: var(--light-text);
}

.btn-tertiary:hover {
    background-color: #5a6268;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(63, 169, 245, 0.2);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.logo-container h1 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

nav ul li a i {
    margin-right: 0.5rem;
}

nav ul li a:hover, nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 62, 89, 0.8), rgba(26, 38, 57, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 62, 89, 0.8), rgba(26, 38, 57, 0.8));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.blog-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/6.jpg');
}

.podcast-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/4.jpg');
}

.about-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/19.jpg');
}

.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/3.jpg');
}

/* Featured Section */
.featured {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.featured h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.featured h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 0.75rem;
}

/* Tip of the Day */
.tip-of-day {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.tip-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-left: 5px solid var(--secondary-color);
}

.tip-container h2 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-container h2 i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.75rem;
}

.tip-content p {
    font-style: italic;
    margin-bottom: 0;
}

/* Latest Podcasts */
.latest-podcasts {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
}

.latest-podcasts h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.latest-podcasts h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.podcast-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.podcast-thumbnail {
    width: 150px;
    position: relative;
}

.podcast-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn i {
    color: #fff;
    font-size: 1.25rem;
}

.play-btn:hover {
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.podcast-details {
    padding: 1.25rem;
    flex: 1;
}

.podcast-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.podcast-details p {
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.podcast-meta {
    display: flex;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.podcast-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.podcast-meta span i {
    margin-right: 0.3rem;
}

.view-all {
    text-align: center;
}

/* Subscribe Section */
.subscribe {
    padding: 5rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
}

.subscribe-container {
    max-width: 700px;
    margin: 0 auto;
}

.subscribe h2 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.subscribe p {
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    margin-bottom: 0;
    border-radius: 4px 0 0 4px;
    border: none;
}

.subscribe-form button {
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 2rem 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 0.75rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* Blog Page Styles */
.blog-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .blog-post {
        flex-direction: row;
    }
}

.post-image {
    flex: 0 0 40%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
    flex: 1;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 0.5rem;
}

.post-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.excerpt {
    margin-bottom: 1.5rem;
}

/* Podcast Page Styles */
.podcast-main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.series-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.series-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.series-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.series-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.series-content {
    padding: 1.5rem;
}

.series-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.series-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.series-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.listen-platforms {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.platform-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.episode-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    position: relative;
}

.episode-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    z-index: 10;
}

.episode-thumbnail {
    width: 200px;
    position: relative;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-details {
    padding: 1.5rem;
    flex: 1;
}

.episode-series {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.episode-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.episode-details p {
    color: #666;
    margin-bottom: 1rem;
}

.episode-meta {
    display: flex;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.25rem;
}

.episode-meta span {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.episode-meta i {
    margin-right: 0.5rem;
}

.podcast-subscribe {
    padding: 4rem 0;
    text-align: center;
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-top: 4rem;
}

.subscribe-options h2 {
    margin-bottom: 1rem;
}

.subscribe-options p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.platform-btn i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.platform-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.our-story {
    margin-bottom: 4rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
    }
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.story-text h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.75rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.mission-values {
    margin-bottom: 4rem;
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.mission-values h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    margin-bottom: 0;
}

.meet-team {
    margin-bottom: 4rem;
}

.meet-team h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.meet-team h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-details {
    padding: 1.5rem;
}

.member-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-details p {
    color: #666;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f0f4f8;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.testimonials {
    margin-bottom: 4rem;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-card {
    min-width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 4rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    opacity: 0.2;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.partners {
    margin-bottom: 4rem;
}

.partners h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.partners h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-section h2, .contact-form-section h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info-section h2:after, .contact-form-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.75rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(63, 169, 245, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.contact-icon i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    margin-bottom: 0;
}

.social-connect {
    margin-top: 2.5rem;
}

.social-connect h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-icons.large a {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
}

.contact-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.map-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: rgba(63, 169, 245, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--accent-color);
    color: #fff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger-color);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

.close-btn {
    min-width: 150px;
}

/* Single Post Page */
.single-post-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

@media (min-width: 992px) {
    .single-post-container {
        grid-template-columns: 2fr 1fr;
    }
}

.post-header {
    margin-bottom: 2rem;
}

.post-banner {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-banner img {
    width: 100%;
    object-fit: cover;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.post-image-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-caption {
    display: block;
    background-color: #f0f4f8;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.fact-box {
    background-color: #f0f4f8;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.fact-box h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fact-box ul {
    margin-bottom: 0;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    background-color: #f0f4f8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-share span {
    font-weight: 600;
}

.share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.share-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.author-box {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: var(--box-shadow);
}

.author-avatar {
    flex: 0 0 100px;
    margin-right: 1.5rem;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
}

.author-bio {
    margin-bottom: 1rem;
    color: #666;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f0f4f8;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.related-posts {
    margin-bottom: 3rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
    position: relative;
}

.related-posts h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.75rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 0;
}

.related-post .date {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.prev-post, .next-post {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    width: 48%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-post:hover, .next-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.prev-post span, .next-post span {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.prev-post h4, .next-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.next-post {
    text-align: right;
}

.comments-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.comments-section h3 {
    margin-bottom: 2rem;
    position: relative;
}

.comments-section h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.75rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
}

.comment.reply {
    margin-left: 3.5rem;
    margin-top: 2rem;
}

.comment-avatar {
    flex: 0 0 60px;
    margin-right: 1.25rem;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.comment-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 1rem;
}

.author-badge {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.comment-actions {
    margin-top: 0.75rem;
}

.reply-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.reply-btn:hover {
    color: var(--secondary-color);
}

.comment-form {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.post-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 0.5rem;
}

.sidebar-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.about-widget {
    text-align: center;
}

.about-widget p {
    margin-bottom: 0;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    margin-bottom: 0;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    padding: 0 1rem;
    border-radius: 0 4px 4px 0;
    background-color: var(--primary-color);
}

.search-form button:hover {
    background-color: var(--secondary-color);
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    align-items: center;
}

.recent-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.recent-post-info .date {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories li {
    margin-bottom: 0.75rem;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.categories li a:hover {
    color: var(--secondary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    background-color: #f0f4f8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.podcast-feature {
    display: flex;
    align-items: center;
}

.podcast-feature img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.podcast-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.podcast-meta {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 0.75rem;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.listen-btn i {
    margin-right: 0.5rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cookie-text p {
        margin-bottom: 0;
    }
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-more {
    font-size: 0.9rem;
    margin-left: 0.5rem;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.75rem;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    nav ul li {
        margin: 0 0 1.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2.25rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .featured-grid, .podcast-grid, .series-container, .mission-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .subscribe-form button {
        border-radius: 4px;
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prev-post, .next-post {
        width: 100%;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment.reply {
        margin-left: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 1.75rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .podcast-card {
        flex-direction: column;
    }
    
    .podcast-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .episode-card {
        flex-direction: column;
    }
    
    .episode-thumbnail {
        width: 100%;
        height: 200px;
    }
}
