/* -----------------------------------
   PE HERO MODULE — CSS
----------------------------------- */

.pe-hero-wrapper {
    width: 100%;
    padding: 120px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pe-hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pretitle styling (mint pill) */
.pe-pretitle {
    display: inline-block;
    background-color: #E6F7F6;
    color: #0F2C59
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Main title */
.pe-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Intro text */
.pe-hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(10,25,49,0.75);
    margin-bottom: 45px;
    max-width: 800px;
}

/* CTA Button */
.pe-hero-cta {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.pe-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}