body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Light background for better contrast */
}

.contact-cards {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between cards */
    margin-top: 20px;
}



.cofounder-card, .contact-form-card {
    background-color: #fff; /* White background for cards */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    width: 48%; /* Set width to allow two cards in a row */
    margin-right: 20px; /* Add margin to the right for spacing */
    color: #000;
}

.cofounder-card:last-child, .contact-form-card:last-child {
    margin-right: 0; /* Remove margin from the last card */
}

.cofounder-image {
    width: 150px; /* Circular image */
    height: 150px; /* Circular image */
    border-radius: 50%; /* Make the image circular */
    object-fit: cover; /* Maintain aspect ratio */
    border: 2px solid #4CAF50; /* Green border */
    margin-bottom: 10px; /* Space below the image */
}

h3 {
    color: #4CAF50; /* Green for headings */
}

.contact-form {
    max-width: 100%; /* Full width for the form */
}

.form-group {
    margin-bottom: 1.5em;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    background-color: #f4f4f4;
    color: #000;
    transition: border-color 0.3s;
}

.btn {
    background-color: #4CAF50; /* Green button */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #388e3c; /* Darker green on hover */
}

.contact-info {
    margin-top: 15px; /* Space above the contact info */
}

.contact-info p {
    margin: 5px 0; /* Space between contact info lines */
    color: #000; /* Text color */
}

.contact-info i {
    margin-right: 8px; /* Space between icon and text */
    color: #4CAF50; /* Icon color */
}

.contact-info a {
    color: #4CAF50; /* Link color */
    text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center align cards */
    }

    .cofounder-card, .contact-form-card {
        width: 100%; /* Full width for cards on mobile */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add space between cards */
    }


}
    /* Add padding to the main container for mobile view */
    main.container {
        padding: 1em; /* Adjust padding as needed */
        margin: 20px;
    }