.wave-separator {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
    background-color: #F7F9FB;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
}

.main-bottom {
    background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-700) 100%);
    padding: 22vh 24px 22vh 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    overflow: hidden;
}

.section {
    max-width: 976px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22vh;
    overflow: visible;
}

.about-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 72px;
    position: relative;
}

.about-top {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
    width: 100%;
}

.about-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--white);
}

.about-title {
    text-align: left;
    min-width: 100%;
    color: var(--white);
}

.about-description {
    color: var(--blue-50);
    height: auto;
    width: 100%;
    font-weight: 300;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 513/380;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.highlight {
    width: 100%;
    position: relative;
    height: auto;
}

.highlight-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
}

.highlight-square {
    background-color: var(--blue-700);
    box-shadow: 0 0 50px 0 rgba(25, 118, 210, 0.75);
    border-radius: 8px;
    padding: 24px 16px 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: start;
    text-align: center;
    color: var(--white);
    min-height: 140px;
    position: relative;
}

.highlight-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1E88E5 0%, #1976D2 100%);
    border-radius: 8px;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.highlight-number {
    white-space: normal;
    word-wrap: break-word;
}

.highlight-text {
    max-width: 100%;
    color: var(--blue-50);
}

.text-highlight {
    position: relative;
    display: inline;
    padding: 0px 4px;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    transform: rotate(-5deg);
    border-radius: 4px;
    transform-origin: center;
}


/* Background Rectangles */
body {
    position: relative;
    overflow-x: hidden;
}

.rectangle-1,
.rectangle-2,
.rectangle-3 {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.rectangle-1 {
    right: 0px;
    bottom: 1600px;
}

.rectangle-2 {
    left: 0px;
    bottom: 850px;
    opacity: 0.76;
}

.rectangle-3 {
    right: 0px;
    bottom: 0px;
}

@media screen and (max-width: 601px) {
    .rectangle-1,
    .rectangle-2,
    .rectangle-3 {
        display: none;
    }
} 

/* Responsive */

@media screen and (max-width: 768px) {
    .highlight-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .wave-separator {
        height: 60px;
    }
    
    .highlight-square {
        padding: 24px 20px;
        min-height: 120px;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 601px) {
    .main-bottom {
        padding: 16vh 24px 16vh 24px;
        gap: 26px;
    }
    
    .section {
        gap: 16vh;
    }

    .about-top {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 513/380;
        min-height: 250px;
    }
    
    .about-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .highlight-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .highlight-square {
        padding: 20px 16px;
        min-height: 100px;
        justify-content: center;
    }
    
    .highlight-number {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-square {
        padding: 24px 20px;
        min-height: 110px;
        justify-content: center;
    }

    .wave-separator {
        height: 40px;
    }
    
    .about-image {
        aspect-ratio: 513/380;
        min-height: 200px;
    }
    
    .about-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

