body {
    margin: 0;
    padding: 0;
    background-color: #07716D;
    color: #fff;
    font-family: Arial, sans-serif;
}

.header {
    width: 100%;
    background: #055956;
    border-bottom: 1px solid #c9a227;
    box-sizing: border-box;
}

.header-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.btn img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.header-buttons .btn {
    width: 160px;
}

.footer-buttons .btn {
    flex: 1;
}



.main-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-img {
    width: 50%;
    /* Flexible width to fit side-by-side */
    max-width: 500px;
    /* Cap the max width */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.text-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    text-align: center;
}

.text-section h1 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #ffd700;
}

.text-section p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.footer {
    padding: 30px 20px;
    /* background: #1b4333; */
    display: flex;
    justify-content: center;
    border-top: none;
}

@media (max-width: 768px) {
    .header-container {
        width: 90%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 25px 0;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        height: 45px;
    }

    .header-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .header-buttons .btn {
        flex: 1;
        max-width: 180px;
        width: auto;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .promo-img {
        width: 100%;
        max-width: 100%;
    }

    .text-section {
        padding: 10px 15px 30px 15px;
    }

    .text-section h1 {
        font-size: 22px;
    }

    .text-section p {
        font-size: 15px;
    }

    .footer-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-buttons .btn {
        width: 90%;
        max-width: 380px;
    }
}