  /* Global Styles */
        :root {
            --primary-color:#39453c;
            --secondary-color: #7c9885; 
            --text-color: #343c4b;
            --light-bg: #f8f9fa;
            --border-radius: 10px;
        }
        
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */
        
        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        } */
        
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        } */
        
        /* Header Section */
        .page-header {        
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .page-title {
            padding: 5rem 0;
            font-size: 2.5rem;
            color: var(--text-color);
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Main Podcast Section */
        .podcast-hero {
            display: flex;
            flex-direction: column;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .podcast-hero {
                flex-direction: row;
                min-height: 500px;
            }
        }
        
        /* Podcast Cover Image */
        .podcast-cover {
            flex: 1;
            position: relative;
            background-color: var(--secondary-color);
            min-height: 300px;
        }
        
        .podcast-cover img {            
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius);
            object-fit: fill;
            filter: grayscale(0.5);
            display: block;
        }
        
        @media (min-width: 768px) {
            .podcast-cover {
                flex: 0 0 40%;
            }
        }
        
        .podcast-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--secondary-color);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Podcast Details & Player */
        .podcast-details {
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .podcast-meta {
            margin-bottom: 1.5rem;
        }
        
        .podcast-meta-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .podcast-meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            color: #718096;
        }
        
        .podcast-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .podcast-meta-item i {
            color: var(--primary-color);
        }
        
        .podcast-description {
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Audio Player */
        .podcast-player-container {
            margin: 1.5rem 0;
            padding: 1.5rem;
            background-color: #f1f5f9;
            border-radius: var(--border-radius);
        }
        
        .podcast-player {
            width: 100%;
        }
        
        .audio-player {
            width: 100%;
            height: 50px;
            border-radius: 25px;
            outline: none;
        }
        
        .player-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .player-title i {
            color: var(--primary-color);
        }
        
        /* Share Section */
        .podcast-share {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .share-title {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .share-title i {
            color: var(--primary-color);
        }
        
        .social-buttons {
            display: flex;
            gap: 0.8rem;
        }
        
        .social-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #e2e8f0;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-button:hover {
            transform: translateY(-3px);
        }
        
        .social-button.twitter {
            background-color: #1DA1F2;
            color: white;
        }
        
        .social-button.facebook {
            background-color: #4267B2;
            color: white;
        }
        
        .social-button.linkedin {
            background-color: #0077B5;
            color: white;
        }
        
        .social-button.pinterest {
            background-color: #E60023;
            color: white;
        }
        
        /* Key Topics Section */
        .podcast-topics {
            margin: 3rem 0;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .topics-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .topic-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .topic-card:hover {
            transform: translateY(-5px);
        }
        
        .topic-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ebf8ff;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .topic-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.8rem;
        }
        
        .topic-description {
            color: #718096;
            font-size: 0.95rem;
        }
        
        /* Quote Section */
        .podcast-quote {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 3rem 0;
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: -20px;
            left: 40px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        
        .quote-text {
            font-size: 1.3rem;
            color: var(--secondary-color);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .quote-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .quote-author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .quote-author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .quote-author-details {
            display: flex;
            flex-direction: column;
        }
        
        .quote-author-name {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .quote-author-role {
            font-size: 0.9rem;
            color: #718096;
        }
        
        /* CTA Section */
        .podcast-cta {
            text-align: center;
            margin: 4rem 0;
            padding: 3rem;
            background-color: #ebf8ff;
            border-radius: var(--border-radius);
        }
        
        .cta-title {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .cta-description {
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #4a5568;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .cta-button:hover {
            background-color: #2b6cb0;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* More Resources Section */
        .more-resources {
            margin: 3rem 0;
        }
        
        .resources-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .resource-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
        }
        
        .resource-image {
            height: 180px;
            background-color: #edf2f7;
        }
        
        .resource-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .resource-content {
            padding: 1.5rem;
        }
        
        .resource-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.8rem;
        }
        
        .resource-description {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }
        
        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .resource-link:hover {
            text-decoration: underline;
        }
        
        /* Back to Homepage */
        .back-home {
            text-align: center;
            margin: 3rem 0;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: var(--primary-color);
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: #718096;
        }
        
        .breadcrumb-item {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-link {
            color: #718096;
            text-decoration: none;
        }
        
        .breadcrumb-link:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            margin: 0 0.5rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .podcast-meta-title {
                font-size: 1.7rem;
            }
            
            .podcast-details {
                padding: 1.5rem;
            }
            
            .podcast-cta {
                padding: 2rem 1.5rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .podcast-meta-info {
                flex-direction: column;
                gap: 1rem;
            }
            
            .quote-text {
                font-size: 1.1rem;
            }
        }

        
