@import url('../components/secondary_header.css');

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    gap: 2rem;
}

.content-box {
    border: 0.2vw solid #92A4A954;
    border-radius: 50px;
    width: 80%;
    background-color: #23414967;
    display: flex;
    flex-direction: row;
    padding: 40px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-box-text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-box-title {
    border-bottom: 2px solid #fff;
    width: fit-content;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.content-box-title h2 {
    color: #E0EEF2;
    font-size: 2vw;
    font-weight: 500 !important;
    margin: 0;
}

.content-box-body {
    width: 100%;
}

.content-box-body p {
    color: #E0EEF2;
    font-size: 1.5vw;
    font-weight: 500 !important;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.fade-background {
    background-color: #23414967;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .content-box {
        width: 85%;
        padding: 30px;
    }

    .content-box-title h2 {
        font-size: 2.5vw;
    }

    .content-box-body p {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .content-box {
        width: 90%;
        padding: 25px;
        border-radius: 30px;
    }

    .content-box-title h2 {
        font-size: 1.5rem;
    }

    .content-box-body p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .content-wrapper {
        padding: 0.5rem 0;
        gap: 1rem;
    }

    .content-box {
        width: 95%;
        padding: 20px;
        border-radius: 20px;
    }

    .content-box-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .content-box-title h2 {
        font-size: 1.2rem;
    }

    .content-box-body p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
