/* Styles for About page */

/* General Layout */
.about-container {
    padding: 80px 0;
    min-height: 80vh;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

/* Title Styles */
.about-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 112px;
    line-height: 130px;
    letter-spacing: -4%;
    margin-bottom: 40px;
    color: #000000;
}

.display-text {
    color: #376AAD;
    font-weight: 700;
}

/* Description Styles */
.about-description {
    padding-top: 10px;
}

.description-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: -4%;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #376AAD;
}

.yellow-underline {
    position: absolute;
    height: 8px;
    background-color: #FFD500;
    bottom: 0;
    right: -10px;
    left: 70%;
    border-radius: 4px;
    z-index: -1;
}

.description-text {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: -4%;
    color: #376AAD;
    margin-bottom: 30px;
}

/* Mission section */


.about-mission p {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: -4%;
    color: #376AAD;
    margin-bottom: 20px;
    max-width: 80%;
}

/* Catalog link */
.catalog-link {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: -4%;
    color: #F3B707;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.catalog-link:hover {
    color: #F3B707;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-title {
        font-size: 90px;
        line-height: 100px;
    }
    
    .description-title {
        font-size: 38px;
        line-height: 56px;
    }
    
    .description-text {
        font-size: 20px;
        line-height: 30px;
    }
    
    .about-mission h3 {
        font-size: 38px;
        line-height: 56px;
    }
    
    .about-mission p {
        font-size: 20px;
        line-height: 30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pl-100, .pr-100 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-title {
        font-size: 70px;
        line-height: 84px;
        margin-bottom: 30px;
    }
    
    .description-title {
        font-size: 32px;
        line-height: 46px;
    }
    
    .about-mission h3 {
        font-size: 32px;
        line-height: 46px;
    }
    
    .about-description {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 56px;
        line-height: 66px;
    }
    
    .description-title {
        font-size: 28px;
        line-height: 40px;
    }
    
    .description-text {
        font-size: 18px;
        line-height: 28px;
    }
    
    .about-mission h3 {
        font-size: 28px;
        line-height: 40px;
    }
    
    .about-mission p {
        font-size: 18px;
        line-height: 28px;
    }
}

.description-title .highlight-word {
    position: relative;
    display: inline-block;
}

.description-title .overlay-image {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: auto;
}