

body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: rgba(30, 30, 30, 1); /* Main background color across all sections */
}



main {
    max-width: 1280px;
    margin: 100px auto 0 auto; /* Center content and add top margin to push below header */
    padding: 0 5px; /* Optional: Add some padding for better spacing */
    margin-top: 120px; /* Space to push content below the fixed header */
    
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 5px;
    padding: 15px;
    background-color: rgba(20, 20, 20, 0);
    border-radius: 8px;
    color: #FFF;
}

.info {
    flex: 1;
    margin-right: 20px;
    font-size: 20px;
}

.photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.services-container {
    background-color: rgba(20, 20, 20, 0.9);
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    color: #FFF;
    text-align: justify;
}

.services-container h1,
.services-container h2 {
    text-align: center;
}

.services-container ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}

.services-container ul li {
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px; /* Add space for custom bullets */
}

.services-container ul li::before {
    content: "•"; /* Custom bullet */
    color: #FFD500;
    position: absolute;
    left: 0;
    font-size: 24px; /* Adjust the size of the bullet */
    line-height: 1; /* Align bullet vertically with text */
}

.services-container p {
    margin-top: 20px;
}
    .strategic-partners {
    background-color: rgba(20, 20, 20, 0.9);
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    color: #FFF;
    text-align: justify;
    margin-top: 20px; /* Add some space above the new section */
}

.strategic-partners h2 {
    text-align: center;
    
}
.strategic-partners h3 {
    text-align: center;
    color: #FFD500; /* Make headings the same color as other highlighted text */
}

.photo3 {
    display: flex;
    flex-wrap: wrap; /* Allow the items to wrap to the next line */
    justify-content: center; /* Center-align the images */
    gap: 8px; /* Adjust the spacing between the images as needed */
}

.photo3 img {
    width: calc(33% - 10px); /* Adjust width to account for gap */
    object-fit: cover;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.video-container {
  display: flex;
  flex-wrap: wrap; /* Ensures elements wrap to the next line */
  gap: 10px; /* Adjust spacing between iframes */
  justify-content: center; /* Center the iframes within the container */
  
}

.video-container iframe {
  flex: 0 0 75%; /* Each iframe takes 48% of the container's width (adjustable) */
  box-sizing: border-box;
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
}
.language-buttons {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 1100;
    display: flex;
    gap: 10px;
}

.lang-button {
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.lang-button.active {
    color: #FFFFFF;
}

.lang-button:not(.active) {
    color: #FFD500;
}

@media (max-width: 960px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .info {
        margin-right: 0;
        text-align: center;
    }

    .photo img {
        max-width: 100%;
    }
}


