/* Add this to your CSS file */


.about-section {
    padding: 60px 0;
    text-align: center;
}

.team-section {
    padding: 60px 0;
    text-align: center;
}

.team-member {
    margin-bottom: 30px;
}

.team-icon {
    width: 80px;
    height: 80px;
    background-color: #e7f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-icon i {
    font-size: 24px;
    color: #4285f4;
}

.otc-section {
    padding: 60px 0;
}

.benefits-section {
    padding: 60px 0;
    background-color: #f9fafc;
}

.benefit-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #e7f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon i {
    font-size: 20px;
    color: #4285f4;
}

.process-section {
    padding: 60px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-icon {
    color: #10b981;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.5;
}

.regulations {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        margin-right: 10px;
    }
}

.regulations {
    background-color: #f9fafc;
    padding: 25px;
    border-radius: 12px;
}

.regulations .check-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.regulations .check-icon {
    color: #34a853;
    margin-right: 10px;
}

.cta-section {
    background-color: #e7f0ff;
    padding: 40px 0;
    text-align: center;
}

/* Responsive team member layout */
@media (max-width: 767px) {
    .team-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .team-member {
        width: 50%;
        max-width: 170px;
    }
}

@media (min-width: 768px) {
    .team-row {
        display: flex;
        justify-content: center;
    }
    
    .team-member {
        width: 20%;
        max-width: 170px;
    }
}