/* Page header */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* About section */
.about {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Values section */
.values {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.value-lime { background-color: #84cc16; }
.value-blue { background-color: #3b82f6; }
.value-yellow { background-color: #eab308; }
.value-purple { background-color: #a855f7; }

.value-text h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.value-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Team section */
.team {
    margin-top: 60px;
    text-align: center;
}

.team h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-icon-blue { background-color: #3b82f6; }
.team-icon-yellow { background-color: #eab308; }

.team-member h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text, .values, .team {
    animation: fadeInUp 0.6s ease forwards;
}

.about-text { animation-delay: 0.1s; }
.values { animation-delay: 0.2s; }
.team { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}