/* ========================================
   COMMON HERO SECTION
   ======================================== */
.common-hero {
    background: linear-gradient(135deg, #1E3D6B 0%, #2165B2 100%);
    color: white;
    padding: 100px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.common-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.common-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-text strong {
    font-weight: bold;
}

.hero-text .lead {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   COMMON CONTENT SECTION
   ======================================== */
.common-content-section {
    padding: 60px 0;
}

.common-content-section h2 {
    color: #1E3D6B;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.common-content-section h2:first-child {
    margin-top: 0;
}

.common-content-section h3 {
    color: #2A558C;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
}

.common-content-section h4 {
    color: #2A558C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.common-content-section ul,
.common-content-section ol {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.common-content-section ul li,
.common-content-section ol li {
    padding: 12px 0;
    position: relative;
    padding-left: 40px;
    line-height: 1.6;
}

.common-content-section ul li::before {
    content: '•';
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 1.2rem;
    color: #F8606A;
}

.common-content-section ol {
    counter-reset: item;
}

.common-content-section ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 10px;
    top: 12px;
    font-weight: 600;
    color: #F8606A;
}

.common-content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.common-content-section a {
    color: #F8606A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.common-content-section a:hover {
    color: #1E3D6B;
    text-decoration: underline;
}

.common-content-section strong {
    color: #1E3D6B;
    font-weight: 600;
}

/* ========================================
   COMMON SECTION TITLE
   ======================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3D6B;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ========================================
   COMMON RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 768px) {
    .common-hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .lead {
        font-size: 1.2rem;
    }

    .hero-image {
        order: -1;
    }

    .common-content-section {
        padding: 40px 0;
    }

    .common-content-section h2 {
        font-size: 1.8rem;
    }

    .common-content-section h3 {
        font-size: 1.5rem;
    }

    .common-content-section h4 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .common-hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .common-content-section {
        padding: 30px 0;
    }

    .common-content-section p,
    .common-content-section ul li,
    .common-content-section ol li {
        font-size: 1rem;
    }
}