.container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1800px;
}

.container h1 {
    color: #5B3A29;
    /* Dark brown */
    text-align: center;
    margin-bottom: 40px;
}

.container h2 {
    color: #A68B5D;
    /* Light brown */
    border-bottom: 2px solid #A68B5D;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.play-btn {
    width: 28%;
    padding-top: 2%;
    padding-bottom: 5%;
}

.play-btn1 {
    width: 20%;
    padding-top: 2%;
    padding-bottom: 5%;
}


.media-row {
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
    border-radius: 5px;
    padding: 5%;
}

section {
    margin-bottom: 30px;
    padding: 20px;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 0 0 48%;
    margin-bottom: 20px;

    padding: 15px;

}

/* .column:hover {
    transform: translateY(-5px);
} */

.video-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video {
    background: #ecf0f1;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.video:hover {
    transform: scale(1.05);
}

.pod {
    margin-bottom: 10%;
}

.media-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10%;
    text-align: center;
}

.media {
    background: #ecf0f1;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.media:hover {
    transform: scale(1.05);
}

.media iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.media audio {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.media a {
    text-decoration: solid;
    color: #0088ff;
    transition: color 0.3s;
    font-size: 30px;
    text-align: center;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.media a:hover {
    color: #23527c;
}


@media (max-width: 768px) {
    .media-container {
        grid-template-columns: 1fr;
    }

    .media iframe {
        height: 150px;
    }

    .media audio {
        height: 30px;
    }
}

iframe {
    border-radius: 8px;
    width: 100%;
    height: 200px;
}

.topic {
    background: linear-gradient(to right, #C49A6A, #A68B5D);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.topic h2 {
    color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
}




/* Responsive styles */
@media (max-width: 768px) {
    .column {
        flex: 0 0 100%;
    }

    .video-container {
        grid-template-columns: 1fr;
    }
}

.video-container {
    grid-template-columns: 1fr;
}

.video iframe {
    height: 150px;
}

@media (min-width: 769px) {
    .video-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #5B3A29;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 50px;
    padding: 2%;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 3%;
    width: 100%;
    height: 100%;
}

.modal-content iframe {
    padding: 2%;
    width: 100%;
    height: 100%;
    border: none;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .column {
        flex: 0 0 100%;
    }

    .video-container {
        grid-template-columns: 1fr;
    }

    .pod {
        margin-bottom: 60%;
    }
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #5B3A29;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .column {
        flex: 0 0 100%;
    }

    .video-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 508px) {
    .pod {
        /* margin-top: 10%; */
        margin-bottom: 80%;
    }
}

@media (max-width: 400px) {
    .pod {
        /* margin-top: 10%; */
        margin-bottom: 140%;
    }
}

@media (max-width: 325px) {
    .pod {
        /* margin-top: 10%; */
        margin-bottom: 200%;
    }
}


@media (max-width: 275px) {
    .pod {
        /* margin-top: 10%; */
        margin-bottom: 240%;
    }
}

@media (max-width: 260px) {
    .pod {
        /* margin-top: 10%; */
        margin-bottom: 450%;
    }
}

.call-to-action {
    text-align: center;
    margin-bottom: 20px;
    background-color: #A68B5D;
    padding: 4%;
}

.call-to-action h3 {
    margin-bottom: 10px;
    color: #fff;
}

.call-to-action button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #5B3A29;
    color: #fff;
    border: none;
    cursor: pointer;
}

.call-to-action button:hover {
    background-color: #b67555;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
}

.pagination-controls button {
    background-color: #5B3A29;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination-controls button:hover {
    background-color: #A68B5D;
}

.pagination-controls button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#page-info {
    font-size: 18px;
    color: #5B3A29;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        align-items: center;
    }

    .pagination-controls button {
        margin: 10px 0;
    }

    #page-info {
        margin: 10px 0;
    }
}