.as-45-wrapper {
    width: 100%;
    background-color: #F4F9FA;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 60px 20px;
    box-sizing: border-box;
}

.as-45-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: stretch;
}

.as-45-content {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.as-45-text-area {
    color: #1A2A3A;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.as-45-text-area p {
    margin-bottom: 24px;
    font-weight: 500;
}

.as-45-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.as-45-btn {
    display: inline-block;
    background-color: #4299E1;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.2s ease;
    cursor: pointer;
    min-width: 250px;
}

.as-45-btn:hover {
    background-color: #3182CE;
    color: #ffffff;
}

.as-45-image-col {
    flex: 1 1 45%;
    display: flex;
}

.as-45-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-height: 600px;
}

@media (max-width: 992px) {
    .as-45-container {
        flex-direction: column;
    }
    
    .as-45-image-col img {
        min-height: 400px;
    }
    
    .as-45-text-area {
        text-align: left;
    }
}