.top-section{
    padding: clamp(40px, 6vw, 100px) clamp(40px, 12vw, 200px);
    background-color: #5F5F5F;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.top-section h2{
    color: var(--main, #30B5D3);
    font-size: clamp(36px, 4vw, 45px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 58.5px */
    letter-spacing: 2px;
    text-transform: uppercase;
}
.top-section p{
    color: var(--white, #FFF);
    font-size: clamp(18px, 3vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* highlight-section
---------------------------------------------------------- */
.highlight-section {
    padding: 100px 80px;
    background-color: var(--white);
}

.highlight-container {
    background-color: var(--tertiary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    gap: 30px;
    overflow: hidden;
}

.highlight-image-wrapper {
    width: 605px;
    height: 642px;
    background-color: var(--main-color);
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    flex-shrink: 0;
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.highlight-content {
    width: 782px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-content h2 {
    color: var(--white);
    font-family: var(--font-family-secondary);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.highlight-content p {
    color: var(--white);
    font-family: var(--font-family-secondary);
    font-size: clamp(18px, 3vw, 21px);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
.wrap-section{
    padding: clamp(40px, 6vw, 60px) clamp(40px, 12vw, 200px);
    padding-top: 0;
}
.wrap-section h2{
    margin-bottom: 30px;
    color: var(--main, #30B5D3);
    font-size: clamp(36px, 4vw, 45px);
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 58.5px */
    letter-spacing: 2px;
    text-transform: uppercase;    
}
.wrap-section p{
    color: var(--black, #2B2B2B);
    font-size: clamp(18px, 3vw, 23px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
.p-wrap{
    display: flex;
    gap: 30px;
}

/* Responsive */
@media (max-width: 1400px) {
    .highlight-section {
        padding: 60px 40px;
    }
    .highlight-container {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }
    .highlight-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: 450px;
    }
    .highlight-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .highlight-section {
        padding: 40px 25px;
    }
    .highlight-container {
        padding: 40px 25px;
        gap: 30px;
    }
    .highlight-image-wrapper {
        height: 350px;
    }
    .p-wrap{
        flex-direction: column;
    }
}