:root {
    --base-color: #fff;
    --text-color: #000;
    --primary-color: #007bff;
    --secondary-color: #03bbe9;
    --button-color: #f5a613;
    --light-grey: #f0f0f0b4; 
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--base-color);
    color: var(--text-color);
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping to next line if needed */
}


/* .logo {
    width: 110px;
    height: 80px;
} */

.content {
    margin-bottom: 20px;
    width: 90%; /* Adjust content width to fit the screen */
}

.content h1 {
    font-size: 24px;
    color: var(--text-color);
}

.content h2 {
    font-size: 20px;
    color: var(--text-color);
}

.content h3 {
    font-size: 18px;
    color: var(--text-color);
}

.content p {
    font-size: 16px;
    color: var(--text-color);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.country-button {
    display: inline-block; 
    width: 150px; 
    height: 50px; 
    padding: 10px 20px; 
    font-size: 16px;
    font-weight: bold;
    background-color: var(--secondary-color);
    color: var(--base-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none; 
    text-align: center; 
    line-height: 30px; 
    white-space: nowrap; 
}


.country-button:hover {
    color: var(--base-color);
    background-color: var(--button-color);
}

/* Mobile Devices */
@media (max-width: 480px) {
    .content {
        width: 95%; /* Increase width to fit smaller screens */
    }

    .content h1 {
        font-size: 20px;
    }

    .content h2 {
        font-size: 16px;
    }

    .content h3 {
        font-size: 14px;
    }

    .content p {
        font-size: 14px;
    }

    .country-button {
        font-size: 14px;
        padding: 8px 16px; /* Reduce padding for smaller screens */
    }

    .logo-container {
        justify-content: space-around; /* Distribute space around logos */
        gap: 10px; /* Adjust gap for horizontal stacking */
    }

    .logos {
        width: 87%; /* Reduce logo width */
        height: 110%; /* Reduce logo height */
    }
}

/* Tablets/iPads */
@media (min-width: 481px) and (max-width: 768px) {
    .content {
        width: 90%;
    }

    .content h1 {
        font-size: 22px;
    }

    .content h2 {
        font-size: 18px;
    }

    .content h3 {
        font-size: 16px;
    }

    .content p {
        font-size: 15px;
    }

    .country-button {
        font-size: 15px;
        padding: 10px 18px; /* Adjust padding */
    }

    .logo {
        width: 60px; /* Reduce logo width */
        height: 45px; /* Reduce logo height */
    }
}

/* Laptops/Small Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .content {
        width: 85%;
    }

    .content h1 {
        font-size: 24px;
    }

    .content h2 {
        font-size: 20px;
    }

    .content h3 {
        font-size: 18px;
    }

    .content p {
        font-size: 16px;
    }

    .country-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Desktops/Large Screens */
@media (min-width: 1025px) and (max-width: 1200px) {
    .content {
        width: 70%;
    }

    .content h1 {
        font-size: 26px;
    }

    .content h2 {
        font-size: 22px;
    }

    .content h3 {
        font-size: 20px;
    }

    .content p {
        font-size: 17px;
    }

    .country-button {
        font-size: 17px;
        padding: 12px 24px; /* Increase padding for larger screens */
    }
}

/* Extra-large Devices */
@media (min-width: 1201px) {
    .content {
        width: 60%;
    }

    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content h3 {
        font-size: 22px;
    }

    .content p {
        font-size: 18px;
    }

    .country-button {
        font-size: 18px;
        padding: 14px 28px; /* Further increase padding */
    }
}