.am-top-bg {        /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: auto;
  object-fit: cover;  /* makes image cover text */
}

/* 1. Base Section Styles */
.info-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #000000;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Flexbox Layout */
.row {
    display: flex;
    align-items: center; /* Vertically centers text with image */
    justify-content: space-between;
    gap: 50px;
}

.content-left {
    flex: 1.2; /* Gives more space to the text */
}

.content-right {
    flex: 0.8;
    text-align: right;
}

/* 3. Typography Styles */
.main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.description-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
    text-align: justify;
}

/* 5. Clickable Image Button */
.btn-wrapper {
    display: inline-block;
    margin-bottom: 40px;
    transition: transform 0.2s ease;
}

.btn-wrapper img {
    display: block;
    width: 320px; /* Adjust based on your image size */
    height: auto;
    cursor: pointer;
}

.btn-wrapper:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.btn-wrapper:active {
    transform: translateY(1px);
}

/* 6. Side Illustration */
.side-illustration {
    max-width: 100%;
    height: auto;
}

/* 7. Disclaimer (Bottom Text) */
.disclaimer {
    font-size: 10px;
    font-weight: 300;
    color: #222;
    line-height: 1.4;
    max-width: 480px;
    margin: 0;
    margin-top: 20px;
}

/* 8. Mobile Responsiveness */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: left;
    }

    .content-right {
        order: -1; /* Puts the image on top for mobile users */
        text-align: center;
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 32px;
    }

    .btn-wrapper img {
        width: 100%;
        max-width: 300px;
    }
}