.about-page {
    padding-top: var(--navbar-height);
}

.about-banner {
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-image: url("../../assets/images/about-page/about-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.about-page .banner-bottom {
    background-image: url('../../assets/images/about-page/bottom-banner.jpeg');
}

.content-container-sw-about {
    line-height: 28px;
    font-size: 18px;
}

.about-page .sidebar-wrapper hr {
    margin: 30px 0 20px;
    border-top: 1px solid #dfdfdf;
    display: block;
    overflow: hidden;
    clear: both;
    width: 100%;
}

.top-content-about {
    width: 100%;
    display: flex;
    align-items: center;
}

.left-tca {
    width: 80%;
}

/* Programs and Activities Section */
.programs-activities {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #dfdfdf;
}

.top-programs-activities {
    text-align: center;
    margin-bottom: 50px;
}

.top-programs-activities h3 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: "Domine", serif;
}

.top-programs-activities p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #8B7355);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.program-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-card h4 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: "Domine", serif;
    font-weight: 600;
}

.program-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Design for Programs */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-card {
        padding: 25px;
    }

    .top-programs-activities h3 {
        font-size: 24px;
    }

    .top-programs-activities p {
        font-size: 16px;
    }

    .program-card h4 {
        font-size: 20px;
    }

    .program-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .program-card {
        padding: 20px;
    }

    .program-icon {
        font-size: 40px;
    }

    .top-programs-activities h3 {
        font-size: 20px;
    }

    .program-card h4 {
        font-size: 18px;
    }
}

.about-blockquote {
    margin-top: 60px;
}

.about-blockquote cite {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 1px;
}

.about-blockquote cite:before {
    content: "-";
    margin: 0 5px 0 0;
}

.trusted-by-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.trusted-by-section img {
    width: 100%;
}

/* Important Links Section */
.important-links-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.links-container {
    text-align: center;
}

.links-container h3 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: "Domine", serif;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #8B7355);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.link-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-card h4 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: "Domine", serif;
    font-weight: 600;
}

.link-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.link-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    min-width: 150px;
    text-align: center;
}

.link-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Links */
@media (max-width: 768px) {
    .important-links-section {
        padding: 60px 0;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .link-card {
        padding: 30px 20px;
    }

    .links-container h3 {
        font-size: 24px;
    }

    .link-card h4 {
        font-size: 20px;
    }

    .link-card p {
        font-size: 14px;
    }

    .link-button {
        font-size: 15px;
        padding: 10px 20px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .important-links-section {
        padding: 40px 0;
    }

    .link-card {
        padding: 25px 15px;
    }

    .link-icon {
        font-size: 40px;
    }

    .links-container h3 {
        font-size: 20px;
    }

    .link-card h4 {
        font-size: 18px;
    }

    .link-card p {
        font-size: 13px;
    }

    .link-button {
        font-size: 14px;
        padding: 8px 16px;
        min-width: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .left-tca {
        width: 100%;
    }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-banner {
        height: 50vh;
    }

    .sidebar-wrapper {
        padding: 20px 0;
    }

    .sidebar-container-sw,
    .content-container-sw-about {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .sidebar-container-sw h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .content-container-sw-about h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .content-container-sw-about {
        font-size: 16px;
        line-height: 24px;
    }

    .top-content-about {
        flex-direction: column;
        gap: 30px;
    }

    .left-tca {
        width: 100% !important;
    }

    .news-updates .top-news-updates h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .inner-block-nu {
        width: 50%;
        margin-bottom: 20px;
    }

    .inner-block-nu h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .about-blockquote p {
        font-size: 24px !important;
    }

    .main-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .video-frame {
        margin-top: 30px;
    }

    .video-frame video {
        height: 300px;
    }

    .trusted-by-section {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 40vh;
    }

    .sidebar-container-sw h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .content-container-sw-about h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .content-container-sw-about {
        font-size: 14px;
        line-height: 20px;
    }

    .news-updates .top-news-updates h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .inner-block-nu {
        width: 100%;
    }

    .inner-block-nu h3 {
        font-size: 14px;
        line-height: 18px;
    }

    .about-blockquote p {
        font-size: 14px !important;
    }

    .main-button {
        font-size: 12px;
        padding: 10px 20px;
    }

    .video-frame video {
        height: 250px;
    }
}