.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px;
}

.business-solutions {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}

.content-wrapper {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.stats {
    margin-top: 7%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 150px;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 2.5rem;
    color: #daa622;
    font-weight: 800;
}

.stat p {
    font-size: 1rem;
    color: #555;
}

.text-content {
    max-width: 500px;
}

.text-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 800;
}

.text-content p {
    color: #464040;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    text-align: justify;
}

.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 12px;
    font-weight: 700;
}

.btn:hover {
    background-color: #003d82;
    color: white;
}

.btn.contact {
    background-color: #daa520;
}

.btn.contact:hover {
    background-color: #dabd76;
    color: white;
}

.image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    height: 49vh;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 50px;
    }

    .stats {
        max-width: 120px;
    }

    .stat h2 {
        font-size: 2rem;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .business-solutions {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stats {
        margin-top: 0;
        align-items: center;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 14px;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .business-solutions {
        padding: 20px 10px;
    }

    .stat h2 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .text-content h1 {
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 13px;
        line-height: 1.5em;
    }

    .buttons .btn {
        font-size: 11px;
        padding: 8px 15px;
    }

    .image img {
        border-radius: 3px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    }
}
