body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f9fcff;
    color: #333;
    scroll-behavior: smooth;
}
.logo-image {
    margin-left: 5px;
    width: 30px;
    height: 30px;
    justify-content: normal;
}
header {
    background-color: #e0f7fa;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.side-by-side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header h1 {
    margin: 0;
    color: #007acc;
    font-size: 20px;
    letter-spacing: 1px;
    justify-content: normal;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #007acc;
    font-weight: 500;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #005f99;
}

.language-switcher {
    margin-left: 20px;
    position: relative;
    display: inline-block;
}

.language-switcher select {
    padding: 8px 22px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    appearance: none; /* Remove default arrow in some browsers */
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.language-switcher select:focus {
    border-color: #888;
    box-shadow: 0 0 0 3px rgba(100, 150, 250, 0.2);
    outline: none;
}

.language-switcher::after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 53%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 12px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-logo {
    align-self: flex-start;
    width: 225px;
    height: 75px;
}

@media only screen and (max-width: 700px) {
    .footer-logo {
        width: 150px;
        height: 50px;
    }
}

.hero {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    animation: fadeIn 2s ease-in;
}
.hero h2 {
    font-size: 36px;
    color: #007acc;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #007acc;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.cta-button:hover {
    background-color: #005f99;
}
.section {
    padding: 60px 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section h3 {
    color: #007acc;
    font-size: 28px;
    margin-bottom: 20px;
}
.section p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
}
.section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.columns-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal-width columns */
    gap: 5px; /* space between columns */
}

.columns-grid-item {
    /* style for your column content */
    padding: 20px;
    display: grid;
    align-content: center;
}
footer {
    background-color: #e0f7fa;
    padding: 20px 40px;
    text-align: center;
    color: #007acc;
    font-size: 14px;
    margin-top: auto;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Facebook Status */
#facebook-status {
    font-size: 1rem;
    color: #333;
    margin-top: 1rem;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 33.333vw;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* Added a "connected" status style */
#facebook-status.connected {
    background-color: #d4edda;
    color: #155724;
}

/* Added a "disconnected" status style */
#facebook-status.disconnected {
    background-color: #f8d7da;
    color: #721c24;
}
