.section-title {
    font-size: 1.8em;
    color: #562039;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.section-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.features-grid, .how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-title, .step_title {
    font-size: 1.2em;
    color: #562039;
    margin-bottom: 12px;
    font-weight: bold;
}

.feature-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

.step {
    text-align: center;
    padding: 25px 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: white;
    color: #66D7D1;
    border: 1px solid transparent;
    border-radius: 50%;
    border-color: #66D7D1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 auto 15px;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin-top: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.team-member {
    text-align: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-3px);
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66D7D1, #562039);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.2em;
    color: #562039;
    margin-bottom: 8px;
    font-weight: bold;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-role {
    color: #66D7D1;
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
    font-size: 1.1em;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-bio {
    color: #666;
    line-height: 1.5;
    font-size: 0.9em;
    flex: 1;
}

.contact-btn{
    padding: 12px 25px;
    border: 2px solid #66D7D1;
    background: white;
    color: #66D7D1;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Photo adjustments */
.camila-photo img {
    object-position: 50% 30%;
}

.alana-photo img {
    object-position: 50% 50%;
}

.maria-photo img {
    object-position: 50% 80%;
}

.bianca-photo img {
    object-position: 80% 50%;
}


/* Tablet Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.2em;
    }

    .user-welcome {
        padding: 30px 20px;
    }
    
    .welcome-title {
        font-size: 2.2em;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .how-it-works {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {

     .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .how-it-works {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}

/* Small mobile fixes */
@media (max-width: 480px) {
/*     
    .user-welcome {
        padding: 30px 20px;
    } */

    .welcome-subtitle {
        font-size: 1.1em;
    }
    
    .welcome-title {
        font-size: 1.6em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .member-image {
        width: 90px;
        height: 90px;
    }
  	.team-grid {
        grid-template-columns: 1fr !important;
        max-width: 900px;
    }
}