/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
 [data-lang] {
     display: none;
 }

 [data-lang="en"] {
     display: block;
 }
.header {
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    padding: 15px 40px;
    background-color: #ecf4e9;
    border-bottom: 1px solid #c4e6b7;
    z-index: 1000;
}

/* Logo styles (used in both header and footer) */


.logo img {
    width: 100%;
    height: 130px;
    object-fit: cover;


}


.logo-text h1 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    position: relative;
}

.logo-text h1::after {
    content: "™";
    position: absolute;
    top: 0;
    font-size: 10px;
}

.logo-text span {
    font-size: 14px;
    color: #666;
}



/* Navigation styles */
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4584b6;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta a {
    text-decoration: none;
    margin-left: 1rem;
}

.cta-button {
    background-color: #3f8f24;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 1px solid #3f8f24;
}

.cta-button:hover {
    background-color: #aeef99;
    color: #333333;
}

/* Main content area */
.main-content {
    flex: 1;
    padding: 20px;
    /* Content styles would go here */
}

/* Footer styles */
.footer {
    width: 100%;
    background-color: #f2f7f2;
    padding: 20px 40px;
    margin-top: auto;
    background-color: #ecf4e9;
}

/* Footer content container */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Horizontal divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #c4e6b7;
    margin: 20px 0;
}

/* Social media icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-left: 15px;
    color: #333;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4584b6;
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* Copyright text */
.copyright {
    text-align: center;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.who-we-are {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);

}


.who-we-are-container {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 40px 0;
    text-align: center;

}

/* .who-we-are-description {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
} */

.left-column {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.right-column {
    flex: 2;
    min-width: 300px;
}

.tag {
    display: inline-block;
    background-color: #E6F4EA;
    color: #256029;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: #111;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}



.community-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.tag {
    background-color: #E6F4EA;
    color: #256029;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-left: 5vw;
    margin-bottom: 20px;
}

.partners-section {
    background-color: #ecf4e9;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 10px;
}

.partners-title {
    margin-bottom: 30px;
    color: #333;
    font-size: 18px;
    background-color: #e8f4e8;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.hyver-logo,
.tcd-logo,
.amz_girls-logo {
    height: 200px;
    width: 200px;
}

/* Responsive styles */
@media (max-width: 992px) {

    .header,
    .footer {
        padding: 15px 20px;
    }

    .nav-links li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #f2f7f2;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        margin: 15px 0;
    }

    .social-icons {
        margin-top: 15px;
    }

    .partners-logos {
        display: block;

    }

    .partner-logo {

        filter: grayscale(0%);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .who-we-are-container {
        flex-direction: column;
        gap: 2rem;
    }


}

@media (max-width: 480px) {
    .header {
        padding: 15px 10px;
    }
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icons a {
        margin: 5px;
    }

    .who-we-are-container {
        flex-direction: column;
        gap: 2rem;
    }
}