* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #E5E5E5;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* Remove underline and prevent color change on click */
a.logo {
    text-decoration: none;  
    color: inherit;       
}

a.logo:visited {
    color: inherit;  /* Prevents the color from changing after being clicked */
}

a.logo:hover {
    text-decoration: none;  /* Ensures no underline on hover */
}

a.logo:focus, 
a.logo:active {
    text-decoration: none;  /* Ensures no underline on focus or active state */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.auth-buttons button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn {
    background-color: #f4f4f4;
    color: #333;
}

.signup-btn {
    background-color: #14213D;
    color: #fff;
}
/* About Us Page */
h1 {
    font-size: 2.5em;
    color: #1a1a2e;
    margin-top: 40px;
    text-align: center;
}

p {
    font-size: 1.1em;
    color: #555;
    margin: 20px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#about-us {
    padding-bottom: 2rem;
    
}
.founders-heading {
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #14213D;
}

p {
    font-size: 1.1rem;
    color: #333;
}

.founders {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.founder-card {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 300px;
    margin: 1rem;
}

.founder-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.founder-card h3 {
    font-size: 1.25rem;
    color: #14213D;
    margin-bottom: 0.5rem;
}

.founder-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}




/* Responsive Styling for smaller screens */
@media (max-width: 768px) {
    .founders {
        flex-direction: column;
        align-items: center;
    }

    .founder-card {
        max-width: 100%;
        margin: 1rem 0;
    }
}

/* Footer */
footer {
    background-color: #333;
    text-align: center;
    padding: 1rem;
}
footer p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin: 1rem 0;
    }

    .auth-buttons {
        margin-top: 1rem;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}