/* =========================================
   CERTIFICATIONS PAGE STYLES
========================================= */

/* --- Hero Section --- */
.certifications-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 180px;
}

.certifications-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75);
    z-index: 1;
}

.certifications-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.certifications-hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.certifications-hero__underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
}

.certifications-hero__underline path {
    stroke: #967259;
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.certifications-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.certifications-hero .btn {
    background-color: #967259;
    color: white;
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.certifications-hero .btn:hover {
    background-color: #755541;
    transform: translateY(-2px);
}

/* --- Certifications List Section --- */
.certifications-section {
    padding: 100px 0;
    background-color: white;
}

.certifications-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 60px;
}

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
}

.certification-item {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 48px;
}

.certification-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.certification-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.certification-item h3 span {
    font-weight: 400;
    color: #4B5563;
}

.certification-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 12px;
}

.certification-item a {
    color: #967259;
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px;
}

.certification-item a:hover {
    color: #755541;
}

/* --- CTA Section --- */
.certifications-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    text-align: center;
    color: white;
}

.certifications-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.certifications-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-cta .btn {
    background-color: white;
    color: #967259;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.certifications-cta .btn:hover {
    background-color: #0F172A;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .certifications-hero__title {
        font-size: 36px;
    }

    .certifications-hero__content {
        text-align: center;
    }

    .certifications-section h2 {
        font-size: 28px;
    }
}