/* ==================================================
   CERID WEBSITE STYLESHEET
================================================== */

:root{
    --primary:#185301;
    --secondary:#791213;
    --white:#FEFEFE;
    --dark:#1a1a1a;
    --light:#f7f7f7;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#fff;
    color:#333;
    line-height:1.7;
}

/* TOP HEADER */
.top-header{
    background:var(--secondary);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left span{
    margin-right:20px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    transition:0.3s;
}

.top-right a:hover{
    color:#ddd;
}

/* MAIN HEADER */
.main-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

/* LOGO */
.logo-section a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-section img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
    margin-right:15px;
}

.logo-text h2{
    color:var(--primary);
    margin-bottom:2px;
    font-size:28px;
    font-weight:700;
}

.logo-text p{
    color:#555;
    font-size:13px;
    margin:0;
    max-width:350px;
}

/* NAVIGATION */
.main-nav ul{
    list-style:none;
    display:flex;
    align-items:center;
}

.main-nav ul li{
    position:relative;
}

.main-nav ul li a{
    display:block;
    padding:15px 16px;
    color:#222;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.main-nav ul li:hover > a{
    color:var(--primary);
}

/* DROPDOWN */
.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    width:280px;
    display:none !important;
    flex-direction:column;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    border-top:4px solid var(--primary);
}

.submenu li{
    width:100%;
}

.submenu li a{
    padding:12px 20px;
    border-bottom:1px solid #eee;
}

.dropdown:hover > .submenu{
    display:flex !important;
}

/* SUB SUB MENU */
.dropdown-submenu{
    position:relative;
}

.dropdown-submenu .submenu{
    top:0;
    left:100%;
}

/* NAV BASELINE */
.nav-baseline{
    height:5px;
    background:var(--primary);
}

/* MOBILE */
.mobile-toggle{
    display:none;
    font-size:28px;
    color:var(--primary);
    cursor:pointer;
}

/* FOOTER */
.main-footer{
    background:#111;
    color:#ddd;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-widget h3{
    color:#fff;
    margin-bottom:25px;
    position:relative;
    font-size:22px;
}

.footer-widget h3::after{
    content:'';
    width:50px;
    height:3px;
    background:var(--primary);
    position:absolute;
    bottom:-10px;
    left:0;
}

.footer-widget ul{
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}

.footer-widget ul li a:hover{
    color:var(--primary);
    padding-left:5px;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

.footer-widget p{
    margin-bottom:12px;
}

/* FOOTER BOTTOM */
.footer-bottom{
    background:#0a0a0a;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px 0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1200px){

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 5px 20px rgba(0,0,0,0.1);
    }

    .main-nav.active{
        display:block;
    }

    .main-nav ul{
        flex-direction:column;
        align-items:flex-start;
    }

    .main-nav ul li{
        width:100%;
    }

    .main-nav ul li a{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .submenu{
        position:relative;
        width:100%;
        left:0;
        box-shadow:none;
    }

    .dropdown-submenu .submenu{
        left:0;
    }

    .mobile-toggle{
        display:block;
    }

    .logo-text p{
        display:none;
    }
}

@media(max-width:768px){

    .top-header-content{
        flex-direction:column;
        gap:10px;
    }

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .logo-text h2{
        font-size:22px;
    }
}

/* ==========================================
   HERO / HEADER CAROUSEL
========================================== */

.hero-section{
    position: relative;
    overflow: hidden;
}

.header-carousel{
    position: relative;
}

/* ==========================================
   OWL CAROUSEL FIX
========================================== */

.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item{
    height:100%;
}

.header-carousel .owl-item{
    float:left;
}

.header-carousel .owl-carousel-item{
    position:relative;
    width:100%;
    height:92vh;
    overflow:hidden;
}

/* SLIDER IMAGE */
.header-carousel .owl-carousel-item img{
    width: 100%;
    height: 92vh;
    object-fit: cover;
    transition: transform 8s ease;
}

/* ZOOM EFFECT */
.header-carousel .owl-item.active .owl-carousel-item img{
    transform: scale(1.08);
}

/* DARK OVERLAY */
.carousel-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45)
    );
    z-index: 1;
}

/* CONTENT WRAPPER */
.carousel-content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* CONTENT CONTAINER */
.carousel-content .container{
    position: relative;
    padding-left: 50px;
    border-left: 8px solid var(--primary);
}

/* DECORATIVE TOP LINE */
.carousel-content .container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 8px;
    background: var(--primary);
}

/* TAG */
.hero-tag{
    display: inline-block;
    background: rgba(24,83,1,0.95);
    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* HERO TITLE */
.carousel-content h1{
    color: #fff;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* HERO TEXT */
.carousel-content p{
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 760px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom{
    background: var(--primary);
    color: #fff;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    border: 2px solid var(--primary);
}

.btn-primary-custom:hover{
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-custom{
    background: transparent;
    color: #fff;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    border: 2px solid #fff;
}

.btn-outline-custom:hover{
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* ==========================================
   OWL NAVIGATION
========================================== */

.header-carousel .owl-nav{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.header-carousel .owl-nav button.owl-prev,
.header-carousel .owl-nav button.owl-next{
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
    font-size: 22px !important;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.header-carousel .owl-nav button.owl-prev:hover,
.header-carousel .owl-nav button.owl-next:hover{
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* DOTS */
.header-carousel .owl-dots{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.header-carousel .owl-dot span{
    width: 14px !important;
    height: 14px !important;
    margin: 5px !important;
    background: rgba(255,255,255,0.5) !important;
}

.header-carousel .owl-dot.active span{
    background: var(--primary) !important;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media(max-width:1200px){

    .carousel-content h1{
        font-size: 50px;
    }

    .carousel-content p{
        font-size: 17px;
    }

}

@media(max-width:992px){

    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img{
        height: 80vh;
    }

    .carousel-content .container{
        padding-left: 30px;
    }

    .carousel-content h1{
        font-size: 42px;
    }

    .carousel-content p{
        font-size: 16px;
        max-width: 100%;
    }

    .header-carousel .owl-nav{
        display: none;
    }

}

@media(max-width:768px){

    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img{
        height: 75vh;
        min-height: 650px;
    }

    .carousel-content{
        padding-top: 50px;
    }

    .carousel-content .container{
        border-left: 5px solid var(--primary);
        padding-left: 20px;
    }

    .carousel-content .container::before{
        width: 70px;
        height: 5px;
    }

    .hero-tag{
        font-size: 11px;
        padding: 8px 14px;
    }

    .carousel-content h1{
        font-size: 34px;
        line-height: 1.25;
    }

    .carousel-content p{
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width: 100%;
        text-align: center;
    }

}

@media(max-width:576px){

    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img{
        min-height: 720px;
    }

    .carousel-content h1{
        font-size: 28px;
    }

    .carousel-content p{
        font-size: 14px;
    }

}
/* ==========================================
   SERVICE / IMPACT CAROUSEL
========================================== */

.service-carousel .owl-stage{
    display:flex;
}

.service-carousel .owl-item{
    display:flex;
    height:auto;
}

.service-carousel .bg-white{
    width:100%;
    border-radius:12px;
    transition:0.4s ease;
}

.service-carousel .bg-white:hover{
    transform:translateY(-6px);
}

/* dots */
.service-carousel .owl-dots{
    margin-top:25px;
    text-align:center;
}

.service-carousel .owl-dot{
    width:12px;
    height:12px;
    background:#cfcfcf !important;
    border-radius:50%;
    margin:0 5px;
}

.service-carousel .owl-dot.active{
    background:#185301 !important;
}

/* ==========================================
   SECTION IMAGE CONTROL
========================================== */

.section-image{
    width:100%;
    max-height:450px;
    overflow:hidden;
    border-radius:12px;
}

.section-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:0.5s ease;
}

/* optional hover effect */
.section-image:hover img{
    transform:scale(1.03);
}

/* SLIDER CONTAINER */
.partner-slider {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.partner-track {
    display: flex;
    width: calc(200%); /* because duplicated */
    animation: scrollPartners 25s linear infinite;
}

/* ITEMS */
.partner-item {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 20px;
}

.partner-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER EFFECT */
.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ANIMATION */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER ZOOM */
.gallery-item:hover img {
    transform: scale(1.1);
}
.footer a:hover {
    text-decoration: underline;
    color: #ffffff !important;
}

/* ==========================================
   CERID CORE COMPETENCIES
========================================== */

.competency-section{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.section-header{
    max-width:850px;
    margin:auto;
}

.section-badge{
    display:inline-block;
    background:rgba(24,83,1,0.1);
    color:#185301;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.3;
}

.section-header p{
    font-size:17px;
    color:#666;
    line-height:1.9;
}

/* CARD */

.competency-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:all 0.4s ease;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.competency-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.10);
}

/* top gradient line */

.competency-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#185301,#791213);
}

/* ICON */

.competency-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg,#185301,#791213);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(24,83,1,0.20);
}

.competency-icon i{
    font-size:34px;
    color:#fff;
}

/* TEXT */

.competency-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
}

.competency-card p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-header h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .section-header h2{
        font-size:28px;
    }

    .competency-card{
        padding:30px 24px;
    }

}

/* ==========================================
   CERID RESEARCH SECTION
========================================== */

.research-section{
    background:#ffffff;
    position:relative;
}

/* CARD */

.research-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:0.4s ease;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    border:1px solid rgba(0,0,0,0.05);
}

.research-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.research-image{
    height:240px;
    overflow:hidden;
    position:relative;
}

.research-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.research-card:hover .research-image img{
    transform:scale(1.08);
}

/* CONTENT */

.research-content{
    padding:30px;
    position:relative;
}

/* ICON */

.research-icon{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#185301,#791213);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-65px;
    position:relative;
    z-index:10;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(24,83,1,0.25);
}

.research-icon i{
    font-size:28px;
    color:#fff;
}

/* TEXT */

.research-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.research-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* ==========================================
   CTA SECTION
========================================== */

.cerid-cta-section{
    position:relative;
    padding:120px 0;
    background-image:url('../img/cta-bg.jpg');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(24,83,1,0.92),
        rgba(121,18,19,0.88)
    );
}

.cta-content{
    max-width:900px;
    margin:auto;
    color:#fff;
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.cta-content h2{
    font-size:48px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

.cta-content p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.92);
    margin-bottom:40px;
}

/* BUTTONS */

.cta-buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-cerid-primary{
    background:#fff;
    color:#185301;
    padding:15px 36px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
}

.btn-cerid-primary:hover{
    background:#185301;
    color:#fff;
}

.btn-cerid-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 36px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s ease;
}

.btn-cerid-outline:hover{
    background:#fff;
    color:#185301;
}

/* RESPONSIVE */

@media(max-width:991px){

    .cta-content h2{
        font-size:36px;
    }

}

@media(max-width:768px){

    .research-image{
        height:220px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:16px;
    }

}

/* ==========================================
   TEAM SECTION
========================================== */

.team-section{
    background:#f8fbff;
    position:relative;
}

.team-section .section-title{
    max-width:850px;
    margin:auto;
}

.team-section .section-badge{
    display:inline-block;
    background:#185301;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.team-section h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.team-section p{
    color:#666;
    font-size:16px;
    line-height:1.9;
}

/* TEAM CARD */

.team-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:all .4s ease;
    border:1px solid #eef1f5;
    position:relative;
    overflow:hidden;
}

.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-color:#185301;
}

/* IMAGE */

.team-image{
    width:170px;
    height:170px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    border:6px solid #185301;
    position:relative;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */

.team-role{
    display:inline-block;
    background:#791213;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    line-height:1.5;
}

.team-card h4{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.team-specialization{
    color:#185301 !important;
    font-weight:600;
    font-size:15px !important;
    margin-bottom:18px !important;
}

.team-field{
    background:#f4f8f2;
    border-left:4px solid #185301;
    padding:14px;
    border-radius:10px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

/* BUTTON */

.btn-team{
    display:inline-block;
    background:#185301;
    color:#fff;
    padding:14px 34px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-team:hover{
    background:#791213;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .team-section h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .team-section h2{
        font-size:28px;
    }

    .team-image{
        width:150px;
        height:150px;
    }

}
/* Page Hero */ .page-hero{ background: linear-gradient(rgba(24,83,1,.90), rgba(24,83,1,.90)), url('../img/about-cerid.jpg') center/cover no-repeat; color: var(--cerid-white); text-align: center; padding: 90px 20px 70px; margin-bottom: 0; } .page-hero h1{ font-size: 3rem; font-weight: 700; margin-bottom: 12px; letter-spacing: .5px; } .page-hero .meta{ font-size: .95rem; opacity: .92; font-weight: 400; } /* Main Wrapper */ .page-wrap{ max-width: 1100px; margin: 0 auto; padding: 60px 20px 80px; color: var(--cerid-text); line-height: 1.8; } /* Intro Paragraph */ .page-wrap > p:first-of-type{ background: var(--cerid-light); border-left: 5px solid var(--cerid-green); padding: 24px 28px; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,.04); } /* Table of Contents */ .toc{ background: var(--cerid-white); border: 1px solid var(--cerid-border); border-radius: 16px; padding: 28px; margin: 40px 0 50px; box-shadow: 0 8px 30px rgba(0,0,0,.05); } .toc h2{ color: var(--cerid-green); font-size: 1.35rem; margin-bottom: 18px; font-weight: 700; } .toc ol{ margin: 0; padding-left: 20px; } .toc li{ margin-bottom: 10px; } .toc a{ color: var(--cerid-text); text-decoration: none; transition: all .25s ease; font-weight: 500; } .toc a:hover{ color: var(--cerid-green); padding-left: 4px; } /* Policy Sections */ .policy-section{ background: var(--cerid-white); border: 1px solid var(--cerid-border); border-radius: 18px; padding: 34px; margin-bottom: 28px; box-shadow: 0 10px 32px rgba(0,0,0,.04); transition: transform .2s ease, box-shadow .2s ease; } .policy-section:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.06); } .policy-section h2{ color: var(--cerid-green); font-size: 1.55rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; line-height: 1.3; } /* Section Number */ .sec-num{ width: 42px; height: 42px; border-radius: 50%; background: var(--cerid-green); color: var(--cerid-white); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; } /* Paragraphs */ .policy-section p{ margin-bottom: 16px; color: var(--cerid-text); } /* Lists */ .policy-section ul{ padding-left: 22px; margin-bottom: 16px; } .policy-section li{ margin-bottom: 10px; } /* Links */ .policy-section a, .page-wrap a{ color: var(--cerid-green); text-decoration: none; font-weight: 600; } .policy-section a:hover, .page-wrap a:hover{ color: var(--cerid-maroon); text-decoration: underline; } /* Highlight Box */ .highlight-box{ background: #F3F8F1; border-left: 5px solid var(--cerid-green); border-radius: 12px; padding: 20px 24px; margin-top: 22px; } .highlight-box p{ margin: 0; } /* Warning Box */ .warning-box{ background: #FFF7F5; border-left: 5px solid var(--cerid-maroon); border-radius: 12px; padding: 22px 24px; margin-top: 22px; } .warning-box p{ margin: 0; } /* Contact Card */ .contact-card{ background: var(--cerid-white); border: 1px solid var(--cerid-border); border-top: 6px solid var(--cerid-green); border-radius: 18px; padding: 34px; margin-top: 16px; box-shadow: 0 12px 34px rgba(0,0,0,.05); } .contact-card h3{ color: var(--cerid-green); margin-bottom: 18px; font-weight: 700; } .contact-card p{ margin-bottom: 12px; } /* Emphasis */ strong{ color: var(--cerid-green); font-weight: 700; } /* Horizontal Rule (if used later) */ .page-wrap hr{ border: 0; border-top: 1px solid var(--cerid-border); margin: 32px 0; } /* Responsive */ @media (max-width: 992px){ .page-hero{ padding: 75px 20px 60px; } .page-hero h1{ font-size: 2.4rem; } .policy-section{ padding: 28px 24px; } } @media (max-width: 768px){ .page-wrap{ padding: 40px 16px 60px; } .page-hero h1{ font-size: 2rem; } .policy-section h2{ font-size: 1.3rem; align-items: flex-start; } .sec-num{ width: 36px; height: 36px; font-size: .9rem; margin-top: 2px; } .toc, .contact-card{ padding: 22px; } } @media (max-width: 480px){ .page-hero{ padding: 65px 16px 50px; } .page-hero h1{ font-size: 1.75rem; } .policy-section{ padding: 22px 18px; border-radius: 14px; } .toc{ border-radius: 14px; } }