/* =====================================================
   CERTIFICATION PAGE STYLES
   ===================================================== */
body.inner-page {
    background-color: #f4f6f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cert-main-section {
    flex: 1;
    max-width: 1200px;
    margin: 180px auto 100px auto; 
    text-align: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.cert-main-section h1 {
    color: #111111;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cert-main-section h1 span {
    color: #ffb400; 
}

.cert-main-section p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 50px;
}

.certification-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eeeeee;
    width: 320px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: #ffb400;
    box-shadow: 0 15px 35px rgba(255, 180, 0, 0.15);
}

.cert-card i {
    font-size: 45px;
    color: #ffb400;
    margin-bottom: 20px;
}

.cert-card h3 {
    color: #111111;
    font-size: 20px;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .cert-main-section { margin-top: 140px; }
    .cert-card { width: 100%; max-width: 350px; }
}