body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
}

nav {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    margin-right: 30px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #8a2be2;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.auth-link {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    margin-left: 15px;
    transition: background-color 0.3s ease;
    color: black;
}

.auth-link.primary {
    background-color: #8a2be2;
    color: white;
}

.auth-link:hover {
    background-color: #5d1f8e;
}

/* Hero Section with Background Image */


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.learn-more-btn {
    padding: 15px 30px;
    background-color: #8a2be2;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #5e15a3;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Impact Section */
.impact-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.impact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.impact-text {
    max-width: 60%;
}

.impact-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.impact-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.impact-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Future Section */
.future-section {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.future-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.future-section p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* More Section */
.more-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

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

.more-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.more-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
}

.card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8a2be2;
}

.future-section .image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; /* Adjust as needed */
}

.future-section .large-image {
    width: 100%; /* Full width within the container */
    height: auto;
    max-width: 48%; /* Adjust as needed to make them bigger */
    border-radius: 10px; /* Optional, for rounded corners */
}

