/* Global Styles */
:root {
    --primary-color: #57b8c0;
    --primary-dark: #3b9ba3;
    --secondary-color: #d7e5e9;
    --dark-bg: #111111;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #e0e0e0;
    --form-bg: #e6e6e6;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
}

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

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
}

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

.logo-container h1 {
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Podcasts Section */
.podcasts {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0;
    text-align: center;
}

.subsection-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.episode-card {
    text-align: left;
}

.episode-image {
    margin-bottom: 1rem;
    height: 180px;
    overflow: hidden;
}

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

.episode-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.episode-description {
    font-size: 0.9rem;
    color: #d9d9d9;
}

/* About Us Section */
.about-us {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
}

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

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

/* Team Section */
.team {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-image {
    width: 100%;
    height: 100%;
}

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

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

.team-text .btn {
    margin-top: 1.5rem;
}

/* Programs Section */
.programs {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price {
    color: var(--primary-color);
}

.program-description, .program-benefits, .program-delivery {
    margin-bottom: 1.5rem;
}

.program-features {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.program-features li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
    list-style-position: inside;
}

.program-footer {
    margin-top: auto;
}

.program-target {
    font-weight: 700;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.contact-form-container, .contact-info {
    padding: 2rem;
}

.contact h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: var(--form-bg);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 1rem;
    z-index: 999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-right: 1rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
}

.cookie-btn.secondary {
    background-color: #555;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-content, .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image, .team-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
}

.main-section {
    background: #000;
    color: #fff;
    padding: 2rem;
}

.main-section h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}