/* Section Styling */
html {
    scroll-behavior: smooth;
}

.responsives-sections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    padding: 20px;
    background-color: white;
}

.images-containers {
    flex: 1;
    max-width: 45%;
}

img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.texts-containers {
    flex: 1;
    max-width: 45%;
}

.center-texts {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: orange;
}

.contact-numbers {
    font-size: 30px;
    margin: 10px 0;
    color: black;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    background-color: green;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: grey;
}

.btn1 {
    background-color: orangered;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn1:hover {
    background-color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsives-sections {
        flex-direction: column;
        align-items: center;
    }

    .images-containers {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .texts-containers {
        max-width: 85%;
    }

    img {
        height: auto;
        /* Adjust height for responsiveness */
    }

    .center-texts {
        font-size: 20px;
        /* Adjust font size for smaller screens */
    }

    .contact-numbers {
        font-size: 24px;
        /* Adjust font size for smaller screens */
    }

    .btn,
    .btn1 {
        width: 100%;
        /* Make buttons full width on smaller screens */
        padding: 15px;
        /* Increase padding for better touch targets */
    }
}