
@import url('index.css');

.renmar-about-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(30,136,229,0.95), rgba(76,175,80,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 8%;
    position: relative;
}

.renmar-about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.renmar-about-hero p {
    font-size: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.renmar-mission {
    padding: 8rem 8%;
    background: white;
}

.renmar-mission-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.renmar-mission-text {
    flex: 1;
}

.renmar-mission-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 2rem;
    color: #333;
}

.renmar-mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.renmar-mission-image {
    flex: 1;
}

.renmar-mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.renmar-values {
    padding: 8rem 8%;
    background: #f9f9f9;
}

.renmar-values h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-value {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.renmar-value:hover {
    transform: translateY(-10px);
}

.renmar-value h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-bottom: 1rem;
    color: #1E88E5;
}

.renmar-value p {
    color: #666;
    line-height: 1.6;
}

.renmar-team {
    padding: 8rem 8%;
    background: white;
}

.renmar-team h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-team-member {
    text-align: center;
}

.renmar-team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.renmar-team-member:hover img {
    transform: scale(1.05);
}

.renmar-team-member h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: #333;
}

.renmar-team-member p {
    color: #666;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .renmar-mission-content {
        flex-direction: column;
    }

    .renmar-values-grid,
    .renmar-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .renmar-about-hero h1 {
        font-size: 36px;
    }

    .renmar-values-grid,
    .renmar-team-grid {
        grid-template-columns: 1fr;
    }
} 