body {
    font-family: 'Poppins', sans-serif;
    margin: 1;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto; /* Centers the content */
    padding-left: 20px; /* Ensures left spacing */
    padding-right: 20px;
}
img {
    margin-left: 20px; /* Adds space to the right of the image */
}
.speech {
    background: #e3e3d9; /* Light yellow background */
    border-left: 5px solid #e0922575; /* Orange highlight bar */
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.speech h3 {
    color: #d35400; /* Dark orange title */
    font-style: normal;
}

.speech p {
    font-style: normal;
    font-size: 16px;
}

.heading {
    font-family: 'Courier New', monospace;
    font-size: 26px;
}
h1.heading {
    color: rgb(225, 228, 62); /* Color for H1 */
}

h2.heading {
    color: rgb(136, 111, 38); /* Color for H2 */
}
h3.heading {
    color: rgb(107, 84, 25); /* Color for H2 */
}
.body-text {
    font-family: 'Verdana', sans-serif;
    font-size: 18px;
    color: #352635;
}
h1 {
    font-size: 3vw; /* Scales with screen width */
}

p {
    font-size: 1.2em; /* Adjusts proportionally */
}
body {
    color: #333; /* Default text color */
}

h1 {
    color: #500469; /* Header color */
}

p {
    color: #666; /* Paragraph text color */
}

nav a {
    color: white; /* Navigation link color */
}

nav a:hover {
    color: #ffcc00; /* Change color when hovering */
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #894e8c;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header img {
    height: 80px;
    margin-right: 15px;
}
nav {
    display: flex;
    justify-content: center;
    background: #3b0355;
    padding: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}
nav a:hover {
    background: #b800e6;
    border-radius: 5px;
}
.hero {
    background: url('hero-image.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: purple;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.section {
    padding: 30px;
    background: white;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
footer {
    text-align: center;
    padding: 20px;
    background: #530066e3;
    color: white;
    margin-top: 20px;
}
.image-container {
    text-align: center;
    margin-top: 20px;
}
.image-container img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}
.language-toggle {
    text-align: right;
    padding: 10px;
    background: #f4f4f4;
}
.language-toggle button {
    background: #500469;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.video-container video {
    width: 30%;
    max-width: 400px;
    border-radius: 8px;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px; /* Adjust the container width */
    margin: auto;
}

.team-member {
    width: 45%; /* Ensures 2 members per row */
    text-align: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.team-member h3 {
    font-size: 18px;
    margin: 5px 0;
}
.team-member p {
    font-size: 14px;
    color: #555;
}
.team-member a {
    display: block;
    text-decoration: none;
    color: #6a0dad;
    font-weight: bold;
    margin-top: 5px;
}

/* Ensure the last person takes full width */
.team-member:nth-child(5) {
    width: 45%;
    text-align: center;
}
