/* Base styles for WhatsApp button */
.button-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

/* Base styles for primary buttons */
.button-primary {
    min-width: 120px;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    /* Changed to inline-block for simplicity */
    color: white;
    /* Assuming primary buttons also have white text */
    background-color: #007bff;
    /* Sample primary color, can be changed */
    border-color: #007bff;
    /* Sample border color, can be changed */
}

/* Language Selector Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: black;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 24px;
    height: auto;
    margin-right: 5px;
    border-radius: 50%;
}

.arrow-down {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.dropdown-content {
    display: none;
    /* Initially hidden */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a img {
    width: 24px;
    height: auto;
    margin-right: 5px;
}

/* Dropdown toggle on click */
.dropdown-content {
    display: none;
    /* Initially hidden */
}

.dropdown.active .dropdown-content {
    display: block;
    /* Show when active */
}

/* Section spacing */
.section {
    padding: 0;
    /* Removes padding from the section */
}

/* Divider style */
.section-divider {
    border-top: 1px solid #eee;
    margin: 40px;
}

/* Adjustments for mobile screens */
@media (max-width: 768px) {
    .pricing-table {
        flex-basis: 100%;
        /* Full width on smaller screens */
        margin-bottom: 20px;
        /* Adjust the space between the tables */
    }
}

/* Center align section titles */
.section-title {
    text-align: center;
    margin: 0 0 10px;
    /* Remove top margin */
}

/* CTA Section adjustments */
.cta.section {
    padding: 0;
    /* Remove padding */
}

html,
body {
    margin: 0;
    padding: 0;
    /* This ensures that the margin does not affect your layout */
    height: 100%;
    /* This makes sure that the page fills the viewport */
}

.body-wrap.boxed-container {
    margin: 0 auto;
    padding: 0;
    /* Any other styles you wish to apply */
}

