.aedp-hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 0 24px;
}

.aedp-container {
    --aedp-gutter: 18px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 24px var(--aedp-gutter);
    min-height: 400px;
    position: relative;
    box-sizing: border-box;
}

.aedp-container .page-title-container {
    margin-left: calc(var(--aedp-gutter) * -1);
    margin-right: calc(var(--aedp-gutter) * -1);
    border-radius: 0;
    height: 360px;
    margin-bottom: 28px;
}

.aedp-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 900px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.aedp-section {
    margin: 30px 0;
}

.aedp-intro {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.aedp-intro-content {
    color: #333;
    line-height: 1.7;
    font-size: 1.05rem;
}

.aedp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 18px;
}

.aedp-highlight-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.aedp-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.aedp-highlight-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aedp-highlight-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.aedp-highlight-title {
    font-weight: 600;
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.aedp-highlight-desc {
    color: #555;
    line-height: 1.6;
    font-size: 0.98rem;
}

.aedp-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
    border-radius: 0;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-left: calc(var(--aedp-gutter) * -1);
    margin-right: calc(var(--aedp-gutter) * -1);
}

.aedp-cta-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

.aedp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.aedp-cta-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
    .aedp-container {
        --aedp-gutter: 16px;
        padding-top: 20px;
    }

    .aedp-container .page-title-container {
        height: 320px;
    }

    .aedp-highlights-grid {
        grid-template-columns: 1fr;
    }

    .aedp-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .aedp-container {
        --aedp-gutter: 12px;
        padding-top: 16px;
    }

    .aedp-container .page-title-container {
        height: 260px;
    }

    .aedp-intro {
        padding: 20px;
    }

    .aedp-cta {
        padding: 20px;
    }
}
