/* ================= TOP BAR ================= */
.top-bar {
    background: #073763;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-bar a,
.top-bar span {
    color: #ffffff;
}

.top-bar i {
    color: #ffd43b;
}

/* ================= HEADER ================= */
.main-header {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 82px;
}

/* ================= BRAND ================= */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #073763;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand h1 {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    color: #073763;
    margin: 0;
}

.brand p {
    font-size: 11px;
    font-weight: 700;
    color: #0b7a3b;
    letter-spacing: 0.5px;
    margin: 3px 0 0;
}

/* ================= NAVIGATION ================= */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 11px;
    border-radius: 7px;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #e7f7ee;
    color: #0b7a3b;
}

.main-nav .donate-btn {
    background: #e63946;
    color: #ffffff;
    margin-left: 5px;
    padding: 11px 15px;
}

.main-nav .donate-btn:hover {
    background: #c92f3b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================= MENU TOGGLE ================= */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #073763;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .brand h1 {
        font-size: 18px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 9px 8px;
    }
}

@media (max-width: 992px) {
    .top-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .nav-flex {
        min-height: 75px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 4px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.12);
        display: none;
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 8px;
    }

    .main-nav .donate-btn {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .top-left,
    .top-right {
        justify-content: center;
        gap: 8px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand h1 {
        font-size: 15px;
    }

    .brand p {
        font-size: 9px;
    }

    .nav-flex {
        min-height: 68px;
    }

    .main-nav {
        top: 68px;
    }
}


/* ================= ADVANCED HEADER EFFECTS ================= */
.main-header {
    transition: 0.3s ease;
}

.main-header:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.brand:hover img {
    transform: scale(1.05);
}

.brand img {
    transition: 0.3s ease;
}

/* ================= NAV ACTIVE LINE EFFECT ================= */
.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: #0b7a3b;
    transform: scaleX(0);
    transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav .donate-btn::after {
    display: none;
}

/* ================= DONATE BUTTON ANIMATION ================= */
.donate-btn {
    animation: donatePulse 2s infinite;
}

@keyframes donatePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230,57,70,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0);
    }
}

/* ================= MOBILE MENU ANIMATION ================= */
@media (max-width: 992px) {
    .main-nav {
        animation: slideDown 0.28s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav a::after {
        display: none;
    }
}

/* ================= TOP SOCIAL HOVER ================= */
.top-right a i {
    transition: 0.25s ease;
}

.top-right a:hover i {
    transform: translateY(-2px);
    color: #ffffff;
}

/* ================= MOBILE POLISH ================= */
@media (max-width: 576px) {
    .top-right span {
        display: none;
    }

    .brand {
        max-width: 78%;
    }

    .brand div {
        overflow: hidden;
    }

    .brand h1,
    .brand p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}






/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

section {
    padding: 70px 0;
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title span {
    display: inline-block;
    color: #0b7a3b;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 34px;
    color: #073763;
    margin-bottom: 10px;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
}

/* ================= HERO ================= */
.arsp-hero {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    padding: 80px 0;
    color: #fff;
}

.arsp-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 45px;
}

.arsp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.arsp-hero-left h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.arsp-hero-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #e5eef7;
    margin-bottom: 22px;
}

.hero-announcement {
    background: rgba(255,255,255,0.13);
    padding: 13px 16px;
    border-left: 4px solid #ffd43b;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
}

.hero-announcement i {
    color: #ffd43b;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn {
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn.primary {
    background: #e63946;
    color: #fff;
}

.hero-btn.secondary {
    background: #fff;
    color: #073763;
}

.hero-btn.rtse {
    background: #ffd43b;
    color: #111827;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* ================= SLIDER ================= */
.arsp-slider {
    position: relative;
    width: 100%;
    height: 390px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.slider-window {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(7,55,99,0.82);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
}

.slide-caption h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.slide-caption p {
    font-size: 14px;
    color: #e5e7eb;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.slider-control.prev {
    left: 14px;
}

.slider-control.next {
    right: 14px;
}

.slider-control:hover {
    background: #0b7a3b;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    gap: 7px;
    z-index: 15;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.slider-dot.active {
    background: #ffd43b;
}

/* ================= COUNTER ================= */
.counter-section {
    background: #fff;
    padding: 45px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.counter-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.counter-item i {
    font-size: 32px;
    color: #0b7a3b;
    margin-bottom: 12px;
}

.counter-item h3 {
    font-size: 34px;
    color: #073763;
}

.counter-item p {
    color: #6b7280;
    font-weight: 600;
}

/* ================= FOCUS AREAS ================= */
.focus-section {
    background: #f4f7fb;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.focus-card {
    background: #fff;
    padding: 28px 18px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.focus-card:hover {
    transform: translateY(-6px);
}

.focus-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e7f7ee;
    color: #0b7a3b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.focus-card h3 {
    color: #073763;
    font-size: 17px;
}

/* ================= INITIATIVES ================= */
.initiative-section {
    background: #fff;
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.initiative-card {
    background: #f8fafc;
    padding: 25px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.initiative-card:hover {
    transform: translateY(-6px);
}

.initiative-card i {
    font-size: 32px;
    color: #0b7a3b;
    margin-bottom: 15px;
}

.initiative-card h3 {
    color: #073763;
    font-size: 18px;
    margin-bottom: 10px;
}

.initiative-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.initiative-card a {
    color: #e63946;
    font-weight: 700;
}



/* ================= ANNOUNCEMENT + EVENT ================= */
.announcement-event {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    color: #fff;
}

.announce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.announcement-box,
.event-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px;
    border-radius: 18px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.announce-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffd43b;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.announcement-box h3,
.event-box h3 {
    margin-bottom: 10px;
}

.announcement-box p,
.event-box p {
    color: #e5e7eb;
    line-height: 1.6;
}

.announcement-box a,
.event-box a {
    display: inline-block;
    margin-top: 10px;
    color: #ffd43b;
    font-weight: 700;
}

.event-box span {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: #ffd43b;
}

/* ================= MANAGEMENT BODY ================= */
.management-preview-section {
    background: #f4f7fb;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.management-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.management-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e7f7ee;
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card h3 {
    color: #073763;
    font-size: 18px;
}

.management-card p {
    color: #0b7a3b;
    font-weight: 700;
    margin-top: 5px;
}

/* ================= GALLERY ================= */
.gallery-preview-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.section-action {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #073763;
    color: #fff;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
}

.view-more-btn:hover {
    background: #0b7a3b;
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
    background: #073763;
    color: #fff;
}

.newsletter-box {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
    align-items: center;
}

.newsletter-content span {
    color: #ffd43b;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-content h2 {
    font-size: 30px;
    margin: 8px 0;
}

.newsletter-content p {
    color: #e5e7eb;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    background: #ffd43b;
    color: #111827;
    font-weight: 800;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .arsp-hero-container,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .counter-grid,
    .card-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .initiative-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arsp-hero-left h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .arsp-hero {
        padding: 55px 0;
    }

    .arsp-hero-left h1 {
        font-size: 31px;
    }

    .arsp-hero-left p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
        width: 100%;
    }

    .arsp-slider {
        height: 260px;
    }

    .counter-grid,
    .card-grid,
    .initiative-grid,
    .announce-grid,
    .management-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .announcement-box,
    .event-box {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .arsp-hero-left h1 {
        font-size: 27px;
    }

    .arsp-slider {
        height: 220px;
        border-radius: 14px;
    }

    .slide-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px;
    }

    .slide-caption h3 {
        font-size: 16px;
    }

    .slide-caption p {
        font-size: 12px;
    }

    .counter-item h3 {
        font-size: 28px;
    }

    .newsletter-box {
        padding: 25px;
    }
}


/* ==========================================
   MANAGEMENT BODY PAGE
========================================== */

.page-banner{
    background:linear-gradient(135deg,#003366,#0b7a3b);
    padding:70px 20px;
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.page-banner p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
    color:#f5f5f5;
}

.breadcrumb{
    margin-top:20px;
    font-size:15px;
}

.breadcrumb a{
    color:#FFD54F;
    text-decoration:none;
}

.breadcrumb span{
    margin:0 8px;
}

/* ========================================== */

.management-section,
.chief-advisor-section{
    padding:80px 0;
    background:#f7f9fc;
}

.management-section:nth-child(even){
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title span{
    display:inline-block;
    color:#0b7a3b;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:36px;
    color:#003366;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ========================================== */

.management-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.management-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    padding:25px;
}

.management-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.management-photo{
    width:160px;
    height:160px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #0b7a3b;
}

.management-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.management-card h3{
    margin-top:20px;
    font-size:22px;
    color:#003366;
}

.management-card h4{
    margin-top:8px;
    color:#0b7a3b;
    font-size:17px;
    font-weight:700;
}

.management-card .qualification{
    margin-top:12px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.management-card .qualification i{
    color:#f4b400;
    margin-right:6px;
}

/* ==========================================
Chief Advisor
========================================== */

.chief-advisor-card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:45px;
    align-items:center;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.chief-photo{
    width:300px;
    height:300px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    border:6px solid #0b7a3b;
}

.chief-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.chief-details h2{
    color:#003366;
    font-size:34px;
    margin-bottom:12px;
}

.chief-details h4{
    color:#0b7a3b;
    font-size:22px;
    margin-bottom:18px;
}

.chief-details .qualification{
    color:#444;
    margin-bottom:18px;
}

.chief-details .description{
    line-height:1.9;
    color:#666;
    text-align:justify;
}

/* ========================================== */

.empty-box{
    background:#fff;
    padding:60px;
    border-radius:18px;
    text-align:center;
    color:#888;
    font-size:18px;
}

/* ==========================================
Responsive
========================================== */

@media(max-width:992px){

.chief-advisor-card{
grid-template-columns:1fr;
text-align:center;
}

.chief-photo{
width:240px;
height:240px;
}

}

@media(max-width:768px){

.page-banner{
padding:55px 20px;
}

.page-banner h1{
font-size:32px;
}

.section-title h2{
font-size:30px;
}

.management-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.management-grid{
grid-template-columns:1fr;
}

.management-photo{
width:140px;
height:140px;
}

.management-card{
padding:20px;
}

.chief-photo{
width:200px;
height:200px;
}

.chief-details h2{
font-size:28px;
}

.chief-details h4{
font-size:18px;
}

}


.page-banner{
    background:#073763;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.page-banner h1{
    font-size:40px;
    margin-bottom:10px;
}

.page-banner p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

.join-section{
    padding:70px 20px;
    background:#f5f7fb;
}

.join-card{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:center;
}

.join-card h2{
    color:#073763;
    margin-bottom:20px;
}

.join-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.join-btn{
    display:inline-block;
    margin-top:15px;
    background:#0b7a3b;
    color:#fff;
    padding:14px 30px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#095f2e;
}

@media(max-width:768px){

    .page-banner{
        padding:50px 15px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .join-card{
        padding:25px;
    }

}
/*==========================
DONATE PAGE
==========================*/

.donate-hero{
    background:linear-gradient(135deg,#0b3d91,#0d6efd);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.donate-hero h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.donate-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.95;
}

.donate-section{
    padding:70px 0;
    background:#f5f7fb;
}

.donate-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.donate-card,
.donate-form-box{
    background:#fff;
    border-radius:14px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.donate-card h2,
.donate-form-box h2{
    color:#0b3d91;
    margin-bottom:15px;
    font-size:26px;
}

.donate-card p{
    color:#555;
    line-height:1.8;
}

.qr-box{
    text-align:center;
    margin:20px 0;
}

.qr-box img{
    width:220px;
    max-width:100%;
    border:6px solid #f3f3f3;
    border-radius:12px;
}

.bank-list{
    margin:0;
    padding:0;
    list-style:none;
}

.bank-list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#444;
}

.copy-btn{
    margin-top:15px;
    background:#0b3d91;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.copy-btn:hover{
    background:#082b65;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:13px 15px;
    border:1px solid #d7d7d7;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0b3d91;
    box-shadow:0 0 0 3px rgba(11,61,145,.12);
}

.form-group textarea{
    resize:vertical;
}

.donate-submit-btn{
    width:100%;
    padding:15px;
    border:none;
    background:#28a745;
    color:#fff;
    font-size:17px;
    font-weight:700;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.donate-submit-btn:hover{
    background:#1f8a38;
}

@media(max-width:992px){

    .donate-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .donate-hero{
        padding:55px 20px;
    }

    .donate-hero h1{
        font-size:32px;
    }

    .donate-hero p{
        font-size:16px;
    }

    .donate-card,
    .donate-form-box{
        padding:22px;
    }

}

@media(max-width:480px){

    .donate-hero h1{
        font-size:27px;
    }

    .donate-card h2,
    .donate-form-box h2{
        font-size:22px;
    }

    .qr-box img{
        width:180px;
    }

    .copy-btn,
    .donate-submit-btn{
        font-size:15px;
    }

}

.success-section{
    background:#f5f7fb;
    padding:70px 0;
}

.success-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.success-icon{
    text-align:center;
    font-size:70px;
    color:#28a745;
    margin-bottom:20px;
}

.success-card h1{
    text-align:center;
    color:#0b3d91;
    margin-bottom:10px;
}

.success-card p{
    text-align:center;
    color:#555;
    margin-bottom:30px;
}

.success-table{
    width:100%;
    border-collapse:collapse;
}

.success-table th,
.success-table td{
    border:1px solid #e5e5e5;
    padding:12px;
}

.success-table th{
    width:35%;
    background:#f8f8f8;
    text-align:left;
}

.status-pending{
    background:#ffc107;
    color:#000;
    padding:5px 12px;
    border-radius:20px;
    font-weight:bold;
}

.success-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.print-btn,
.home-btn,
.donate-btn2{
    padding:12px 22px;
    border:none;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;
}

.print-btn{
    background:#0b3d91;
    color:#fff;
}

.home-btn{
    background:#198754;
    color:#fff;
}

.donate-btn2{
    background:#dc3545;
    color:#fff;
}

@media(max-width:768px){

.success-card{
    padding:20px;
}

.success-table th,
.success-table td{
    font-size:14px;
}

}

/* ================= PAGE BANNER ================= */
.page-banner {
    background: linear-gradient(135deg, #073763, #0b7a3b);
    color: #fff;
    padding: 75px 0;
}

.page-banner-content {
    max-width: 760px;
}

.page-banner-content span {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffd43b;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

.page-banner-content h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-banner-content p {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.8;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb-box a {
    color: #073763;
    font-weight: 700;
}

.breadcrumb-box a:hover {
    color: #0b7a3b;
}

/* ================= GALLERY SEARCH ================= */
.gallery-preview-section {
    background: #fff;
    padding: 70px 0;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: galleryMove 22s linear infinite;
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-slide {
    width: 360px;
    height: 230px;
    flex: 0 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    background: #f4f7fb;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

@keyframes galleryMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section-action {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #073763;
    color: #fff;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #0b7a3b;
}

@media(max-width: 992px) {
    .gallery-slide {
        width: 300px;
        height: 210px;
    }
}

@media(max-width: 576px) {
    .gallery-slide {
        width: 260px;
        height: 180px;
    }

    .gallery-track {
        gap: 14px;
        animation-duration: 18s;
    }
}

/* ================= GALLERY PAGE ================= */
.gallery-page-section {
    background: #f4f7fb;
    padding: 55px 0;
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-album-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gallery-album-card:hover {
    transform: translateY(-6px);
}

.album-image {
    height: 235px;
    position: relative;
    overflow: hidden;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-album-card:hover .album-image img {
    transform: scale(1.08);
}

.album-photo-count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(7,55,99,0.9);
    color: #fff;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.album-content {
    padding: 22px;
}

.album-content h3 {
    color: #073763;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.album-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 18px;
}

.album-meta i {
    color: #0b7a3b;
    width: 18px;
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b7a3b;
    color: #fff;
    padding: 11px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.view-gallery-btn:hover {
    background: #073763;
}

/* ================= NO GALLERY ================= */
.no-gallery-found {
    background: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.no-gallery-found i {
    font-size: 52px;
    color: #0b7a3b;
    margin-bottom: 15px;
}

.no-gallery-found h3 {
    color: #073763;
    font-size: 24px;
    margin-bottom: 8px;
}

.no-gallery-found p {
    color: #6b7280;
    margin-bottom: 18px;
}

.no-gallery-found a {
    background: #073763;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
}

/* ================= PAGINATION ================= */
.pagination-section {
    background: #f4f7fb;
    padding: 0 0 55px;
}

.pagination-box {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-box a {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    color: #073763;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.pagination-box a.active,
.pagination-box a:hover {
    background: #0b7a3b;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .gallery-album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gallery-search-form {
        flex-direction: column;
    }

    .gallery-search-form button,
    .reset-search {
        justify-content: center;
        text-align: center;
    }

    .gallery-album-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 55px 0;
    }

    .page-banner-content h1 {
        font-size: 30px;
    }

    .album-image {
        height: 220px;
    }
}


.album-info-section {
    background: #f4f7fb;
    padding: 35px 0;
}

.album-info-box {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.album-info-box h2 {
    color: #073763;
    font-size: 28px;
    margin-bottom: 12px;
}

.album-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #6b7280;
}

.album-info-meta i {
    color: #0b7a3b;
    margin-right: 6px;
}

.back-gallery-btn {
    background: #073763;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.back-gallery-btn:hover {
    background: #0b7a3b;
}

.gallery-details-section {
    background: #f4f7fb;
    padding: 30px 0 70px;
}

.gallery-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-details-item {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    background: #fff;
}

.gallery-details-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-details-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255,255,255,0.16);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 20px;
}

.lightbox-close {
    top: 22px;
    right: 22px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0b7a3b;
}

@media (max-width: 992px) {
    .gallery-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-info-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .gallery-details-grid {
        grid-template-columns: 1fr;
    }

    .gallery-details-item {
        height: 220px;
    }

    .album-info-box h2 {
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


/* ================= RTSE HERO SECTION ================= */

.rtse-hero {
    background: linear-gradient(135deg, #062f5f, #0b7a3b);
    padding: 85px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.rtse-hero::before {
    content: "RTSE";
    position: absolute;
    right: -40px;
    top: 20px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    letter-spacing: 8px;
}

.rtse-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.rtse-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 18px;
}

.rtse-left h1 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 18px;
}

.rtse-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #e6edf5;
    max-width: 650px;
    margin-bottom: 28px;
}

.rtse-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.rtse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 9px;
    background: #ffffff;
    color: #073763;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.rtse-btn.primary {
    background: #ffd43b;
    color: #111827;
}

.rtse-btn:hover {
    transform: translateY(-3px);
    background: #e63946;
    color: #ffffff;
}

/* ================= CANDIDATE LOGIN CARD ================= */

.rtse-login-card {
    background: #ffffff;
    color: #1f2937;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    position: relative;
}

.rtse-login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border-top: 6px solid #ffd43b;
    pointer-events: none;
}

.rtse-login-card h2 {
    color: #073763;
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 900;
}

.rtse-login-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rtse-login-card label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.rtse-login-card input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 15px;
    background: #f9fafb;
    transition: 0.25s ease;
}

.rtse-login-card input:focus {
    border-color: #0b7a3b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11,122,59,0.12);
}

.rtse-login-card button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 9px;
    border: none;
    background: #0b7a3b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.rtse-login-card button:hover {
    background: #073763;
    transform: translateY(-2px);
}

.rtse-login-card a {
    margin-top: 10px;
    text-align: center;
    color: #e63946;
    font-size: 14px;
    font-weight: 700;
}

.rtse-login-card a:hover {
    color: #073763;
}
/* =====================================================
   RTSE ACTION SECTION
===================================================== */

.rtse-actions{
    padding:70px 0;
    background:#f5f7fb;
}

.action-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.action-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    color:#222;
    border-top:5px solid transparent;
}

.action-card:hover{
    transform:translateY(-8px);
    border-top:5px solid #0b7a3b;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.action-card i{
    font-size:45px;
    color:#0b7a3b;
    margin-bottom:18px;
}

.action-card h3{
    font-size:22px;
    color:#073763;
    margin-bottom:12px;
    font-weight:700;
}

.action-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/* =====================================================
   ABOUT RTSE
===================================================== */

.about-rtse{
    padding:80px 0;
    background:#ffffff;
}

.objectives-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:45px;
}

.objective-card{
    background:#ffffff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.objective-card:hover{
    transform:translateY(-6px);
}

.objective-card i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#e9f8ef;
    color:#0b7a3b;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
}

.objective-card h3{
    color:#073763;
    font-size:22px;
    margin-bottom:10px;
}

.objective-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* =====================================================
   SECTION TITLE
===================================================== */

.about-rtse .section-title{
    text-align:center;
}

.about-rtse .section-title span{
    display:inline-block;
    color:#0b7a3b;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
    text-transform:uppercase;
}

.about-rtse .section-title h2{
    color:#073763;
    font-size:38px;
    margin-bottom:15px;
    font-weight:800;
}

.about-rtse .section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

.action-grid{
grid-template-columns:repeat(2,1fr);
}

.objectives-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.rtse-actions,
.about-rtse{
padding:55px 0;
}

.action-grid{
grid-template-columns:1fr;
}

.action-card{
padding:28px 20px;
}

.objective-card{
flex-direction:column;
text-align:center;
}

.objective-card i{
margin:auto;
}

.about-rtse .section-title h2{
font-size:30px;
}

}

@media(max-width:480px){

.action-card h3{
font-size:20px;
}

.about-rtse .section-title h2{
font-size:26px;
}

.objective-card h3{
font-size:20px;
}

}

/* =====================================================
   RTSE INFO SECTION: NOTICE + EVENT + CONTACT
===================================================== */

.rtse-info-section {
    padding: 75px 0;
    background: #f5f7fb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #0b7a3b;
    transition: 0.35s ease;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.info-box h3 {
    color: #073763;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.info-box p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-box span {
    display: inline-block;
    color: #0b7a3b;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.info-box small {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
}

.info-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: #e63946;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.info-box a:hover {
    background: #073763;
    transform: translateY(-2px);
}

.info-box i {
    color: #0b7a3b;
    margin-right: 8px;
}

/* =====================================================
   RTSE PAGE RESPONSIVE FINAL
===================================================== */

@media (max-width: 992px) {
    .rtse-hero-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .rtse-left h1 {
        font-size: 38px;
    }

    .rtse-login-card {
        max-width: 560px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .rtse-hero {
        padding: 60px 0;
    }

    .rtse-hero::before {
        font-size: 95px;
        right: -25px;
        top: 25px;
    }

    .rtse-left h1 {
        font-size: 31px;
    }

    .rtse-left p {
        font-size: 15px;
    }

    .rtse-buttons {
        flex-direction: column;
    }

    .rtse-btn {
        width: 100%;
    }

    .rtse-login-card {
        padding: 25px;
        border-radius: 18px;
    }

    .rtse-login-card h2 {
        font-size: 24px;
    }

    .rtse-info-section {
        padding: 55px 0;
    }

    .info-box {
        padding: 24px;
    }

    .info-box h3 {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .rtse-left h1 {
        font-size: 27px;
    }

    .rtse-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .rtse-login-card {
        padding: 20px;
    }

    .info-box {
        padding: 20px;
    }
}
/*==============================
NEWS PAGE
==============================*/

.page-banner{
    background:linear-gradient(135deg,#002b5b,#00695c);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.page-banner h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.page-banner p{
    font-size:16px;
    opacity:.9;
}

/* Search */

.news-search{
    max-width:700px;
    margin:40px auto;
    display:flex;
    gap:10px;
}

.news-search input{
    flex:1;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.news-search button{
    background:#0056b3;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

/* News Grid */

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.news-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-6px);
}

.news-image img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.news-content{
    padding:20px;
}

.news-date{
    color:#666;
    font-size:14px;
}

.news-date i{
    color:#007bff;
    margin-right:5px;
}

.news-content h3{
    margin:15px 0;
    font-size:22px;
    color:#003366;
}

.news-content p{
    color:#555;
    line-height:1.7;
    margin-bottom:20px;
}

.read-more{
    display:inline-block;
    background:#007bff;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
}

.read-more:hover{
    background:#0056b3;
}

.no-data{
    text-align:center;
    padding:70px;
    grid-column:1/-1;
}

/*==============================
NEWS DETAILS
==============================*/

.news-details-section{
    padding:60px 0;
}

.news-details-card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.news-details-card h2{
    color:#003366;
    font-size:34px;
    margin-bottom:20px;
}

.news-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:20px;
    color:#666;
}

.news-meta i{
    color:#007bff;
}

.news-details-image img{
    width:100%;
    border-radius:10px;
    margin-bottom:30px;
}

.news-details-content{
    line-height:1.9;
    font-size:17px;
    color:#444;
}

.news-details-content img{
    max-width:100%;
    height:auto;
}

.news-details-content p{
    margin-bottom:18px;
}

.pdf-download-btn{
    display:inline-block;
    margin-top:30px;
    background:#d32f2f;
    color:#fff;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.pdf-download-btn:hover{
    background:#b71c1c;
}

/*==============================
RELATED NEWS
==============================*/

.related-news{
    margin-top:60px;
}

.related-news h2{
    margin-bottom:25px;
    color:#003366;
}

.related-news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.related-news-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    text-decoration:none;
    color:#000;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.related-news-card:hover{
    transform:translateY(-5px);
}

.related-news-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.related-news-card div{
    padding:15px;
}

.related-news-card h3{
    font-size:18px;
    color:#003366;
    margin-bottom:10px;
}

.related-news-card span{
    color:#666;
    font-size:14px;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.page-banner h1{
    font-size:30px;
}

.news-search{
    flex-direction:column;
}

.news-grid{
    grid-template-columns:1fr;
}

.news-details-card{
    padding:20px;
}

.news-details-card h2{
    font-size:26px;
}

.news-details-content{
    font-size:15px;
}

.related-news-grid{
    grid-template-columns:1fr;
}

}

/*=====================================
NOTICE PAGE
======================================*/

.notice-section{
    padding:60px 0;
}

.notice-filter{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
    justify-content:center;
}

.notice-filter a{
    background:#f5f5f5;
    color:#003366;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.notice-filter a:hover{
    background:#0056b3;
    color:#fff;
}

.notice-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.notice-card{
    background:#fff;
    border-left:5px solid #0056b3;
    padding:22px;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.notice-date{
    color:#666;
    font-size:14px;
    display:block;
    margin-bottom:8px;
}

.notice-date i{
    color:#0056b3;
    margin-right:5px;
}

.notice-card h3{
    color:#003366;
    margin-bottom:10px;
    font-size:22px;
}

.notice-card p{
    color:#555;
    font-size:15px;
}

.notice-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.view-btn,
.pdf-btn{
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
}

.view-btn{
    background:#0d6efd;
}

.view-btn:hover{
    background:#0b5ed7;
}

.pdf-btn{
    background:#dc3545;
}

.pdf-btn:hover{
    background:#bb2d3b;
}

/*=====================================
NOTICE DETAILS
======================================*/

.notice-details-section{
    padding:60px 0;
}

.notice-details-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.notice-details-card h2{
    color:#003366;
    font-size:34px;
    margin:15px 0;
}

.notice-type{
    display:inline-block;
    background:#e9f2ff;
    color:#0056b3;
    padding:8px 15px;
    border-radius:25px;
    font-weight:600;
    margin-bottom:25px;
}

.notice-pdf-box{
    margin:25px 0;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.notice-pdf-box iframe{
    border:none;
    display:block;
}

.pdf-download-btn{
    display:inline-block;
    background:#d32f2f;
    color:#fff;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.pdf-download-btn:hover{
    background:#b71c1c;
}

.no-data{
    text-align:center;
    padding:60px 20px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:768px){

.notice-card{
    flex-direction:column;
    align-items:flex-start;
}

.notice-actions{
    width:100%;
}

.view-btn,
.pdf-btn{
    flex:1;
    text-align:center;
}

.notice-details-card{
    padding:20px;
}

.notice-details-card h2{
    font-size:26px;
}

.notice-pdf-box iframe{
    height:450px;
}

}

@media(max-width:480px){

.notice-filter{
    flex-direction:column;
}

.notice-filter a{
    text-align:center;
}

.notice-details-card h2{
    font-size:22px;
}

.notice-pdf-box iframe{
    height:350px;
}

}

/* =====================================================
   RTSE ABOUT PAGE - PART 1
   Hero + About + Mission Vision
===================================================== */

/* ================= RTSE ABOUT HERO ================= */
.rtse-about-hero {
    position: relative;
    padding: 95px 0;
    background: linear-gradient(135deg, #073763 0%, #0b7a3b 100%);
    color: #ffffff;
    overflow: hidden;
}

.rtse-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255,212,59,0.18), transparent 30%);
    pointer-events: none;
}

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

.rtse-about-hero-content {
    max-width: 820px;
}

.rtse-page-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.28);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.rtse-about-hero h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 18px;
}

.rtse-about-hero h1 strong {
    display: inline-block;
    color: #ffd43b;
}

.rtse-about-hero p {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: #e7eef7;
    margin-bottom: 28px;
}

.rtse-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Common RTSE Button */
.rtse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.rtse-btn.primary {
    background: #e63946;
    color: #ffffff;
}

.rtse-btn.secondary {
    background: #ffffff;
    color: #073763;
}

.rtse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ================= ABOUT MAIN ================= */
.rtse-about-main {
    padding: 75px 0;
    background: #f4f7fb;
}

.rtse-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
    align-items: center;
}

.section-title.left {
    text-align: left;
}

.rtse-about-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #4b5563;
    margin-bottom: 16px;
}

.rtse-about-text strong {
    color: #073763;
}

/* ================= ABOUT HIGHLIGHT CARD ================= */
.rtse-about-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    border-top: 5px solid #0b7a3b;
}

.rtse-about-card h3 {
    font-size: 24px;
    color: #073763;
    margin-bottom: 20px;
}

.rtse-about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rtse-about-card li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
}

.rtse-about-card li:last-child {
    border-bottom: none;
}

.rtse-about-card li i {
    color: #0b7a3b;
    font-size: 17px;
}

/* ================= MISSION VISION ================= */
.rtse-mission-vision {
    padding: 75px 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.mission-card {
    position: relative;
    background: #f8fafc;
    padding: 34px 28px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: 0.3s ease;
}

.mission-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(11,122,59,0.10);
}

.mission-card:hover {
    transform: translateY(-6px);
}

.mission-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #e7f7ee;
    color: #0b7a3b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.mission-card h3 {
    font-size: 24px;
    color: #073763;
    margin-bottom: 12px;
}

.mission-card p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 15.5px;
}

/* ================= RESPONSIVE PART 1 ================= */
@media (max-width: 992px) {
    .rtse-about-hero {
        padding: 75px 0;
    }

    .rtse-about-hero h1 {
        font-size: 38px;
    }

    .rtse-about-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .rtse-about-hero {
        padding: 58px 0;
    }

    .rtse-about-hero h1 {
        font-size: 29px;
    }

    .rtse-about-hero p {
        font-size: 15px;
    }

    .rtse-about-actions {
        flex-direction: column;
    }

    .rtse-btn {
        width: 100%;
    }

    .rtse-about-main,
    .rtse-mission-vision {
        padding: 55px 0;
    }

    .rtse-about-card,
    .mission-card {
        padding: 25px 20px;
    }
}


/* ===================================================
   RTSE ABOUT PAGE - PART 2
   Objectives + Why RTSE + Eligibility + Sections
===================================================*/

/* ================= OBJECTIVES ================= */

.rtse-objectives{
    padding:80px 0;
    background:#f8fafc;
}

.objective-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.objective-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
    border-top:5px solid #0b7a3b;
}

.objective-card:hover{
    transform:translateY(-8px);
}

.objective-card i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#e7f7ee;
    color:#0b7a3b;
    font-size:30px;
    margin-bottom:20px;
}

.objective-card h3{
    font-size:22px;
    color:#073763;
    margin-bottom:12px;
}

.objective-card p{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* ================= WHY RTSE ================= */

.why-rtse{
    padding:80px 0;
    background:#fff;
}

.rtse-two-column{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

.rtse-list{
    margin-top:25px;
    list-style:none;
    padding:0;
}

.rtse-list li{
    padding:12px 0;
    font-size:16px;
    color:#444;
}

.rtse-list li i{
    color:#0b7a3b;
    margin-right:10px;
}

.why-card{
    background:#073763;
    color:#fff;
    border-radius:20px;
    padding:35px;
}

.why-card h3{
    margin-bottom:25px;
    font-size:28px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    padding:12px;
    border-radius:10px;
    background:rgba(255,255,255,.08);
}

.benefit-item i{
    color:#ffd43b;
    font-size:20px;
}

.benefit-item span{
    font-size:16px;
}

/* ================= ELIGIBILITY ================= */

.eligibility-section{
    background:#f4f7fb;
    padding:80px 0;
}

.eligibility-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    margin-top:40px;
}

.eligibility-box ul{
    list-style:none;
    padding:0;
}

.eligibility-box li{
    font-size:16px;
    color:#444;
    margin-bottom:18px;
    line-height:1.8;
}

.eligibility-box i{
    color:#0b7a3b;
    margin-right:12px;
}

/* ================= SECTION SYSTEM ================= */

.exam-sections{
    padding:80px 0;
    background:#fff;
}

.section-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:45px;
}

.section-card{
    background:#073763;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:18px;
    transition:.3s;
}

.section-card:hover{
    transform:translateY(-8px);
    background:#0b7a3b;
}

.section-card h3{
    font-size:28px;
    margin-bottom:10px;
}

.section-card h4{
    font-size:18px;
    margin-bottom:15px;
}

.section-card p{
    color:#f1f1f1;
    line-height:1.6;
}

.section-card strong{
    color:#ffd43b;
    font-size:18px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

.objective-grid{
grid-template-columns:repeat(2,1fr);
}

.section-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.rtse-two-column{
grid-template-columns:1fr;
}

.objective-grid{
grid-template-columns:1fr;
}

.section-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.section-grid{
grid-template-columns:1fr;
}

.objective-card,
.eligibility-box,
.why-card{
padding:25px;
}

.why-card h3{
font-size:24px;
}

.section-card{
padding:25px 15px;
}

}


/*====================================================
 RTSE ABOUT PAGE - PART 3
 Examination Process
 Awards
 Benefits
 Statistics
 Features
====================================================*/

/*================ EXAM PROCESS ================*/

.exam-process{
    padding:80px 0;
    background:#f5f8fc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}

.process-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
}

.step-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:42px;
    font-weight:800;
    color:#edf2f7;
}

.process-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#e7f7ee;
    color:#0b7a3b;
    font-size:34px;
    margin-bottom:20px;
}

.process-card h3{
    color:#073763;
    margin-bottom:15px;
    font-size:22px;
}

.process-card p{
    color:#555;
    line-height:1.8;
}

/*================ AWARDS ================*/

.rtse-awards{
    padding:80px 0;
    background:#fff;
}

.award-image-box{
    background:linear-gradient(135deg,#073763,#0b7a3b);
    color:#fff;
    text-align:center;
    border-radius:22px;
    padding:45px 35px;
}

.award-icon{
    font-size:75px;
    color:#ffd43b;
    margin-bottom:20px;
}

.award-image-box h3{
    font-size:28px;
    margin-bottom:15px;
}

.award-image-box p{
    color:#f5f5f5;
    line-height:1.8;
}

/*================ BENEFITS ================*/

.student-benefits{
    padding:80px 0;
    background:#f7fafc;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:40px;
}

.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card i{
    font-size:38px;
    color:#0b7a3b;
    margin-bottom:18px;
}

.benefit-card h3{
    color:#073763;
    font-size:20px;
}

/*================ STATISTICS ================*/

.rtse-statistics{
    padding:80px 0;
    background:linear-gradient(135deg,#073763,#0b7a3b);
    color:#fff;
}

.statistics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:45px;
}

.stat-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.stat-card h3{
    font-size:42px;
    color:#ffd43b;
    margin-bottom:10px;
}

.stat-card p{
    font-size:17px;
}

/*================ FEATURES ================*/

.rtse-features{
    padding:80px 0;
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:45px;
}

.feature-card{
    background:#f7fafc;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    border-top:4px solid #0b7a3b;
}

.feature-card:hover{
    transform:translateY(-8px);
    background:#073763;
    color:#fff;
}

.feature-card:hover h3{
    color:#fff;
}

.feature-card:hover i{
    color:#ffd43b;
}

.feature-card i{
    font-size:40px;
    color:#0b7a3b;
    margin-bottom:18px;
}

.feature-card h3{
    color:#073763;
    font-size:20px;
}

/*================ RESPONSIVE ================*/

@media(max-width:1100px){

.process-grid,
.benefits-grid,
.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.statistics-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.process-grid,
.benefits-grid,
.feature-grid,
.statistics-grid{
grid-template-columns:1fr;
}

.award-image-box{
margin-top:30px;
}

}

@media(max-width:576px){

.exam-process,
.rtse-awards,
.student-benefits,
.rtse-statistics,
.rtse-features{
padding:60px 0;
}

.process-card,
.benefit-card,
.feature-card{
padding:25px 20px;
}

.award-image-box{
padding:30px 20px;
}

.award-icon{
font-size:55px;
}

.stat-card{
padding:25px;
}

.stat-card h3{
font-size:34px;
}

}


/*====================================================
 RTSE ABOUT PAGE - PART 4
 Guidelines + FAQ + Contact + Final CTA
====================================================*/

/* ================= GUIDELINES ================= */
.important-guidelines {
    padding: 80px 0;
    background: #f8fafc;
}

.guideline-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    margin-top: 35px;
}

.guideline-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

.guideline-box li:last-child {
    border-bottom: none;
}

.guideline-box i {
    color: #0b7a3b;
    margin-top: 5px;
}

/* ================= FAQ ================= */
.rtse-faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: #f8fafc;
    padding: 28px;
    border-radius: 18px;
    border-left: 5px solid #0b7a3b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.faq-item h3 {
    color: #073763;
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 15px;
}

/* ================= CONTACT INFO ================= */
.rtse-contact-info {
    padding: 80px 0;
    background: #f4f7fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.contact-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card i {
    width: 62px;
    height: 62px;
    line-height: 62px;
    border-radius: 50%;
    background: #e7f7ee;
    color: #0b7a3b;
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #073763;
    font-size: 19px;
    margin-bottom: 10px;
}

.contact-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

/* ================= FINAL CTA ================= */
.rtse-final-cta {
    padding: 85px 0;
    background: linear-gradient(135deg, #073763, #0b7a3b);
    color: #ffffff;
    text-align: center;
}

.rtse-final-cta h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 14px;
}

.rtse-final-cta p {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #e5eef7;
    font-size: 16px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .rtse-final-cta h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .rtse-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .important-guidelines,
    .rtse-faq,
    .rtse-contact-info,
    .rtse-final-cta {
        padding: 60px 0;
    }

    .guideline-box {
        padding: 25px 20px;
    }

    .faq-item,
    .contact-card {
        padding: 24px 18px;
    }

    .rtse-final-cta h2 {
        font-size: 26px;
    }
}

