.hero-section {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.hero-title {
    color: white;
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -1px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.about-section {
    padding: 80px 0;
    background: #f5f6fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.8;
    font-size: 18px;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-content p {
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.team-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #1498d5;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.manager-card {
    background: linear-gradient(135deg, #1498d5 0%, #0354a2 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 30px rgba(20, 152, 213, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.manager-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.manager-card .team-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.manager-card .team-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

.project-group {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.project-title {
    font-size: 28px;
    font-weight: 600;
    color: #0354a2;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1498d5;
    position: relative;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0354a2;
}

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

.team-card {
    background: #f5f6fa;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(20, 152, 213, 0.15);
    border-color: #1498d5;
}

.team-position {
    font-size: 22px;
    font-weight: 600;
    color: #1498d5;
    margin-bottom: 8px;
}

.team-name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.team-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-section {
        height: 200px;
    }

    .hero-title {
        font-size: 42px;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-content {
        padding: 30px 20px;
        font-size: 16px;
    }

    .team-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .manager-card {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .manager-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .manager-card .team-name {
        font-size: 26px;
    }

    .manager-card .team-description {
        font-size: 15px;
    }

    .project-group {
        margin-bottom: 40px;
    }

    .project-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

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

    .team-card {
        padding: 30px 20px;
    }

    .team-position {
        font-size: 20px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 150px;
    }

    .hero-title {
        font-size: 32px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-content {
        padding: 25px 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    .team-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .manager-card {
        padding: 30px 20px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .manager-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .manager-card .team-name {
        font-size: 22px;
    }

    .manager-card .team-description {
        font-size: 14px;
    }

    .project-group {
        margin-bottom: 30px;
    }

    .project-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .team-grid {
        gap: 15px;
    }

    .team-card {
        padding: 25px 15px;
        border-radius: 10px;
    }

    .team-position {
        font-size: 18px;
    }

    .team-name {
        font-size: 15px;
    }

    .team-description {
        font-size: 13px;
    }
}
