
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: calc(100vh - 200px);
    padding: 2rem 1rem;
}

section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-us h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.team-link {
    text-decoration: none;
    color: inherit;
}

.team-member {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.5;
}

footer {
    margin-top: 50px;
    padding: 10px;
}

.homepage-main {
    padding: 2rem 1rem;
}

.homepage-hero {
    text-align: center;
    margin-bottom: 50px;
}

.homepage-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.homepage-hero p {
    font-size: 1.2rem;
}

.homepage-section {
    background-color: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    text-align: center;
}

.homepage-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.homepage-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}
.homepage-section img {
    max-width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: contain; 
    margin-bottom: 20px; 
}
/* .homepage-background {
    background-color: #f9f9f9;
} */

/* .homepage-our-data {
    background-color: #eaf6ff;
} */

/* .homepage-the-model {
    background-color: #fff7e6;
} */

/* .homepage-our-web-app {
    background-color: #e2f7e1;
} */

/* .homepage-languages-libraries {
    background-color: #fff5f5;
} */

.homepage-faq {
    background-color: #f0f4f7;
}
.homepage-section img {
    max-width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: contain; 
    margin-bottom: 20px; 
}
.special-thanks {
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
    padding: 0 20px;
}

.special-thanks h2 {
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.special-thanks h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #555;
}

.special-thanks ul {
    list-style: none; 
    padding-left: 20px;
    text-align: center;
    display: inline-block;
}

.special-thanks li {
    font-size: 16px;
    margin-bottom: 5px;
}
/* 
.graph-demo {
    margin-bottom: 30px;
}

.graph-demo h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.graph-demo img {
    max-width: 100%;
    margin: 10px 0;
    border: 1px solid #ddd;
} */