.text-box-section-content2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    background-image: url('/static/images/milwaka-wave.svg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    box-sizing: border-box;
}

.text-box-section-content2 h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    text-align: center;
    color: #215a6b;
    margin-bottom: 24px;
}

.text-box-section-content2-p{
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.submit-btn {
    background-color: #3e667a;
    color: white;
    width: fit-content;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Sora', sans-serif;
}

.submit-btn:hover {
    background-color: #2d4f5e;
    transform: translateY(-1px);
}

.secure-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 10%;
}
