/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Company Content ===== */
.company-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.company-content > div > div {
    margin-bottom: 80px;
}

.company-info h2,
.company-mission h2,
.company-team h2,
.company-values h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.company-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
}

/* ===== Company Details ===== */
.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background-color: #f5f5f0;
    padding: 40px;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a5f4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===== Company Mission ===== */
.company-mission {
    background-color: #f5f5f0;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1a5f4a;
}

.company-mission p {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.company-mission p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #1a5f4a;
    margin-bottom: 20px;
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: #f5f5f0;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background-color: #1a5f4a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-title {
    font-size: 13px;
    color: #1a5f4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ===== Values Section ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #1a5f4a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 18px;
    color: #1a5f4a;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ===== CTA Final ===== */
.cta-final {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.cta-final p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-final .btn {
    padding: 14px 32px;
    font-size: 14px;
    background-color: white;
    color: #1a5f4a;
    font-weight: 700;
}

.cta-final .btn:hover {
    background-color: #f5f5f0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .company-info h2,
    .company-mission h2,
    .company-team h2,
    .company-values h2 {
        font-size: 24px;
    }

    .company-details {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 24px;
    }
}
