.content-intro {
    background: linear-gradient(135deg, #f9faff 0%, #ffffff 100%);
    padding: 80px 20px;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-intro h2 {
    color: #2a2c2f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

.intro-content {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.intro-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.intro-highlight {
    background: linear-gradient(135deg, #1460be 0%, #188a88 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.intro-highlight p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.intro-highlight p:last-child {
    margin-bottom: 0;
}

.intro-highlight p strong {
    color: #15d7d4;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .content-intro {
        padding: 60px 20px;
    }

    .content-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .intro-highlight {
        padding: 25px;
    }

    .intro-content p,
    .intro-highlight p {
        text-align: left;
        font-size: 0.9rem;
    }
}
