.management-container {
    max-width: 1600px;
    margin: 0 auto;
}

.management-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.management-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.management-visual:hover img {
    transform: scale(1.03);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
}

.management-content {
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2c6ecb;
}

.content-block {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .management-visual {
        height: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .management-content {
        padding: 2rem 1rem;
    }

    .content-block {
        padding: 1.5rem;
    }
}

/* Animation keyframes */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-rotate-in {
    animation: rotateIn 0.6s ease-out forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
