body {
    margin: 0;
    color: rgb(10, 10, 10);
    font-family: Arial, sans-serif;
}


/* First section */
.hero {
    height: 100vh;
    text-align: center;
    background-color: rgb(140,140,140);
    padding-bottom: 0px;
    padding-top: 0px;
    min-height: 10;
    height: auto;
}
.hero h1 {
    font-size: 4em;
    color: rgb(1, 1, 1);
    margin-top: 0;
    margin-bottom: 20px;
}
.hero-divider,
.feature-divider {
    display: block;
    width: 100%;
    height: 120px;
    margin: 0;
    line-height: 0;
    background-color: rgb(140,140,140);
}

.feature-divider {
    margin-top: -2px;

}

/* Other sections */
section {
    /* padding: 40px 10%; */
    min-height: 350px;
    background-color: rgb(255, 255, 255);
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title  {
    color: rgb(201, 0, 0);
}

.founders {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    
}

.founder-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 180px;
    text-align: center;
    margin-top: 30px;
    
}

.founder {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.founder img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 4px solid #0b0b0b;
    display: block;
    margin: 0 0 15px;
}

.founder h1 {
    margin: 0 0 8px;
    font-size: 3.2em;
    color: rgb(201, 0, 0);
    padding: 10;
}
.founder h3 {
    margin: 0 0 8px;
    font-size: 1.2em;
    color: rgb(10,10,10);
    padding: 0;
}
.founder p {
    margin: 0 0 8px;
}

.aboutUs {
    text-align: center;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255);
}

.aboutUs h2 {
    font-size: 2.5em;
    color: rgb(201, 0, 0);
    padding: 0 12px;
    margin-bottom: 16px;
}

.aboutUs p {
    font-size: 1.2em;
    color: rgb(10,10,10);
    padding: 0 12px;
    max-width: 700px;
    margin: 0 auto 16px auto;
    line-height: 1.6;
}

.features {
    text-align: center;
    padding: 40px 5%;
}

.feature-divider {
    background-color: white;
}

.features h2 {
    font-size: 2.5em;
    color: rgb(201, 0, 0);
    margin: 0 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgb(1, 1, 1);
}

.card-title i {
    color: rgb(1, 1, 1);
}

.card:hover {
    transform: translateY(-8px);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.Contact{
    background-color: rgb(140,140,140);
    color: white;
    margin-top: 0;
    padding: 10px 5%;
    min-height: 500px;
}
.Contact h2 {
    font-size: 2.0em;
    color: rgb(201, 0, 0);
    margin: 0 0 30px;
    padding-top: 10px;
}

.contact-content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.contact-left {
    flex: 1;
    color : white;
    align-self: flex-start;
    padding-top: 15px;
}

.contact-left h3 {
    font-size: 1.5em;
    margin: 0 0 15px;
    color: black;
}

.contact-left p {
    margin: 0;
    font-size: 1.1em;
    color: white !important;
}

.contact-right {
    flex: 1;
    color : white;
}

.contact-right p {
    color: white !important;
    margin: 0 0 10px;
}

.contact-right a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: opacity 0.3s;
}

.contact-right a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgb(255, 255, 255);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: white !important;
    margin: 0;
}

.contact-right a[href^="mailto:"] {
    color: #0066ff;
}




.Contact-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 40px;
}

.Contact h3 {
    margin-bottom: 10px;
}

.Contact p {
    color: #9ca3af;
}

.Contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Contact-links a {
    color: #9ca3af;
    text-decoration: none;
}

.Contact-links a:hover {
    color: white;
}

.Contact-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;

    border-top: 1px solid #374151;
}