/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #e0f7fa;
    color: #003c6c;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px;
    background-color: #b2ebf2;
    color: #004d40;
    border-bottom: 4px solid #00acc1;
}

#searchBox {
    display: block;
    margin: 20px auto;
    padding: 10px;
    font-size: 1rem;
    width: 80%;
    max-width: 500px;
    border: 2px solid #00acc1;
    border-radius: 8px;
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 20px;
}

.module-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: scale(1.05);
}

.module-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00796b;
}

.module-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    margin: 5px 0;
    padding-left: 10px;
    position: relative;
}

.module-list li::before {
    content: '\2022';
    color: #00796b;
    font-weight: bold;
    position: absolute;
    left: 0;
}



.how-we-work-section {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.how-we-work-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #01579b;
}

.how-we-work-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.team-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.team-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #007c91;
}

.team-block ul {
    padding-left: 1rem;
}

.modules-section h3 {
    font-size: 1.4rem;
    color: #01579b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.module-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.module-columns ul {
    flex: 1;
    min-width: 220px;
    padding-left: 1rem;
}