.ambition-section {
    position: relative;

    @media (max-width: 480px) {
       margin-left: 15px;
       margin-right: 15px;
    }
}

.ambition-section:before,
.ambition-section:after {
    content: "";
    width: 50%;
    display: block;
    height: 100%;
    position: absolute;
}

.ambition-section:before {
    background: #043266;
    left: 0;
    top: 0;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.ambition-section:after {
    background: #d4dce8;
    right: 0;
    top: 0;

    @media (max-width: 480px) {
        display: none;
    }
}

.ambition-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ambition-left-section {
    padding: 72px 30px;
    position: relative;
    padding-right: 50px;
}

.ambition-right-section {
    background-color: #d4dce8;
    padding: 72px 30px;
    position: relative;
}

.ambition-divider {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: #c9a961;
}

.ambition-section-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
}

.ambition-icon {
    font-size: 2.5rem;
}

.ambition-left-section .ambition-section-title h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0;
}

.ambition-right-section .ambition-section-title h2 {
    color: #1e3a5f;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0;
}

.ambition-bullet-list {
    list-style: none;
    color: white;
    margin: 0;
    padding: 0;
}

.ambition-bullet-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.ambition-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-size: 19px;
    top: -4px;
}


.ambition-content-text strong {
    color: #1e3a5f;
    font-weight: 600;
}

.ambition-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.ambition-arrow-icon {
    color: #c9a961;
    font-size: 2rem;
    flex-shrink: 0;
}

.ambition-highlight-text {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.ambition-highlight-text strong {
    color: #1e3a5f;
    font-weight: 600;
}

.ambition-container {
    @media (max-width: 480px) {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ambition-divider {
        display: none;
    }

    .ambition-left-section,
    .ambition-right-section {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .ambition-section-title h2 {
        font-size: 1.6rem;
    }

    .ambition-bullet-list li,
    .ambition-content-text,
    .ambition-highlight-text {
        font-size: 0.95rem;
    }

    .ambition-icon {
        font-size: 2rem;
    }

    .ambition-left-section,
    .ambition-right-section {
        padding: 30px 20px;
        
    }
}
