/* ========================================
   GEDS Website - Distinctive Design
   Global Education and Development Services
   Colors from the Heraldic Crest
   ======================================== */

:root {
    /* GEDS Crest Colors */
    --navy: #1a2e4a;
    --navy-dark: #0f1d30;
    --navy-light: #2a4a6a;
    
    --crimson: #b8232f;
    --crimson-dark: #8a1a23;
    --crimson-light: #d43a47;
    
    --gold: #d4af37;
    --gold-dark: #b8962e;
    --gold-light: #e8c44a;
    
    --azure: #3a6ea5;
    --azure-light: #5a8ec5;
    
    --cream: #faf8f5;
    --cream-dark: #f0ede8;
    --white: #ffffff;
    
    --text-dark: #1a1a2e;
    --text-light: #5a6a7a;
    --border: #e5e7eb;
    
    /* Legacy compatibility */
    --teal: var(--navy);
    --dark-teal: var(--navy-dark);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 46, 74, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 46, 74, 0.12);
    --shadow-lg: 0 15px 40px rgba(26, 46, 74, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GEDS DISTINCTIVE ELEMENTS
   ======================================== */

/* Header with Navy/Gold accent */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26, 46, 74, 0.08);
}

.header-top {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-bottom: 3px solid var(--gold);
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-header {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-header.ghost {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
}

.btn-header.ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-header.outline {
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-header.outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-header.primary {
    color: var(--navy-dark);
    background: var(--gold);
    border: none;
}

.btn-header.primary:hover {
    background: var(--gold-light);
}

.btn-basket {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-basket:hover {
    color: var(--gold);
}

.btn-basket svg {
    width: 22px;
    height: 22px;
}

.header-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-nav a:hover {
    color: var(--crimson);
}

/* Primary Button - Crimson with Gold hover */
.btn-primary {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184, 35, 47, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Secondary Button - Navy outline */
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* Hero Section - GEDS Distinctive */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0a1520 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(184, 35, 47, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Three Pillars Section */
.pillars-section {
    padding: 5rem 0;
    background: var(--cream);
    position: relative;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 50%, var(--azure) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.pillar-card.trainers::before {
    background: var(--crimson);
}

.pillar-card.coaches::before {
    background: var(--gold);
}

.pillar-card.consultants::before {
    background: var(--azure);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-card.trainers .pillar-icon {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
}

.pillar-card.coaches .pillar-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
}

.pillar-card.consultants .pillar-icon {
    background: linear-gradient(135deg, var(--azure) 0%, var(--navy) 100%);
    color: var(--white);
}

.pillar-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.pillar-card.trainers .pillar-link {
    color: var(--crimson);
}

.pillar-card.coaches .pillar-link {
    color: var(--gold-dark);
}

.pillar-card.consultants .pillar-link {
    color: var(--azure);
}

.pillar-link:hover {
    gap: 10px;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 4rem 0;
    position: relative;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Services Grid - New Design */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Accreditation Section */
.accreditation-section {
    padding: 5rem 0;
    background: var(--cream);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.accreditation-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.accreditation-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accreditation-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.accred-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--navy);
}

.accred-badge svg {
    color: var(--gold);
}

/* CTA Section - GEDS Style */
.cta-section {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--crimson);
}

/* Footer - GEDS Style */
footer {
    background: var(--navy-dark);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0;
    border-top: 4px solid var(--gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

/* Responsive */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accreditation-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
/* ========================================
   GEDS Website - Professional Design for Training Excellence
   Global Education and Development Services
   Established 2024 - Professional Body for Trainers, Coaches & Consultants
   ======================================== */

:root {
    --teal: #1e3a5f;
    --dark-teal: #152a45;
    --light-teal: #2d5a8a;
    --gold: #D4AF37;
    --gold-dark: #B8962E;
    --cream: #F8F6F1;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #4A5568;
    --border: #E5E7EB;
    --navy: #1e3a5f;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ========================================
   Header - Modern 2-Row Design
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Top Row - Logo & Actions */
.header-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 56px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .logo-iam {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.logo-text .logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-header {
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-header.ghost {
    color: var(--text-dark);
    background: transparent;
}

.btn-header.ghost:hover {
    color: var(--teal);
    background: rgba(30, 58, 95, 0.06);
}

.btn-header.outline {
    color: var(--teal);
    border: 1.5px solid var(--teal);
    background: transparent;
}

.btn-header.outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-header.primary {
    background: var(--teal);
    color: var(--white);
}

.btn-header.primary:hover {
    background: var(--dark-teal);
}

.btn-basket {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.btn-basket:hover {
    background: rgba(30, 58, 95, 0.06);
    color: var(--teal);
}

.btn-basket svg {
    width: 20px;
    height: 20px;
}

/* Bottom Row - Navigation */
.header-nav {
    background: var(--white);
}

.header-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem 0.9rem;
    position: relative;
    letter-spacing: 0.01em;
}

.main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

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

.main-nav > li > a .nav-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: var(--transition);
    margin-left: 2px;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--teal);
}

.main-nav > li > a:hover .nav-arrow {
    opacity: 1;
    transform: translateY(1px);
}
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(30, 58, 95, 0.06);
}

.mobile-menu-toggle .hamburger {
    width: 20px;
    height: 14px;
    position: relative;
}

.mobile-menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 6px; }
.mobile-menu-toggle span:nth-child(3) { top: 12px; }

.mobile-menu-toggle.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(30, 58, 95, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 0.75rem;
    z-index: 1000;
    border-top: 3px solid var(--teal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding-left: 1.25rem;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ========================================
   Hero Section - See HOME PAGE section below
   ======================================== */

.btn-primary,
.btn-secondary {
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
    transform: translateY(-3px);
    border-color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    text-align: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-card h3 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    line-height: 1.4;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
    margin-top: 130px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gold);
}

/* ========================================
   Common Sections
   ======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Cards & Grids
   ======================================== */

.offerings-grid,
.benefits-grid,
.membership-grid,
.qual-grid,
.services-grid,
.values-grid,
.actions-grid,
.programmes-grid,
.cpd-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card,
.offering-card,
.benefit-card,
.membership-card,
.qual-card,
.service-card,
.value-card,
.action-card,
.programme-card,
.cpd-category {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.card:hover,
.offering-card:hover,
.benefit-card:hover,
.membership-card:hover,
.qual-card:hover,
.service-card:hover,
.value-card:hover,
.action-card:hover,
.programme-card:hover,
.cpd-category:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
}

.card-icon,
.offering-icon,
.benefit-icon,
.service-icon,
.value-icon,
.action-icon,
.programme-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.card h3,
.offering-card h3,
.benefit-card h3,
.membership-card h3,
.qual-card h3,
.service-card h3,
.value-card h3,
.action-card h3,
.programme-card h3,
.cpd-category h3 {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 0.875rem;
}

.card p,
.offering-card p,
.benefit-card p,
.membership-card p,
.qual-card p,
.service-card p,
.value-card p,
.action-card p,
.programme-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--teal);
    color: var(--teal);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
}

/* Membership Cards Special */
.membership-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.membership-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.membership-card.featured::before {
    height: 6px;
}

.membership-card h3 {
    font-size: 1.6rem;
}

.membership-card .price {
    font-size: 2.25rem;
    color: var(--teal);
    font-weight: 700;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.membership-card .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.membership-card ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.membership-card ul li:last-child {
    border-bottom: none;
}

.membership-card ul li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

/* CPD Categories */
.cpd-category {
    text-align: left;
}

.cpd-category ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.cpd-category ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.cpd-category ul li:hover {
    color: var(--teal);
    padding-left: 0.5rem;
}

.cpd-category ul li:last-child {
    border-bottom: none;
}

.cpd-category ul li::before {
    content: '→';
    color: var(--gold);
    font-weight: 600;
}

/* Qualification Cards */
.qual-card {
    position: relative;
}

.qual-level {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-box p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item-content a {
    color: var(--teal);
    font-weight: 500;
}

.contact-item-content a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.15rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.form-submit:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Verify Section
   ======================================== */

.verify-box {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
}

.verify-box h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.verify-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.verify-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.verify-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.verify-input-group input:focus {
    outline: none;
    border-color: var(--teal);
}

.verify-input-group button {
    padding: 1rem 2rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.verify-input-group button:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
}

.verify-types {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.verify-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.verify-type span {
    font-size: 1.25rem;
}

/* ========================================
   Training Centre Specific
   ======================================== */

.centre-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.centre-feature {
    text-align: center;
    padding: 2rem;
}

.centre-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.centre-feature h4 {
    font-size: 1.25rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.centre-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.centre-map {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.centre-map h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.centre-map p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.region-tag {
    background: var(--cream);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.region-tag:hover {
    background: var(--teal);
    color: var(--white);
}

/* ========================================
   Footer
   ======================================== */

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1200px) {
    .header-top-container,
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .main-nav {
        gap: 1.5rem;
    }
    
    .main-nav > li > a {
        font-size: 0.85rem;
        padding: 1rem 0.9rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1.2fr repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1100px) {
    .main-nav > li > a {
        padding: 1rem 0.7rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .header-top-inner {
        padding: 0.6rem 1.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-nav.active {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
    }
    
    .header-nav-inner {
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-nav > li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .main-nav > li:last-child {
        border-bottom: none;
    }
    
    .main-nav > li > a {
        padding: 1rem;
        font-size: 1rem;
        justify-content: space-between;
    }
    
    .main-nav > li > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0.5rem 1rem;
        display: none;
        background: transparent;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        color: var(--text-light);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .page-header {
        margin-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top-inner {
        padding: 0.5rem 1rem;
    }
    
    .header-nav.active {
        top: 62px;
    }
    
    .hero,
    .page-header {
        margin-top: 62px;
    }
    
    .logo img {
        height: 38px;
    }
    
    .logo-text .logo-iam {
        font-size: 1.5rem;
    }
    
    .logo-text .logo-tagline {
        display: none;
    }
    
    .btn-header.ghost,
    .btn-header.outline {
        display: none;
    }
    
    .btn-header.primary {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .hero {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .page-header {
        padding: 3rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .offerings-grid,
    .benefits-grid,
    .membership-grid,
    .qual-grid,
    .services-grid,
    .values-grid,
    .actions-grid,
    .programmes-grid,
    .cpd-categories {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .verify-input-group {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-top-container {
        padding: 0 1rem;
    }
    
    .logo-text .logo-tagline {
        display: none;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .card,
    .offering-card,
    .benefit-card,
    .membership-card,
    .qual-card,
    .service-card,
    .value-card,
    .action-card,
    .programme-card,
    .cpd-category {
        padding: 1.75rem;
    }
    
    .verify-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.75rem;
    }
}

/* Print Styles */
@media print {
    header,
    .mobile-menu-toggle,
    .hero-buttons,
    .cta-section,
    footer {
        display: none;
    }
    
    .hero,
    .page-header {
        margin-top: 0;
        background: #f5f5f5 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
    }
    
    body {
        background: #fff;
    }
}

/* ========================================
   HOME PAGE - NEW SECTIONS
   ======================================== */

/* Hero Section - Redesigned */
.hero {
    margin-top: 110px;
    min-height: auto;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 4.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 600;
}

.hero-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

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

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 380px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.hero-stat.full-width {
    grid-column: span 2;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 70px;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--cream);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    background: var(--teal);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--dark-teal);
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content .section-tag {
    margin-bottom: 1rem;
}

.why-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.why-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.why-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

.why-image {
    display: flex;
    justify-content: center;
}

.why-image-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.image-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.image-placeholder svg {
    opacity: 0.9;
}

.image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.image-stats {
    background: var(--white);
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
}

.image-stat {
    flex: 1;
    text-align: center;
}

.image-stat strong {
    display: block;
    font-size: 1rem;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.image-stat span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Membership Preview */
.membership-preview {
    padding: 5rem 0;
    background: var(--cream);
}

.grades-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.grade-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.grade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.grade-card.featured {
    border-color: var(--gold);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--white));
}

.grade-card.premium-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: var(--white);
}

.grade-card.premium-card h3 {
    color: var(--white);
}

.grade-card.premium-card p {
    color: rgba(255, 255, 255, 0.8);
}

.grade-card.premium-card .grade-level {
    background: var(--gold);
    color: var(--text-dark);
}

.grade-level {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.grade-card.featured .grade-level {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
}

.grade-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.grade-card p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.grades-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* CPD & Certification CTA Section */
.cpd-cta-section {
    padding: 4rem 0;
    background: var(--cream);
}

.cpd-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cpd-cta-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cpd-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.cpd-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.cpd-cta-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cpd-cta-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-cpd,
.btn-certified {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cpd {
    background: var(--teal);
    color: var(--white);
}

.btn-cpd:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.btn-certified {
    background: var(--gold);
    color: var(--text-dark);
}

.btn-certified:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .cpd-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cpd-cta-card {
        padding: 2rem;
    }
}

/* Footer - Redesigned */
footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-iam {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-legal a:last-child {
    border-right: none;
}

.footer-legal a:first-child {
    padding-left: 0;
}

.footer-legal a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ========================================
   HOME PAGE - RESPONSIVE
   ======================================== */

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

@media (max-width: 992px) {
    .hero {
        margin-top: 70px;
        padding: 2rem 0 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content > p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats-grid {
        max-width: 340px;
        margin: 0 auto;
    }
    
    .trust-grid {
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 62px;
        min-height: auto;
        padding: 2.5rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 1.85rem;
    }
    
    .hero-stats-grid {
        gap: 0.75rem;
    }
    
    .hero-stat {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
    
    .services-section,
    .why-section,
    .membership-preview,
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .grades-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .grade-card {
        padding: 1.25rem 0.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
    
    .trust-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grade-card {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .image-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   PAGE HEADER - Unified Design
   ======================================== */

.page-hero {
    margin-top: 110px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ========================================
   MEMBERSHIP GRADES SECTION
   ======================================== */

.membership-section {
    padding: 5rem 0;
    background: var(--cream);
}

.membership-grades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.membership-grade-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.membership-grade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.membership-grade-card.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: var(--white);
}

.membership-grade-card.premium .grade-badge {
    background: var(--gold);
    color: var(--text-dark);
}

.membership-grade-card.premium h3 {
    color: var(--white);
}

.membership-grade-card.premium .grade-desc {
    color: rgba(255, 255, 255, 0.8);
}

.membership-grade-card.premium .grade-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.membership-grade-card.premium .grade-benefits svg {
    color: var(--gold);
}

.membership-grade-card.featured {
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.grade-badge {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.grade-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.grade-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.grade-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.grade-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.grade-benefits svg {
    color: var(--teal);
    flex-shrink: 0;
}

.btn-grade {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--teal);
    border-radius: 8px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-grade:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-grade.primary {
    background: var(--teal);
    color: var(--white);
}

.btn-grade.primary:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
}

.membership-grade-card.premium .btn-grade {
    border-color: var(--gold);
    color: var(--gold);
}

.membership-grade-card.premium .btn-grade:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* ========================================
   NEW MEMBERSHIP GRADES DESIGN
   ======================================== */

.membership-overview-section {
    padding: 4rem 0;
    background: var(--white);
}

.membership-overview-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.membership-overview-icon {
    width: 90px;
    height: 90px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.membership-overview-icon svg {
    stroke: var(--white);
}

.membership-overview-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.membership-overview-box p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.membership-overview-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.overview-badge {
    background: var(--white);
    color: var(--teal);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 95, 0.2);
}

/* New Grade Cards */
.membership-grades-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.grade-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.grade-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.grade-card-new.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: var(--white);
}

.grade-card-new.featured {
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
}

.featured-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--teal);
    color: var(--white);
    padding: 0.35rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.grade-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.grade-card-new.premium .grade-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.grade-badge-new {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.grade-card-new.premium .grade-badge-new {
    background: var(--gold);
    color: var(--text-dark);
}

.grade-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.grade-card-new.premium .grade-header h3 {
    color: var(--white);
}

.grade-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.grade-card-new.premium .grade-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.grade-fee {
    margin-top: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Cormorant Garamond', serif;
}

.grade-fee span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
}

.grade-card-new.premium .grade-fee {
    color: var(--gold);
}

.grade-card-new.premium .grade-fee span {
    color: rgba(255, 255, 255, 0.7);
}

.grade-body {
    padding: 1.5rem 2rem;
}

.grade-eligibility,
.grade-benefits-new {
    margin-bottom: 1.5rem;
}

.grade-eligibility h4,
.grade-benefits-new h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.grade-card-new.premium .grade-eligibility h4,
.grade-card-new.premium .grade-benefits-new h4 {
    color: var(--gold);
}

.grade-eligibility ul,
.grade-benefits-new ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.grade-eligibility li,
.grade-benefits-new li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.grade-card-new.premium .grade-eligibility li,
.grade-card-new.premium .grade-benefits-new li {
    color: rgba(255, 255, 255, 0.85);
}

.grade-eligibility li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.grade-benefits-new li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.grade-card-new.premium .grade-eligibility li::before,
.grade-card-new.premium .grade-benefits-new li::before {
    color: var(--gold);
}

.grade-benefits-new li.no-voting {
    color: var(--text-light);
    font-style: italic;
}

.grade-benefits-new li.no-voting::before {
    content: "✗";
    color: #cc7a7a;
}

.grade-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn-grade-new {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    border: 2px solid var(--teal);
    border-radius: 10px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-grade-new:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-grade-new.primary {
    background: var(--teal);
    color: var(--white);
}

.btn-grade-new.primary:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
}

.grade-card-new.premium .btn-grade-new {
    border-color: var(--gold);
    color: var(--gold);
}

.grade-card-new.premium .btn-grade-new:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Code of Conduct Notice */
.code-conduct-notice {
    padding: 3rem 0;
    background: var(--white);
}

.conduct-notice-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.conduct-notice-icon {
    width: 60px;
    height: 60px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conduct-notice-icon svg {
    stroke: var(--white);
}

.conduct-notice-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.conduct-notice-content p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.conduct-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

.conduct-link:hover {
    text-decoration: underline;
}

/* Membership Contact Section */
.membership-contact-section {
    padding: 3rem 0;
    background: var(--cream);
}

.membership-contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--teal) 0%, #006666 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.membership-contact-box .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff !important;
}

.membership-contact-box .contact-info p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.membership-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.membership-email svg {
    stroke: #ffffff;
}

.membership-email:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
}

/* Retired Center Card */
.grade-card-new.retired-center {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
}

/* Membership Apply CTA */
.membership-apply-cta {
    margin-top: 3rem;
    text-align: center;
}

.apply-cta-content {
    background: linear-gradient(135deg, var(--teal) 0%, #006666 100%);
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.apply-cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.apply-cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-create-account {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--teal);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-create-account:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .membership-grades-new {
        grid-template-columns: 1fr;
    }
    
    .grade-card-new.retired-center {
        max-width: 100%;
    }
    
    .conduct-notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .conduct-notice-icon {
        margin: 0 auto;
    }
    
    .apply-cta-content {
        padding: 2rem;
    }
}

/* ========================================
   BENEFITS SECTION - New Style
   ======================================== */

.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon-new {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon-new {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.05);
}

.benefit-item h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   PAGE RESPONSIVE UPDATES
   ======================================== */

@media (max-width: 992px) {
    .page-hero {
        margin-top: 70px;
        padding: 3rem 0;
    }
    
    .membership-grades {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .benefits-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 62px;
        padding: 2.5rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .membership-section,
    .benefits-section {
        padding: 3.5rem 0;
    }
    
    .membership-grades {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .membership-grade-card {
        padding: 1.5rem;
    }
    
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Story Section */
.about-story {
    padding: 5rem 0;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.story-content .section-tag {
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.story-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.stat-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.mission-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.mission-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--teal);
    color: var(--white);
}

.value-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* What We Do Section */
.whatwedo-section {
    padding: 5rem 0;
    background: var(--white);
}

.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.whatwedo-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.whatwedo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.whatwedo-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(30, 58, 95, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.whatwedo-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.whatwedo-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.timeline-section .section-header {
    color: var(--white);
}

.timeline-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.timeline-section .section-header h2 {
    color: var(--white);
}

.timeline-section .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   ABOUT PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .whatwedo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story,
    .mission-section,
    .values-section,
    .whatwedo-section,
    .timeline-section {
        padding: 3.5rem 0;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .story-stat-card {
        padding: 1.25rem;
    }
    
    .values-grid,
    .whatwedo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card,
    .whatwedo-card {
        padding: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
        padding-bottom: 2rem;
    }
    
    .timeline-item::before {
        left: -1.5rem;
        width: 12px;
        height: 12px;
    }
}

/* ========================================
   CORPORATE MEMBERSHIP PAGE STYLES
   ======================================== */

/* Corporate Intro Section */
.corp-intro {
    padding: 5rem 0;
    background: var(--cream);
}

.corp-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.corp-intro-content .section-tag {
    margin-bottom: 1rem;
}

.corp-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.corp-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.corp-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.corp-stat {
    text-align: center;
}

.corp-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.corp-stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.corp-intro-image {
    display: flex;
    justify-content: center;
}

.corp-image-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.corp-image-placeholder {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.corp-image-placeholder svg {
    opacity: 0.9;
}

.corp-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Partnership Tiers Section */
.tiers-section {
    padding: 5rem 0;
    background: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.tier-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tier-card.featured {
    border: 2px solid var(--teal);
}

.tier-card.premium {
    border: 2px solid var(--gold);
}

.tier-featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

.tier-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.tier-header.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    color: var(--white);
}

.tier-header.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: var(--white);
}

.tier-header.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: var(--text-dark);
}

.tier-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.tier-header.gold .tier-icon {
    background: rgba(0, 0, 0, 0.1);
}

.tier-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.tier-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tier-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-tier {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--teal);
    border-radius: 8px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-tier:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-tier.primary {
    background: var(--teal);
    color: var(--white);
}

.btn-tier.primary:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
}

.btn-tier.gold {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-tier.gold:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Corporate Benefits Section */
.corp-benefits {
    padding: 5rem 0;
    background: var(--cream);
}

.corp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.corp-benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.corp-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.corp-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.corp-benefit-card:hover .corp-benefit-icon {
    background: var(--teal);
    color: var(--white);
}

.corp-benefit-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.corp-benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Process Section */
.corp-process {
    padding: 5rem 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.corp-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.corp-testimonials .section-header {
    color: var(--white);
}

.corp-testimonials .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.corp-testimonials .section-header h2 {
    color: var(--white);
}

.corp-testimonials .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   CORPORATE MEMBERSHIP PAGE RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tier-card.featured {
        order: -1;
    }
}

@media (max-width: 992px) {
    .corp-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .corp-intro-image {
        order: -1;
    }
    
    .corp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .corp-intro,
    .tiers-section,
    .corp-benefits,
    .corp-process,
    .corp-testimonials {
        padding: 3.5rem 0;
    }
    
    .corp-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .corp-stat strong {
        font-size: 1.75rem;
    }
    
    .corp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tier-header {
        padding: 1.5rem;
    }
    
    .tier-body {
        padding: 1.5rem;
    }
}

/* ========================================
   QUALIFICATIONS PAGE STYLES
   ======================================== */

/* Qualification Intro Full Width */
.qual-intro-content-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.qual-intro-content-full .section-tag {
    margin-bottom: 1rem;
}

.qual-intro-content-full h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.qual-intro-content-full p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.qual-intro-content-full p strong {
    color: var(--teal);
}

.qual-intro-content-full .qual-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* NEW Qualifications Intro Box Design */
.qual-intro-new {
    padding: 4rem 0;
    background: var(--cream);
}

.qual-intro-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.qual-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.qual-intro-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.qual-intro-box .section-tag {
    margin-bottom: 1rem;
}

.qual-intro-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.qual-intro-box > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.qual-intro-box > p strong {
    color: var(--teal);
}

.qual-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qual-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cream);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: left;
}

.qual-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    border: 1px solid rgba(0, 102, 102, 0.1);
}

.qual-feature-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .qual-intro-box {
        padding: 2rem 1.5rem;
    }
    
    .qual-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact Accreditation Partners Section */
.accreditation-partners-compact {
    padding: 2.5rem 0;
    background: var(--white);
}

.section-header-small {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header-small .section-tag {
    margin-bottom: 0.5rem;
}

.section-header-small h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.accreditation-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.accreditation-card-compact {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accreditation-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accreditation-logo-compact {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accreditation-logo-compact img {
    max-height: 50px;
    max-width: 75px;
    object-fit: contain;
}

.accreditation-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.accreditation-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .accreditation-grid-compact {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Accreditation Partners Section */
.accreditation-partners {
    padding: 4rem 0;
    background: var(--white);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accreditation-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.accreditation-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.accreditation-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.accreditation-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.accreditation-subtitle {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 1rem;
}

.accreditation-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.accreditation-badge {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* TQUK Section Alternate Background */
.tquk-section {
    background: var(--white);
}

.qualifi-section {
    background: var(--cream);
}

@media (max-width: 768px) {
    .accreditation-grid {
        grid-template-columns: 1fr;
    }
    
    .qual-intro-content-full .qual-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Qualifications Intro Section */
.qual-intro {
    padding: 5rem 0;
    background: var(--cream);
}

.qual-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.qual-intro-content .section-tag {
    margin-bottom: 1rem;
}

.qual-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.qual-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.qual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.qual-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.qual-feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

.qual-stats-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.qual-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.qual-stat-item:first-child {
    padding-top: 0;
}

.qual-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.qual-stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.qual-stat-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Qualification Framework Section */
.qual-framework {
    padding: 5rem 0;
    background: var(--white);
}

.qual-levels {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.qual-level-card {
    background: var(--cream);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 120px 1fr;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.qual-level-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.qual-level-card.featured {
    border: 2px solid var(--teal);
    background: var(--white);
}

.qual-level-card.premium {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.qual-level-card.premium .qual-level-content {
    color: var(--white);
}

.qual-level-card.premium h3 {
    color: var(--white);
}

.qual-level-card.premium p {
    color: rgba(255, 255, 255, 0.8);
}

.qual-level-card.premium .qual-detail {
    color: rgba(255, 255, 255, 0.9);
}

.qual-level-card.premium .qual-equivalent {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.qual-featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
}

.qual-level-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding: 1.5rem 1rem;
}

.qual-level-badge.level-entry {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.qual-level-badge.level-foundation {
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
}

.qual-level-badge.level-intermediate {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
}

.qual-level-badge.level-advanced {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.qual-level-badge.level-professional {
    background: linear-gradient(135deg, #6f42c1 0%, #6610f2 100%);
}

.qual-level-badge.level-executive {
    background: linear-gradient(135deg, #d63384 0%, #ab2e6e 100%);
}

.qual-level-badge.level-doctoral {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: var(--text-dark);
}

.qual-level-content {
    padding: 1.5rem 2rem;
}

.qual-level-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.qual-level-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin: 0;
}

.qual-equivalent {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.qual-level-content > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.qual-level-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.qual-detail {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.qual-detail strong {
    color: var(--text-light);
    font-weight: 500;
}

.btn-qual {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--teal);
    border-radius: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-qual:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-qual.primary {
    background: var(--teal);
    color: var(--white);
}

.btn-qual.primary:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
}

.btn-qual.gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-qual.gold:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Why Choose Section */
.qual-why {
    padding: 5rem 0;
    background: var(--cream);
}

.qual-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.qual-why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.qual-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.qual-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.qual-why-card:hover .qual-why-icon {
    background: var(--teal);
    color: var(--white);
}

.qual-why-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.qual-why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Study Options Section */
.qual-study {
    padding: 5rem 0;
    background: var(--white);
}

.study-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.study-option {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
}

.study-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.study-option-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.study-option:hover .study-option-icon {
    background: var(--teal);
    color: var(--white);
}

.study-option h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.study-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   QUALIFICATIONS PAGE RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .study-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .qual-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .qual-intro-visual {
        order: -1;
    }
    
    .qual-level-card {
        grid-template-columns: 100px 1fr;
    }
    
    .qual-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qual-intro,
    .qual-framework,
    .qual-why,
    .qual-study {
        padding: 3.5rem 0;
    }
    
    .qual-features {
        grid-template-columns: 1fr;
    }
    
    .qual-level-card {
        grid-template-columns: 1fr;
    }
    
    .qual-level-badge {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .qual-level-content {
        padding: 1.5rem;
    }
    
    .qual-level-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qual-featured-tag {
        top: auto;
        bottom: 1rem;
        right: 1rem;
    }
    
    .qual-why-grid {
        grid-template-columns: 1fr;
    }
    
    .study-options-grid {
        grid-template-columns: 1fr;
    }
    
    .study-option {
        padding: 1.5rem;
    }
}

/* ========================================
   IAM ACADEMY PAGE STYLES
   ======================================== */

/* Academy Intro Section */
.academy-intro {
    padding: 5rem 0;
    background: var(--cream);
}

.academy-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.academy-intro-content .section-tag {
    margin-bottom: 1rem;
}

.academy-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.academy-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.academy-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.academy-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.academy-highlight strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.academy-highlight span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.academy-visual-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.academy-visual-content {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.academy-visual-content svg {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.academy-visual-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.academy-visual-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-academy-access {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-academy-access:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Course Categories Section */
.academy-categories {
    padding: 5rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--teal);
    color: var(--white);
}

.category-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.category-courses {
    list-style: none;
    margin-bottom: 1.25rem;
}

.category-courses li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-courses li:last-child {
    border-bottom: none;
}

.category-link {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.category-link:hover {
    color: var(--dark-teal);
}

/* More Categories Card */
.category-card.more-categories {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card.more-categories .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.category-card.more-categories:hover .category-icon {
    background: var(--white);
    color: var(--teal);
}

.category-card.more-categories h3 {
    color: var(--white);
}

.more-categories-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.more-categories-count {
    color: var(--white);
    font-size: 0.9rem;
}

.more-categories-count strong {
    color: var(--gold);
}

/* Categories CTA Button */
.categories-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-browse-courses {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--teal);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-browse-courses:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 102, 0.3);
}

/* CPD Requirements Section */
.cpd-requirements {
    padding: 5rem 0;
    background: var(--cream);
}

/* Extended CPD Requirements Grid (5 cards) */
.cpd-requirements-grid-extended {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .cpd-requirements-grid-extended {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cpd-requirements-grid-extended {
        grid-template-columns: 1fr;
    }
}

/* CPD Note */
.cpd-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.cpd-note svg {
    color: var(--teal);
    flex-shrink: 0;
}

.cpd-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.cpd-requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cpd-req-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.cpd-req-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cpd-req-card.featured {
    border: 2px solid var(--teal);
}

.cpd-req-card.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: var(--white);
}

.cpd-req-card.premium h3 {
    color: var(--white);
}

.cpd-req-card.premium p {
    color: rgba(255, 255, 255, 0.8);
}

.cpd-req-card.premium .cpd-req-label {
    color: var(--gold);
}

.cpd-req-card.premium .cpd-req-tip {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.cpd-req-points {
    font-size: 4rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.cpd-req-card.premium .cpd-req-points {
    color: var(--gold);
}

.cpd-req-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cpd-req-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cpd-req-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.cpd-req-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 58, 95, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--teal);
}

/* Academy How It Works Section */
.academy-how {
    padding: 5rem 0;
    background: var(--white);
}

.academy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.academy-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 0;
}

.academy-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.academy-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.academy-step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.academy-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Academy Benefits Section */
.academy-benefits {
    padding: 5rem 0;
    background: var(--cream);
}

.academy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.academy-benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.academy-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.academy-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.academy-benefit-card:hover .academy-benefit-icon {
    background: var(--teal);
    color: var(--white);
}

.academy-benefit-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.academy-benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Featured Courses Section */
.academy-featured {
    padding: 5rem 0;
    background: var(--white);
}

.featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.featured-course {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: var(--transition);
}

.featured-course:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
}

.course-badge.new {
    background: var(--gold);
    color: var(--text-dark);
}

.course-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.featured-course h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.featured-course > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.course-meta strong {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-course {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--teal);
    border-radius: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-course:hover {
    background: var(--teal);
    color: var(--white);
}

/* ========================================
   IAM ACADEMY PAGE RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .featured-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .academy-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .academy-intro-visual {
        order: -1;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpd-requirements-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .academy-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .academy-steps::before {
        display: none;
    }
    
    .academy-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .academy-intro,
    .academy-categories,
    .cpd-requirements,
    .academy-how,
    .academy-benefits,
    .academy-featured {
        padding: 3.5rem 0;
    }
    
    .academy-highlights {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .academy-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .academy-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TRAINING CENTRE PAGE STYLES
   ======================================== */

/* Training Centre Stats Section */
.tc-stats {
    padding: 4rem 0;
    background: var(--cream);
}

.tc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tc-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tc-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tc-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.tc-stat-content strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.tc-stat-content span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Find a Centre Section */
.tc-finder {
    padding: 5rem 0;
    background: var(--white);
}

.tc-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.tc-region-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.tc-region-card:hover {
    background: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
}

.tc-region-card:hover .region-icon,
.tc-region-card:hover h3,
.tc-region-card:hover .region-count {
    color: var(--white);
}

.tc-region-card:hover .region-icon {
    background: rgba(255, 255, 255, 0.2);
}

.region-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.tc-region-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.region-count {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.tc-search-box {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.tc-search-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.tc-search-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-search {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Study Options Section */
.tc-study-options {
    padding: 5rem 0;
    background: var(--cream);
}

.tc-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tc-option-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.tc-option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.tc-option-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.tc-option-card:hover .tc-option-icon {
    background: var(--teal);
    color: var(--white);
}

.tc-option-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.tc-option-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.option-features {
    list-style: none;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 0.35rem 0;
}

.option-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Become a Centre Section */
.tc-become {
    padding: 5rem 0;
    background: var(--white);
}

.tc-become-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tc-become-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.tc-become-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(30, 58, 95, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.tc-become-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.tc-become-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.become-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.become-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.4rem 0;
}

.become-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-become {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--teal);
    border-radius: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-become:hover {
    background: var(--teal);
    color: var(--white);
}

/* Quality Assurance Section */
.tc-quality {
    padding: 5rem 0;
    background: var(--cream);
}

.tc-quality-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.tc-quality-content .section-tag {
    margin-bottom: 1rem;
}

.tc-quality-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.tc-quality-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quality-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.quality-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.quality-check svg {
    color: var(--teal);
    flex-shrink: 0;
}

.quality-badge-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
}

.quality-badge-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quality-badge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.quality-badge-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ========================================
   TRAINING CENTRE PAGE - NEW STYLES
   ======================================== */

/* TC Intro New Box */
.tc-intro-new {
    padding: 4rem 0;
    background: var(--cream);
}

.tc-intro-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.tc-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.tc-intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.tc-intro-box .section-tag {
    margin-bottom: 1rem;
}

.tc-intro-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.tc-intro-box > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tc-intro-box > p strong {
    color: var(--teal);
}

/* Important Note Box */
.tc-important-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.tc-important-note .note-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    flex-shrink: 0;
}

.tc-important-note .note-content {
    flex: 1;
    font-size: 0.95rem;
    color: #92400e;
    line-height: 1.6;
}

.tc-important-note .note-content strong {
    color: #78350f;
}

/* What You Can Deliver */
.tc-what-deliver {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.tc-what-deliver h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.tc-deliver-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tc-deliver-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: left;
}

.tc-deliver-item .deliver-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-deliver-item .deliver-icon.certified {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
}

.tc-deliver-item .deliver-icon.cpd {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: var(--white);
}

.tc-deliver-item h5 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.tc-deliver-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* TC Benefits Section */
.tc-benefits {
    padding: 5rem 0;
    background: var(--white);
}

.tc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tc-benefit-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.tc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tc-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.tc-benefit-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.tc-benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* TC Course Assessment Section */
.tc-course-assessment {
    padding: 5rem 0;
    background: var(--cream);
}

.tc-assessment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.tc-assessment-content .section-tag {
    margin-bottom: 1rem;
}

.tc-assessment-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tc-assessment-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tc-assessment-features {
    margin-top: 1.5rem;
}

.assessment-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.assessment-feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

.tc-assessment-card {
    display: flex;
    justify-content: center;
}

.assessment-card-inner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    color: var(--white);
    max-width: 300px;
}

.assessment-card-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.assessment-card-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.assessment-card-inner > p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.assessment-card-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* TC Process Section */
.tc-process {
    padding: 5rem 0;
    background: var(--white);
}

.tc-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tc-process-step {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.tc-process-step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.tc-process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Ongoing Support Box */
.tc-ongoing-support {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: var(--white);
}

.ongoing-support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ongoing-support-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
}

.ongoing-support-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* TC Explore Section */
.tc-explore {
    padding: 5rem 0;
    background: var(--cream);
}

.tc-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tc-explore-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tc-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tc-explore-card.certified {
    border-color: rgba(30, 58, 95, 0.15);
}

.tc-explore-card.cpd {
    border-color: rgba(59, 130, 246, 0.15);
}

.tc-explore-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tc-explore-card.certified .tc-explore-icon {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
}

.tc-explore-card.cpd .tc-explore-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: var(--white);
}

.tc-explore-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.tc-explore-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.tc-explore-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tc-explore-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tc-explore-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.tc-explore-card.cpd .tc-explore-features li::before {
    background: #3B82F6;
}

.btn-tc-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.tc-explore-card.cpd .btn-tc-explore {
    color: #3B82F6;
}

.btn-tc-explore:hover {
    gap: 0.6rem;
}

/* TC Verify Section */
.tc-verify-section {
    padding: 5rem 0;
    background: var(--white);
}

.tc-verify-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
}

.tc-verify-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.tc-verify-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.tc-verify-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tc-verify-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.tc-verify-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.tc-verify-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.tc-verify-input-wrapper label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tc-verify-input-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.tc-verify-input-wrapper input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.tc-verify-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-tc-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.btn-tc-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.tc-verify-help {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.tc-verify-help svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* TC Responsive Styles */
@media (max-width: 992px) {
    .tc-intro-box {
        padding: 2rem;
    }
    
    .tc-deliver-items {
        grid-template-columns: 1fr;
    }
    
    .tc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-assessment-card {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .tc-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-explore-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tc-intro-new,
    .tc-benefits,
    .tc-course-assessment,
    .tc-process,
    .tc-explore,
    .tc-verify-section {
        padding: 3.5rem 0;
    }
    
    .tc-important-note {
        flex-direction: column;
        text-align: center;
    }
    
    .tc-important-note .note-icon {
        margin: 0 auto;
    }
    
    .tc-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-process-steps {
        grid-template-columns: 1fr;
    }
    
    .tc-ongoing-support {
        flex-direction: column;
        text-align: center;
    }
    
    .tc-verify-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tc-verify-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TRAINING CENTRE PAGE RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .tc-regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-become-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tc-quality-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tc-quality-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tc-stats,
    .tc-finder,
    .tc-study-options,
    .tc-become,
    .tc-quality {
        padding: 3.5rem 0;
    }
    
    .tc-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tc-regions-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-region-card {
        padding: 1.25rem;
    }
    
    .tc-search-box {
        padding: 2rem 1.5rem;
    }
    
    .tc-options-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-option-card {
        padding: 1.5rem;
    }
    
    .quality-checks {
        grid-template-columns: 1fr;
    }
    
    .quality-badge-card {
        padding: 2rem;
    }
}

/* ========================================
   DIRECTORY PAGE STYLES
   ======================================== */

/* Directory Intro Section - New Box Design */
.dir-intro {
    padding: 4rem 0;
    background: var(--cream);
}

.dir-intro-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.dir-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.dir-intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.dir-intro-box .section-tag {
    margin-bottom: 1rem;
}

.dir-intro-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dir-intro-box > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.dir-intro-box > p strong {
    color: var(--teal);
}

.dir-importance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dir-importance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    text-align: left;
}

.dir-importance-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.dir-importance-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.dir-importance-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.dir-types-info {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: var(--white);
}

.dir-types-info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.dir-types-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.dir-type-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.dir-type-badge svg {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .dir-intro-box {
        padding: 2rem 1.5rem;
    }
    
    .dir-importance-grid {
        grid-template-columns: 1fr;
    }
    
    .dir-types-list {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* Legacy styles kept for compatibility */
.dir-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.dir-intro-content .section-tag {
    margin-bottom: 1rem;
}

.dir-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.dir-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.dir-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.dir-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.dir-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dir-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
}

.dir-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Directory Categories Section */
.dir-categories {
    padding: 5rem 0;
    background: var(--white);
}

.dir-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dir-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.dir-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dir-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 2rem 1.5rem;
}

.dir-card-icon.individual {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: var(--white);
}

.dir-card-icon.certified {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
}

.dir-card-icon.corporate {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: var(--white);
}

.dir-card-icon.centres {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
}

.dir-card-content {
    padding: 0 2rem;
    flex: 1;
}

.dir-card-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.dir-card-content > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.dir-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.dir-card-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.4rem 0;
}

.dir-card-features li svg {
    color: var(--teal);
    flex-shrink: 0;
}

.dir-card-footer {
    padding: 1.5rem 2rem 2rem;
    margin-top: auto;
}

.btn-dir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.btn-dir.individual {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.btn-dir.individual:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-dir.certified {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.btn-dir.certified:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-dir.corporate {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.btn-dir.corporate:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-dir.centres {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.btn-dir.centres:hover {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #0f5555 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* Directory Why Section */
.dir-why {
    padding: 5rem 0;
    background: var(--cream);
}

.dir-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dir-why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.dir-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dir-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.dir-why-card:hover .dir-why-icon {
    background: var(--teal);
    color: var(--white);
}

.dir-why-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.dir-why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Directory Notice Section */
.dir-notice {
    padding: 4rem 0;
    background: var(--white);
}

.dir-notice-box {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(30, 58, 95, 0.1) 100%);
    border: 2px solid var(--teal);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dir-notice-icon {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.dir-notice-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.dir-notice-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-notice {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-notice:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 58, 95, 0.3);
}

/* ========================================
   DIRECTORY PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .dir-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dir-intro-stats {
        max-width: 400px;
    }
    
    .dir-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .dir-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dir-notice-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dir-intro,
    .dir-categories,
    .dir-why,
    .dir-notice {
        padding: 3.5rem 0;
    }
    
    .dir-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .dir-stat {
        padding: 1.25rem 1rem;
    }
    
    .dir-stat-number {
        font-size: 1.75rem;
    }
    
    .dir-card-icon {
        margin: 1.5rem 1.5rem 1rem;
    }
    
    .dir-card-content {
        padding: 0 1.5rem;
    }
    
    .dir-card-footer {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .dir-why-grid {
        grid-template-columns: 1fr;
    }
    
    .dir-why-card {
        padding: 1.5rem;
    }
    
    .dir-notice-box {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   VERIFY PAGE STYLES
   ======================================== */

/* Verification Tool Section */
.verify-tool {
    padding: 4rem 0 5rem;
    background: var(--cream);
}

.verify-tool-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.verify-tool-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.verify-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.verify-tool-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.verify-tool-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.verify-form {
    margin-bottom: 1.5rem;
}

/* Verification Tabs */
.verify-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: var(--cream);
    padding: 0.35rem;
    border-radius: 12px;
}

.verify-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.verify-tab:hover {
    color: var(--teal);
    background: rgba(255, 255, 255, 0.5);
}

.verify-tab.active {
    background: var(--white);
    color: var(--teal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.verify-tab svg {
    flex-shrink: 0;
}

.verify-form-content {
    display: none;
}

.verify-form-content.active {
    display: block;
}

.verify-form-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .verify-tabs {
        flex-direction: column;
    }
    
    .verify-tab {
        justify-content: center;
    }
}

.verify-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.verify-input-wrapper {
    margin-bottom: 0;
}

.verify-input-wrapper label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.verify-input-wrapper input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.verify-input-wrapper input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.verify-submit-wrapper {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.verify-input-group {
    display: flex;
    gap: 0.75rem;
}

.verify-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.verify-input-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.btn-verify {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-verify:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.verify-types-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.verify-type-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--teal);
}

.verify-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.verify-help svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* What Can Be Verified Section */
.verify-what {
    padding: 5rem 0;
    background: var(--white);
}

/* Credential Types Info Box */
.verify-types-info {
    margin-bottom: 3rem;
}

.verify-types-info-box {
    background: linear-gradient(135deg, var(--cream) 0%, #f8f6f3 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 102, 0.1);
}

.verify-types-info-box h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.verify-types-info-box > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.verify-types-info-box > p strong {
    color: var(--teal);
}

.verify-credential-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.verify-credential-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.credential-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.credential-type-icon.ofqual {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.credential-type-icon.certified {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.credential-type-icon.cpd {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.verify-credential-type h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.verify-credential-type p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .verify-credential-types {
        grid-template-columns: 1fr;
    }
}

.verify-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.verify-what-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.75rem;
    transition: var(--transition);
}

.verify-what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.verify-what-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.verify-what-card:hover .verify-what-icon {
    background: var(--teal);
    color: var(--white);
}

.verify-what-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.verify-what-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.verify-what-list {
    list-style: none;
}

.verify-what-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 0.3rem 0;
}

.verify-what-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* For Employers Section */
.verify-employers {
    padding: 5rem 0;
    background: var(--cream);
}

.verify-employers-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
}

.verify-employers-content .section-tag {
    margin-bottom: 1rem;
}

.verify-employers-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.verify-employers-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.verify-employers-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.verify-employer-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.verify-employer-feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

.verify-employers-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.verify-employers-card-inner {
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.verify-employers-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.verify-employers-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.verify-employers-card p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-employer-contact {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-employer-contact:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* How Verification Works Section */
.verify-how {
    padding: 5rem 0;
    background: var(--white);
}

.verify-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.verify-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 0;
}

.verify-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.verify-step-number {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.verify-step h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.verify-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Security Section */
.verify-security {
    padding: 4rem 0;
    background: var(--cream);
}

.verify-security-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.verify-security-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.verify-security-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.verify-security-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   VERIFY PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .verify-what-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verify-employers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .verify-employers-card {
        max-width: 400px;
    }
    
    .verify-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .verify-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .verify-tool,
    .verify-what,
    .verify-employers,
    .verify-how,
    .verify-security {
        padding: 3.5rem 0;
    }
    
    .verify-tool-box {
        padding: 1.75rem;
    }
    
    .verify-tool-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verify-input-group {
        flex-direction: column;
    }
    
    .btn-verify {
        justify-content: center;
    }
    
    .verify-types-row {
        justify-content: center;
    }
    
    .verify-what-grid {
        grid-template-columns: 1fr;
    }
    
    .verify-employers-features {
        grid-template-columns: 1fr;
    }
    
    .verify-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verify-security-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Introduction Section */
.services-intro {
    padding: 5rem 0;
    background: var(--cream);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.services-intro-content .section-tag {
    margin-bottom: 1rem;
}

.services-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.services-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.services-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.services-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.services-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.services-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.services-stat span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Main Services Section */
.services-main {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card-new {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.service-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card-new:hover .service-card-icon {
    background: var(--teal);
    color: var(--white);
}

.service-card-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-card-content > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 0.3rem 0;
}

.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-service {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-service:hover {
    color: var(--dark-teal);
}

/* Corporate Training Section */
.services-corporate {
    padding: 5rem 0;
    background: var(--cream);
}

.services-corporate-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: start;
}

.services-corporate-content .section-tag {
    margin-bottom: 1rem;
}

.services-corporate-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.services-corporate-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.corporate-process {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.corporate-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    transition: var(--transition);
}

.corporate-process-step:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.process-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.corporate-process-step strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.corporate-process-step span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.services-corporate-card {
    position: sticky;
    top: 140px;
}

.corporate-card-inner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
}

.corporate-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.corporate-card-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.corporate-card-inner > p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.corporate-card-features {
    list-style: none;
    margin-bottom: 1.75rem;
}

.corporate-card-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.corporate-card-features li svg {
    flex-shrink: 0;
}

.btn-corporate-card {
    display: block;
    background: var(--white);
    color: var(--teal);
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-corporate-card:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Why Choose IAM Section */
.services-why {
    padding: 5rem 0;
    background: var(--white);
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services-why-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.services-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.services-why-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.services-why-card:hover .services-why-icon {
    background: var(--teal);
    color: var(--white);
}

.services-why-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.services-why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   SERVICES PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-intro-stats {
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-corporate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-corporate-card {
        position: static;
        max-width: 450px;
    }
    
    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-intro,
    .services-main,
    .services-corporate,
    .services-why {
        padding: 3.5rem 0;
    }
    
    .services-intro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .services-stat {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .service-card-new {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .service-card-icon {
        width: 56px;
        height: 56px;
    }
    
    .corporate-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .services-why-grid {
        grid-template-columns: 1fr;
    }
    
    .services-why-card {
        padding: 1.5rem;
    }
}

/* ========================================
   CERTIFIED PROGRAMMES PAGE STYLES
   ======================================== */

/* NEW Certified Intro Box Design */
.certified-intro-new {
    padding: 4rem 0;
    background: var(--cream);
}

.certified-intro-box {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.certified-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.certified-intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.certified-intro-box .section-tag {
    margin-bottom: 1rem;
}

.certified-intro-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.certified-intro-box > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certified-intro-box > p strong {
    color: var(--teal);
}

.certified-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.certified-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    text-align: left;
}

.certified-benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.certified-benefit-text h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.certified-benefit-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.certified-requirements {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: var(--white);
}

.certified-requirements h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.certified-req-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.certified-req-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.certified-req-item svg {
    color: var(--gold);
}

@media (max-width: 768px) {
    .certified-intro-box {
        padding: 2rem 1.5rem;
    }
    
    .certified-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .certified-req-list {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* More Programmes Card */
.cp-role-card.more-programmes {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cp-role-card.more-programmes .cp-more-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cp-role-card.more-programmes h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cp-role-card.more-programmes p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.btn-more-programmes {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-more-programmes:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Management Roles Styling */
.cp-roles-icon.management {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: var(--white);
}

.cp-roles-grid.management .cp-role-card.management {
    border-left: 3px solid #2563eb;
}

.cp-roles-grid.management .cp-role-card.management:hover {
    border-left-color: #1d4ed8;
}

/* Introduction Section */
.cp-intro {
    padding: 5rem 0;
    background: var(--cream);
}

.cp-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 4rem;
    align-items: center;
}

.cp-intro-content .section-tag {
    margin-bottom: 1rem;
}

.cp-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cp-intro-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cp-intro-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cp-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cp-highlight svg {
    color: var(--teal);
}

.cp-badge-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.cp-badge-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cp-badge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
}

.cp-badge-card > p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cp-badge-year {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Roles Section */
.cp-roles {
    padding: 5rem 0;
    background: var(--white);
}

.cp-roles-category {
    margin-bottom: 3.5rem;
}

.cp-roles-category:last-child {
    margin-bottom: 0;
}

.cp-roles-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cp-roles-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cp-roles-icon.admin {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
}

.cp-roles-icon.professional {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.cp-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

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

.cp-role-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.cp-role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cp-role-card.professional {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.cp-role-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cp-role-card.professional .cp-role-icon {
    color: #8B5CF6;
}

.cp-role-card:hover .cp-role-icon {
    background: var(--teal);
    color: var(--white);
}

.cp-role-card.professional:hover .cp-role-icon {
    background: #8B5CF6;
    color: var(--white);
}

.cp-role-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cp-role-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Certification Levels Section */
.cp-levels {
    padding: 5rem 0;
    background: var(--cream);
}

.cp-levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cp-level-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.cp-level-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cp-level-card.featured {
    border: 2px solid var(--teal);
}

.cp-level-card.premium {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}

.cp-level-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cp-level-header {
    padding: 2rem 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cp-level-card.premium .cp-level-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cp-level-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cp-level-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cp-level-card.premium .cp-level-header p {
    color: rgba(255, 255, 255, 0.7);
}

.cp-level-content {
    padding: 1.5rem 1.75rem;
    flex: 1;
}

.cp-level-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cp-level-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cp-level-card.premium .cp-level-features li {
    color: rgba(255, 255, 255, 0.9);
}

.cp-level-features li svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.cp-level-card.premium .cp-level-features li svg {
    color: var(--gold);
}

.cp-level-ideal {
    background: rgba(30, 58, 95, 0.08);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.cp-level-card.premium .cp-level-ideal {
    background: rgba(255, 255, 255, 0.1);
}

.cp-level-ideal strong {
    color: var(--teal);
}

.cp-level-card.premium .cp-level-ideal strong {
    color: var(--gold);
}

.cp-level-footer {
    padding: 1.5rem 1.75rem;
}

.btn-cp-level {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--teal);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cp-level:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
}

.cp-level-card.premium .btn-cp-level {
    background: var(--gold);
    color: var(--text-dark);
}

.cp-level-card.premium .btn-cp-level:hover {
    background: #c9a432;
}

/* Benefits Section */
.cp-benefits {
    padding: 5rem 0;
    background: var(--white);
}

.cp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cp-benefit-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.cp-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cp-benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.cp-benefit-card:hover .cp-benefit-icon {
    background: var(--teal);
    color: var(--white);
}

.cp-benefit-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cp-benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Process Section */
.cp-process {
    padding: 5rem 0;
    background: var(--cream);
}

.cp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.cp-process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 0;
}

.cp-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cp-process-number {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.cp-process-content h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.cp-process-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Standards Section */
.cp-standards {
    padding: 5rem 0;
    background: var(--white);
}

.cp-standards-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.cp-standards-content .section-tag {
    margin-bottom: 1rem;
}

.cp-standards-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cp-standards-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cp-standards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cp-standard {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    padding: 1.25rem;
    border-radius: 12px;
}

.cp-standard-icon {
    width: 36px;
    height: 36px;
    background: var(--teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.cp-standard strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cp-standard span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.cp-standards-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(30, 58, 95, 0.1) 100%);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.cp-standards-card-icon {
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.cp-standards-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.cp-standards-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CERTIFIED PROGRAMMES RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .cp-roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cp-roles-grid.professional {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cp-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cp-badge-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cp-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cp-levels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cp-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cp-process-steps::before {
        display: none;
    }
    
    .cp-standards-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cp-standards-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cp-intro,
    .cp-roles,
    .cp-levels,
    .cp-benefits,
    .cp-process,
    .cp-standards {
        padding: 3.5rem 0;
    }
    
    .cp-roles-grid,
    .cp-roles-grid.professional {
        grid-template-columns: 1fr;
    }
    
    .cp-role-card {
        padding: 1.25rem;
    }
    
    .cp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-process-steps {
        grid-template-columns: 1fr;
    }
    
    .cp-standard {
        padding: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Methods Section */
.contact-methods {
    padding: 4rem 0;
    background: var(--cream);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.contact-method-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

a.contact-method-card:hover {
    color: inherit;
}

.contact-method-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-icon {
    background: var(--teal);
    color: var(--white);
}

.contact-method-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-method-card p {
    color: var(--teal);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-method-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-link {
    color: var(--teal);
}

.contact-method-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Main Contact Section */
.contact-main {
    padding: 5rem 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group-new label span {
    color: #EF4444;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 0.9rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    transition: var(--transition);
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #a0aec0;
}

.form-group-new select {
    cursor: pointer;
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-new.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group-new.checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--teal);
    cursor: pointer;
}

.form-group-new.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
}

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-form-submit:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 140px;
}

.contact-sidebar-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.75rem;
}

.contact-sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-sidebar-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.dept-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dept-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.dept-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.dept-contact strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.dept-contact a {
    font-size: 0.85rem;
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

.dept-contact a:hover {
    color: var(--dark-teal);
}

/* Social Links */
.contact-sidebar-card.social {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    color: var(--white);
}

.contact-sidebar-card.social h3 {
    color: var(--white);
}

.contact-sidebar-card.social > p {
    color: rgba(255, 255, 255, 0.85);
}

.social-links-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-link-new {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link-new:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Response Time Card */
.contact-sidebar-card.response {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 58, 95, 0.08);
    border: 2px solid var(--teal);
}

.contact-sidebar-card.response .response-icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-sidebar-card.response strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.contact-sidebar-card.response p {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.faq-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    width: 52px;
    height: 52px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.faq-card:hover .faq-icon {
    background: var(--teal);
    color: var(--white);
}

.faq-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.faq-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-link {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.faq-link:hover {
    color: var(--dark-teal);
}

/* ========================================
   CONTACT PAGE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .contact-sidebar-card.social {
        grid-column: span 2;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-methods,
    .contact-main,
    .contact-faq {
        padding: 3.5rem 0;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .contact-method-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-method-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar-card.social {
        grid-column: span 1;
    }
    
    .social-links-new {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   POLICY PAGES STYLES (Privacy, Terms, Cookies)
   ======================================== */

/* Policy Content Section */
.policy-content {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.policy-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Policy Sidebar */
.policy-sidebar {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.policy-nav-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
}

.policy-nav-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.policy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.policy-nav a {
    padding: 0.6rem 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: var(--transition);
}

.policy-nav a:hover {
    color: var(--teal);
    background: var(--white);
}

.policy-info-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.policy-info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.policy-info-card p:last-child {
    margin-bottom: 0;
}

.policy-info-card strong {
    color: var(--text-dark);
}

.cookie-settings-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--white);
}

.cookie-settings-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.cookie-settings-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.btn-cookie-settings {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--white);
    color: var(--teal);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-settings:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* Policy Main Content */
.policy-main {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 140px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream);
}

.policy-section h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 1.75rem 0 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 1.25rem 0 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.policy-section p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.policy-section a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

.policy-section a:hover {
    color: var(--dark-teal);
    text-decoration: underline;
}

.policy-list {
    list-style: none;
    margin: 1rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.policy-list li strong {
    color: var(--text-dark);
}

/* Policy Contact Box */
.policy-contact-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.policy-contact-box p {
    margin-bottom: 0.5rem;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

/* Policy Highlight Box */
.policy-highlight {
    background: rgba(30, 58, 95, 0.08);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.policy-highlight strong {
    color: var(--teal);
}

.policy-highlight.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #F59E0B;
}

.policy-highlight.warning strong {
    color: #D97706;
}

/* Policy Table */
.policy-table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.policy-table-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.policy-table-row:last-child {
    border-bottom: none;
}

.policy-table-cell {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.policy-table-cell.heading {
    background: var(--cream);
    font-weight: 600;
    color: var(--text-dark);
}

/* Rights Grid (Privacy Policy) */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.right-card h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.right-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Cookie Info Box */
.cookie-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(30, 58, 95, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.cookie-info-icon {
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.cookie-info-box strong {
    color: var(--teal);
}

/* Cookie Purposes */
.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-purpose {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.cookie-purpose-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.cookie-purpose-icon.essential {
    background: var(--teal);
}

.cookie-purpose-icon.functional {
    background: #8B5CF6;
}

.cookie-purpose-icon.analytics {
    background: #3B82F6;
}

.cookie-purpose-icon.marketing {
    background: #F59E0B;
}

.cookie-purpose strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cookie-purpose p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Cookie Table */
.cookie-table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0 1.5rem;
}

.cookie-table-header {
    display: grid;
    grid-template-columns: 140px 1fr 100px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

.cookie-table-header span {
    padding: 0.85rem 1rem;
}

.cookie-table-row {
    display: grid;
    grid-template-columns: 140px 1fr 100px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.cookie-table-row:last-child {
    border-bottom: none;
}

.cookie-table-row span {
    padding: 0.85rem 1rem;
    color: var(--text-light);
}

.cookie-table-row span:first-child {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--teal);
    background: rgba(30, 58, 95, 0.05);
}

/* Third Party List */
.third-party-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.third-party-item {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.third-party-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 0 0.35rem;
    font-family: 'Outfit', sans-serif;
}

.third-party-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Related Policies Section */
.related-policies {
    padding: 4rem 0;
    background: var(--cream);
}

.related-policies h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.related-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.related-policy-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.related-policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-policy-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.related-policy-card:hover .related-policy-icon {
    background: var(--teal);
    color: var(--white);
}

.related-policy-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.related-policy-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   POLICY PAGES RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .policy-nav-card {
        flex: 1;
        min-width: 250px;
    }
    
    .policy-info-card,
    .cookie-settings-card {
        flex: 0 0 auto;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-purposes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 3rem 0 4rem;
    }
    
    .policy-sidebar {
        flex-direction: column;
    }
    
    .policy-nav-card {
        min-width: 100%;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-table-row {
        grid-template-columns: 1fr;
    }
    
    .policy-table-cell.heading {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .cookie-table-header,
    .cookie-table-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-table-header span:not(:first-child),
    .cookie-table-row span:nth-child(2) {
        display: none;
    }
    
    .cookie-table-row span:first-child {
        border-bottom: none;
    }
    
    .cookie-table-row span:last-child {
        padding-top: 0;
        font-size: 0.8rem;
    }
    
    .related-policies-grid {
        grid-template-columns: 1fr;
    }
    
    .related-policy-card {
        padding: 1.5rem;
    }
}

/* ========================================
   POLICY PAGES STYLES (Privacy, Terms, Cookies)
   ======================================== */

/* Policy Updated Banner */
.policy-updated {
    padding: 1rem 0;
    background: var(--cream);
}

.policy-updated-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.policy-updated-inner svg {
    color: var(--teal);
}

/* Policy Content Section */
.policy-content {
    padding: 4rem 0;
    background: var(--white);
}

.policy-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Table of Contents */
.policy-toc {
    position: sticky;
    top: 130px;
}

.policy-toc-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
}

.policy-toc-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.policy-toc-card nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-toc-card nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.policy-toc-card nav a:hover {
    background: var(--white);
    color: var(--teal);
}

/* Policy Main Content */
.policy-main {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 140px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream);
}

.policy-section h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 1.75rem 0 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.policy-section h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 1.25rem 0 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.policy-section p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

.policy-section a:hover {
    color: var(--dark-teal);
    text-decoration: underline;
}

/* Policy Info Box */
.policy-info-box {
    background: rgba(30, 58, 95, 0.08);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.policy-info-box strong {
    color: var(--text-dark);
}

/* Policy Notice */
.policy-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.policy-notice svg {
    color: #D97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-notice p {
    margin: 0;
    color: #92400E;
    font-size: 0.9rem;
}

.policy-notice.success {
    background: #D1FAE5;
    border-color: #10B981;
}

.policy-notice.success svg {
    color: #059669;
}

.policy-notice.success p {
    color: #065F46;
}

/* Policy Table */
.policy-table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.policy-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.policy-table-row:last-child {
    border-bottom: none;
}

.policy-table-row.header {
    background: var(--cream);
}

.policy-table-cell {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.policy-table-cell.header {
    font-weight: 600;
    color: var(--text-dark);
}

/* Cookie Table */
.cookie-table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.cookie-table-row {
    display: grid;
    grid-template-columns: 150px 1fr 100px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table-row:last-child {
    border-bottom: none;
}

.cookie-table-row.header {
    background: var(--cream);
}

.cookie-table-cell {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cookie-table-row.header .cookie-table-cell {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table-cell code {
    background: rgba(30, 58, 95, 0.1);
    color: var(--teal);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.right-card h4 {
    font-size: 0.95rem;
    color: var(--teal);
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
}

.right-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-type-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.cookie-type-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
}

.cookie-type-card p {
    margin: 0;
    font-size: 0.85rem;
}

/* Cookie Category Cards */
.cookie-category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-category-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px solid transparent;
}

.cookie-category-card.essential {
    border-color: var(--teal);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.cookie-category-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.cookie-category-header h4 {
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

.cookie-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-badge.required {
    background: var(--teal);
    color: var(--white);
}

.cookie-badge.optional {
    background: #e2e8f0;
    color: var(--text-light);
}

.cookie-category-card p {
    margin: 0;
    font-size: 0.85rem;
}

/* Policy Contact Box */
.policy-contact-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.policy-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.policy-contact-item strong {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.policy-contact-item a {
    font-size: 0.9rem;
}

/* Related Policies Section */
.related-policies {
    padding: 4rem 0;
    background: var(--cream);
}

.related-policies h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.related-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.related-policy-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.related-policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-policy-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.related-policy-card:hover .related-policy-icon {
    background: var(--teal);
    color: var(--white);
}

.related-policy-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    font-family: 'Outfit', sans-serif;
}

.related-policy-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   POLICY PAGES RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-toc {
        position: static;
    }
    
    .policy-toc-card nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .rights-grid,
    .cookie-types-grid,
    .cookie-category-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-content,
    .related-policies {
        padding: 3rem 0;
    }
    
    .policy-toc-card nav {
        grid-template-columns: 1fr;
    }
    
    .policy-section h2 {
        font-size: 1.35rem;
    }
    
    .policy-table-row,
    .cookie-table-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-table-row.header {
        display: none;
    }
    
    .cookie-table-cell {
        padding: 0.75rem 1rem;
    }
    
    .cookie-table-cell:first-child {
        background: var(--cream);
        font-weight: 600;
    }
    
    .related-policies-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-contact-box {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CODE OF CONDUCT PAGES
   ======================================== */

.code-intro {
    padding: 4rem 0;
    background: var(--white);
}

.code-intro-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.code-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--teal);
}

.code-intro-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.code-badge-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border);
}

.code-badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--teal);
}

.code-badge-card h3 {
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.25rem;
}

.code-badge-card p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.code-version {
    font-size: 0.85rem;
    color: var(--teal);
    background: rgba(30, 58, 95, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Code Principles */
.code-principles {
    padding: 4rem 0;
    background: var(--cream);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.principle-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.principle-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.principle-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Code Standards Accordion */
.code-standards {
    padding: 4rem 0;
    background: var(--white);
}

.standards-accordion {
    margin-top: 2rem;
}

.standard-item {
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.standard-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.standard-header:hover {
    background: rgba(30, 58, 95, 0.05);
}

.standard-header h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.standard-toggle {
    width: 28px;
    height: 28px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 300;
    flex-shrink: 0;
}

.standard-content {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.standard-item.active .standard-content {
    display: block;
}

.standard-item.active .standard-toggle {
    transform: rotate(45deg);
}

.standard-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.standard-content ul {
    list-style: none;
    padding: 0;
}

.standard-content ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.standard-content ul li:last-child {
    border-bottom: none;
}

.standard-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

/* Code Enforcement */
.code-enforcement {
    padding: 4rem 0;
    background: var(--cream);
}

.enforcement-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.enforcement-content h2 {
    font-size: 1.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.enforcement-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.enforcement-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.enforcement-content ul {
    list-style: none;
    padding: 0;
}

.enforcement-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.enforcement-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.enforcement-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border);
}

.enforcement-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.enforcement-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.enforcement-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 1.1rem;
}

.enforcement-email:hover {
    color: var(--dark-teal);
}

.enforcement-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Code Commitment */
.code-commitment {
    padding: 4rem 0;
    background: var(--teal);
}

.commitment-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.commitment-card h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.commitment-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.commitment-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.commitment-card ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-card ul li:last-child {
    border-bottom: none;
}

.commitment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* Code Related Links */
.code-related {
    padding: 4rem 0;
    background: var(--white);
}

.code-related h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.related-link-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.related-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-link-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: var(--transition);
}

.related-link-card:hover .related-link-icon {
    background: var(--teal);
    color: var(--white);
}

.related-link-content h3 {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.related-link-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Tier Requirements (Corporate Code) */
.tier-requirements {
    padding: 4rem 0;
    background: var(--white);
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.tier-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
}

.tier-header {
    margin-bottom: 1.5rem;
}

.tier-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.tier-card.bronze .tier-badge {
    background: #CD7F32;
    color: var(--white);
}

.tier-card.silver .tier-badge {
    background: #A0A0A0;
    color: var(--white);
}

.tier-card.gold .tier-badge {
    background: var(--gold);
    color: var(--white);
}

.tier-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.tier-card ul {
    list-style: none;
    padding: 0;
}

.tier-card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Role Guidelines (Certified Code) */
.role-guidelines {
    padding: 4rem 0;
    background: var(--cream);
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.role-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1rem;
}

.role-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
}

.role-card ul li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.role-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Compliance Framework (Training Centre Code) */
.compliance-framework {
    padding: 4rem 0;
    background: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.compliance-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.compliance-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.compliance-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.compliance-icon.amber {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.compliance-icon.red {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.compliance-icon.black {
    background: rgba(0, 0, 0, 0.1);
    color: #374151;
}

.compliance-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.compliance-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   MEMBER COUNCIL PAGE
   ======================================== */

.council-overview {
    padding: 4rem 0;
    background: var(--white);
}

.council-overview-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.council-overview-content h2 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.council-overview-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.council-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.council-highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.council-highlight strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.council-highlight p {
    margin: 0;
    font-size: 0.9rem;
}

.council-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--teal) 0%, #006666 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.council-notice-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.council-notice-icon svg {
    stroke: var(--white);
}

.council-notice strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.council-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.schedule-notice {
    background: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
    color: var(--text);
    font-size: 0.95rem;
}

.council-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.council-stat-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.council-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.council-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Council Purpose */
.council-purpose {
    padding: 4rem 0;
    background: var(--cream);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.purpose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.purpose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.purpose-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1rem;
}

.purpose-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.purpose-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Council Structure */
.council-structure {
    padding: 4rem 0;
    background: var(--white);
}

.structure-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    margin-top: 2rem;
}

.structure-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.structure-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
}

.structure-card.leadership {
    border: 2px solid var(--teal);
    background: rgba(30, 58, 95, 0.05);
}

.structure-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.structure-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.structure-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--teal);
    background: rgba(30, 58, 95, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

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

.structure-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.structure-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.term-info {
    background: var(--teal);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--white);
}

.term-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.term-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.term-item:last-child {
    border-bottom: none;
}

.term-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.term-value {
    font-weight: 600;
}

/* Council Involvement */
.council-involvement {
    padding: 4rem 0;
    background: var(--cream);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.involvement-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.involvement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.involvement-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.involvement-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.involvement-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Council Meetings */
.council-meetings {
    padding: 4rem 0;
    background: var(--white);
}

.meetings-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.meetings-content h2 {
    font-size: 1.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.meetings-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.meetings-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.meeting-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meeting-item {
    display: flex;
    gap: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem;
}

.meeting-date {
    background: var(--teal);
    color: var(--white);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    min-width: 60px;
}

.meeting-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meeting-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.meeting-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.meeting-details span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.meetings-contact-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.meetings-contact-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.meetings-contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.meetings-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 600;
}

.meetings-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ========================================
   GOVERNANCE PAGE
   ======================================== */

.governance-overview {
    padding: 4rem 0;
    background: var(--white);
}

.governance-intro {
    max-width: 800px;
    margin-bottom: 3rem;
}

.governance-intro h2 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.governance-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Centralized Governance Info Box */
.governance-info-box {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(30, 58, 95, 0.1);
}

.governance-info-icon {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.governance-info-icon svg {
    stroke: var(--white);
}

.governance-info-box p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.governance-info-box p strong {
    color: var(--teal);
}

.governance-info-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.info-badge svg {
    stroke: var(--gold);
}

/* Centralized Board Info Box */
.board-info-box {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem;
    background: var(--teal);
    border-radius: 16px;
    text-align: center;
}

.board-info-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.board-info-icon svg {
    stroke: var(--white);
}

.board-info-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.board-info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.02rem;
}

@media (max-width: 600px) {
    .governance-info-box,
    .board-info-box {
        padding: 1.75rem;
    }
    
    .governance-info-icon,
    .board-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .governance-info-icon svg,
    .board-info-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .governance-info-badges {
        flex-direction: column;
        align-items: center;
    }
}

.governance-structure-visual {
    max-width: 800px;
    margin: 0 auto;
}

.gov-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.gov-level.two-col {
    justify-content: center;
}

.gov-level.three-col {
    justify-content: center;
}

.gov-level.four-col {
    justify-content: center;
    flex-wrap: wrap;
}

.gov-level.four-col .gov-box.small {
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.gov-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 200px;
}

.gov-box.primary {
    background: var(--teal);
    color: var(--white);
}

.gov-box.primary h3,
.gov-box.primary p {
    color: var(--white);
}

.gov-box h3 {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gov-box h4 {
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.gov-box p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.gov-box.small {
    padding: 1rem 1.5rem;
    min-width: 160px;
}

.gov-connector {
    width: 2px;
    height: 30px;
    background: var(--border);
    margin: 0 auto;
}

/* Board Section */
.board-section {
    padding: 4rem 0;
    background: var(--cream);
}

.board-intro {
    max-width: 800px;
    margin-bottom: 2rem;
}

.board-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.board-responsibilities h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.responsibility-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.responsibility-icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.responsibility-card h4 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.responsibility-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Committees Section */
.committees-section {
    padding: 4rem 0;
    background: var(--white);
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.committee-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
}

.committee-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.committee-icon {
    width: 50px;
    height: 50px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.committee-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.committee-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.committee-card ul li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.committee-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Governance Documents */
.governance-documents {
    padding: 4rem 0;
    background: var(--cream);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.document-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.document-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.document-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.document-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.document-link {
    color: var(--teal);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Transparency Section */
.transparency-section {
    padding: 4rem 0;
    background: var(--teal);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.transparency-text h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.transparency-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.transparency-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transparency-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.transparency-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.transparency-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ACCESSIBILITY PAGE
   ======================================== */

.accessibility-content {
    padding: 4rem 0;
    background: var(--white);
}

.accessibility-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.accessibility-main {
    max-width: 800px;
}

.accessibility-section {
    margin-bottom: 2.5rem;
}

.accessibility-section h2 {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.accessibility-section h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.accessibility-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.accessibility-section ul {
    list-style: none;
    padding: 0;
}

.accessibility-section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.accessibility-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content ul {
    margin: 0;
}

.feature-content ul li {
    padding: 0.25rem 0 0.25rem 1rem;
    font-size: 0.9rem;
}

.standards-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.standards-info .standard-item {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.standards-info .standard-item h4 {
    font-size: 1rem;
    color: var(--teal);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.standards-info .standard-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Accessibility Sidebar */
.accessibility-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accessibility-help-card {
    background: var(--teal);
    border-radius: 16px;
    padding: 2rem;
    color: var(--white);
}

.accessibility-help-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.accessibility-help-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.accessibility-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.accessibility-email:hover {
    background: rgba(255, 255, 255, 0.25);
}

.response-time {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.accessibility-resources {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
}

.accessibility-resources h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.accessibility-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accessibility-resources ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.accessibility-resources ul li:last-child {
    border-bottom: none;
}

.accessibility-resources ul li a {
    color: var(--teal);
    font-size: 0.95rem;
}

.accessibility-resources ul li a:hover {
    text-decoration: underline;
}

/* Accessibility Feedback */
.accessibility-feedback {
    padding: 4rem 0;
    background: var(--cream);
}

.feedback-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.feedback-content h2 {
    font-size: 1.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.feedback-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feedback-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.feedback-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.feedback-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* ========================================
   PARTNERS PAGE
   ======================================== */

.partners-overview {
    padding: 4rem 0;
    background: var(--white);
}

.partners-intro-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.partners-intro-icon {
    width: 90px;
    height: 90px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partners-intro-icon svg {
    stroke: var(--white);
}

.partners-intro-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.partners-intro-box p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partners-intro-box p strong {
    color: var(--teal);
}

.partners-intro-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.partner-badge {
    background: var(--white);
    color: var(--teal);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(30, 58, 95, 0.2);
}

/* Partnership Types */
.partnership-types {
    padding: 4rem 0;
    background: var(--cream);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.partnership-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
}

.partnership-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.partnership-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.partnership-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.partnership-card ul li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.partnership-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Qualifi Accreditation Section */
.qualifi-section {
    padding: 4rem 0;
    background: var(--white);
}

.qualifi-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.qualifi-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.qualifi-info p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.qualifi-info a:not(.btn) {
    color: var(--teal);
    font-weight: 600;
}

.qualifi-info a:not(.btn):hover {
    text-decoration: underline;
}

.accreditation-card {
    background: linear-gradient(135deg, var(--teal) 0%, #006666 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    min-width: 220px;
}

.accreditation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.accreditation-icon svg {
    stroke: var(--white);
}

.accreditation-card strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.accreditation-card span {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .qualifi-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qualifi-badge {
        display: flex;
        justify-content: center;
    }
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.benefits-text h2 {
    font-size: 1.75rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.benefits-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 1.25rem;
}

.benefit-icon {
    color: var(--teal);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    margin: 0;
}

.cta-card {
    background: var(--teal);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.cta-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--teal);
}

.cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-email {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Partners Showcase */
.partners-showcase {
    padding: 4rem 0;
    background: var(--cream);
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-logo-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.partner-logo-placeholder {
    color: var(--text-light);
    font-size: 0.9rem;
}

.partners-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ========================================
   FAQ PAGES
   ======================================== */

.faq-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 110px;
    z-index: 100;
}

.faq-nav-inner {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.faq-nav-item {
    padding: 0.6rem 1.25rem;
    background: var(--cream);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    transition: var(--transition);
}

.faq-nav-item:hover,
.faq-nav-item.active {
    background: var(--teal);
    color: var(--white);
}

.faq-content {
    padding: 3rem 0;
    background: var(--cream);
}

.faq-section {
    margin-bottom: 3rem;
    scroll-margin-top: 180px;
}

.faq-section h2 {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(30, 58, 95, 0.03);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--teal);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* FAQ Contact */
.faq-contact {
    padding: 3rem 0;
    background: var(--white);
}

.faq-contact-card {
    background: var(--teal);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.faq-contact-card h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.faq-contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.faq-contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Related FAQs */
.related-faqs {
    padding: 3rem 0;
    background: var(--cream);
}

.related-faqs h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.related-faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
}

.related-faq-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition);
}

.related-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-faq-icon {
    width: 52px;
    height: 52px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.related-faq-card:hover .related-faq-icon {
    background: var(--teal);
    color: var(--white);
}

.related-faq-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.related-faq-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   NEW PAGES RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
    .code-intro-grid,
    .enforcement-grid,
    .council-overview-grid,
    .meetings-grid,
    .transparency-content,
    .accessibility-grid,
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .council-stats {
        max-width: 400px;
    }
    
    .structure-content {
        grid-template-columns: 1fr;
    }
    
    .term-info {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .principles-grid,
    .purpose-grid,
    .involvement-grid,
    .responsibilities-grid,
    .committees-grid,
    .regulatory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tier-cards,
    .role-cards,
    .compliance-grid,
    .related-links-grid,
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-grid,
    .affiliations-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .standards-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-nav {
        top: 60px;
    }
    
    .faq-section {
        scroll-margin-top: 140px;
    }
    
    .principles-grid,
    .purpose-grid,
    .involvement-grid,
    .responsibilities-grid,
    .committees-grid,
    .regulatory-grid,
    .tier-cards,
    .role-cards,
    .compliance-grid,
    .related-links-grid,
    .partners-logo-grid,
    .council-stats,
    .partners-stats,
    .related-faqs-grid {
        grid-template-columns: 1fr;
    }
    
    .gov-level {
        flex-direction: column;
        align-items: center;
    }
    
    .gov-level.two-col,
    .gov-level.three-col {
        gap: 1rem;
    }
    
    .faq-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .code-intro,
    .code-principles,
    .code-standards,
    .code-enforcement,
    .code-commitment,
    .code-related,
    .council-overview,
    .council-purpose,
    .council-structure,
    .council-involvement,
    .council-meetings,
    .governance-overview,
    .board-section,
    .committees-section,
    .governance-documents,
    .transparency-section,
    .accessibility-content,
    .accessibility-feedback,
    .partners-overview,
    .partnership-types,
    .regulatory-section,
    .affiliations-section,
    .partnership-benefits,
    .partners-showcase,
    .faq-content,
    .faq-contact,
    .related-faqs {
        padding: 3rem 0;
    }
    
    .commitment-card,
    .faq-contact-card {
        padding: 2rem;
    }
}

/* ========================================
   SERVICES CTA SECTION
   ======================================== */

.services-cta-section {
    padding: 5rem 0;
    background: var(--cream);
}

.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-cta-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-cta-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-cta-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.service-cta-content {
    flex: 1;
    min-width: 0;
}

.service-cta-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-cta-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.service-cta-arrow {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-cta-card:hover .service-cta-arrow {
    background: var(--teal);
    color: var(--white);
}

/* Services CTA Responsive */
@media (max-width: 992px) {
    .services-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-cta-section {
        padding: 3.5rem 0;
    }
    
    .service-cta-card {
        padding: 1.25rem;
    }
    
    .service-cta-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-cta-content h4 {
        font-size: 1rem;
    }
    
    .service-cta-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-cta-card {
        flex-wrap: wrap;
    }
    
    .service-cta-arrow {
        margin-left: auto;
    }
}

/* ========================================
   VERIFY CTA SECTION
   ======================================== */

.verify-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
}

.verify-cta-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verify-cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-cta-icon svg {
    color: var(--teal);
}

.verify-cta-content {
    flex: 1;
}

.verify-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.verify-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.verify-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--teal);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.verify-cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.verify-cta-button svg {
    transition: transform 0.3s ease;
}

.verify-cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .verify-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .verify-cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .verify-cta-section {
        padding: 3rem 0;
    }
    
    .verify-cta-box {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .verify-cta-icon {
        width: 64px;
        height: 64px;
    }
    
    .verify-cta-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .verify-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   VERIFY PAGE - SEPARATE BOXES DESIGN
   ======================================== */

.verify-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.verify-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.verify-intro-icon svg {
    color: var(--gold);
}

.verify-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.verify-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.verify-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.verify-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.verify-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.verify-box.individual-box {
    border-top: 4px solid var(--teal);
}

.verify-box.organisation-box {
    border-top: 4px solid var(--gold);
}

.verify-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.verify-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.individual-box .verify-box-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
    color: #fff;
}

.organisation-box .verify-box-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--dark);
}

.verify-box-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.verify-box-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.verify-box-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verify-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.verify-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.verify-input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.verify-input-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.verify-input-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.verify-credential-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.credential-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.credential-chip svg {
    color: var(--teal);
}

.verify-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.verify-submit-btn.individual {
    background: var(--teal);
    color: #fff;
}

.verify-submit-btn.individual:hover {
    background: #152a45;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.verify-submit-btn.organisation {
    background: var(--gold);
    color: var(--dark);
}

.verify-submit-btn.organisation:hover {
    background: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.verify-help-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.verify-help-note svg {
    color: var(--teal);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .verify-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .verify-intro h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .verify-form-row {
        grid-template-columns: 1fr;
    }
    
    .verify-box {
        padding: 1.5rem;
    }
    
    .verify-box-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verify-credential-chips {
        justify-content: center;
    }
}

/* ========================================
   PAGE CONTACT SECTION (Redesigned)
   ======================================== */

.page-contact-section {
    padding: 4rem 0;
    background: var(--cream);
}

.page-contact-box {
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.page-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-contact-icon {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-contact-icon svg {
    color: var(--teal);
}

.page-contact-content {
    flex: 1;
    min-width: 250px;
}

.page-contact-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-contact-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.page-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.page-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-contact-email:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.page-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--teal);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.page-contact-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact-btn svg {
    transition: transform 0.3s ease;
}

.page-contact-btn:hover svg {
    transform: translateX(4px);
}

.page-contact-response {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-contact-response svg {
    color: var(--gold);
}

@media (max-width: 992px) {
    .page-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .page-contact-actions {
        width: 100%;
    }
    
    .page-contact-email,
    .page-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer contact with icon */
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact svg {
    flex-shrink: 0;
}

/* ========================================
   CONTACT PAGE - NEW EMAIL GRID
   ======================================== */

.contact-methods-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.location-card .contact-method-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
}

.location-card .contact-method-icon svg {
    color: var(--gold);
}

.location-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.location-address {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.location-detail svg {
    color: var(--teal);
    flex-shrink: 0;
}

.location-detail.response-time {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    color: var(--teal);
    font-weight: 500;
}

.contact-emails-section {
    margin-top: 2rem;
}

.contact-emails-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-emails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.contact-email-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-email-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.1);
    transform: translateY(-2px);
}

.contact-email-card .email-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-email-card:hover .email-icon {
    background: var(--teal);
}

.contact-email-card .email-icon svg {
    color: var(--teal);
    transition: var(--transition);
}

.contact-email-card:hover .email-icon svg {
    color: #fff;
}

.email-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.email-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-address {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    word-break: break-all;
}

@media (max-width: 1200px) {
    .contact-emails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-methods-grid-new {
        grid-template-columns: 1fr;
    }
    
    .contact-emails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-emails-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
    }
    
    .location-details {
        align-items: center;
    }
}

/* ========================================
   POLICY CONTACT BOX - Enhanced
   ======================================== */

.policy-contact-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.policy-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.policy-contact-item strong {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-contact-item a {
    font-size: 1rem;
    color: var(--teal) !important;
    font-weight: 500;
}

.policy-contact-item a:hover {
    color: var(--dark-teal) !important;
}

/* ========================================
   POLICY PAGES - REDUCED SPACING
   ======================================== */

.policy-section p {
    margin-bottom: 0.75rem !important;
}

.policy-section h3 {
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.policy-section ul {
    margin-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

.policy-section ul li {
    margin-bottom: 0.35rem !important;
}

/* Footer email link - ensure visibility */
.footer-contact {
    margin: 1rem 0;
}

.footer-contact a {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.footer-contact a:hover {
    color: var(--gold) !important;
}

.footer-contact a svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ========================================
   CONTACT PAGE - NEW INFO CARDS DESIGN
   ======================================== */

.contact-info-section {
    padding: 3rem 0;
    background: var(--cream);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon.location-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #152a45 100%);
    color: var(--gold);
}

.contact-info-icon.hours-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--dark);
}

.contact-info-icon.response-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.contact-info-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.contact-info-body {
    padding-top: 0.5rem;
}

/* Location Card Specific */
.location-info-card .address-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.location-info-card .address-text strong {
    color: var(--dark);
    font-weight: 600;
}

.global-reach-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 500;
}

.global-reach-badge svg {
    flex-shrink: 0;
}

/* Hours Card Specific */
.hours-schedule {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.hours-row .time {
    font-size: 0.95rem;
    color: var(--teal);
    font-weight: 600;
}

.hours-row.closed .time {
    color: var(--text-light);
    font-weight: 400;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Response Time Card Specific */
.response-time-display {
    text-align: center;
    padding: 1rem 0;
}

.response-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.response-unit {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.response-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info-card {
        order: 1;
    }
    
    .hours-info-card {
        order: 2;
    }
    
    .response-info-card {
        order: 3;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .response-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   GEDS SPECIFIC - GOVERNANCE SECTION
   ======================================== */

.governance-section {
    padding: 4rem 0;
    background: var(--cream);
}

.governance-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.governance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.governance-badge svg {
    color: var(--gold);
}

.governance-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.governance-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.governance-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.governance-link:hover {
    gap: 0.75rem;
}

.governance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gov-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
}

.gov-feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .governance-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .governance-card {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   GEDS HOMEPAGE - ADDITIONAL STYLES
   ======================================== */

/* Pillar Features List */
.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pillar-features li::before {
    content: '✓';
    font-weight: bold;
    font-size: 0.85rem;
}

.pillar-card.trainers .pillar-features li::before {
    color: var(--crimson);
}

.pillar-card.coaches .pillar-features li::before {
    color: var(--gold-dark);
}

.pillar-card.consultants .pillar-features li::before {
    color: var(--azure);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    background: rgba(184, 35, 47, 0.1);
    color: var(--crimson);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accreditation Visual */
.accreditation-visual {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.qual-levels-display {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.level-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 100px;
}

.level-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.level-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.levels-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Specific Overrides for GEDS */
.hero h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Course Count Badge */
.course-count {
    display: inline-block;
    background: rgba(184, 35, 47, 0.1);
    color: var(--crimson);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Responsive Adjustments for GEDS Homepage */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .qual-levels-display {
        flex-wrap: wrap;
    }
    
    .level-box {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }
    
    .accreditation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
    
    .level-box {
        flex: 1;
        min-width: 70px;
    }
    
    .level-num {
        font-size: 1.5rem;
    }
}

/* ========================================
   GEDS HOMEPAGE - SECTORS & COACHING
   ======================================== */

/* Sectors Section */
.sectors-section {
    padding: 5rem 0;
    background: var(--white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.sector-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.sector-card:hover {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.sector-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.sector-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

/* Coaching Section */
.coaching-section {
    padding: 5rem 0;
    background: var(--cream);
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.coaching-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.coaching-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.coaching-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.coaching-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 0.5rem 0;
}

.coaching-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Certified Programmes Page */
.programme-intro {
    padding: 4rem 0;
    background: var(--cream);
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.programme-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.programme-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.programme-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.programme-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--crimson);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.programme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.programme-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.programme-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.programme-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.programme-features li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.programme-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.programme-levels {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.programme-levels span {
    background: var(--cream);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.programme-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--crimson);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.programme-cta:hover {
    gap: 10px;
}

/* Consulting Programmes */
.consulting-programmes {
    padding: 5rem 0;
    background: var(--cream);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.consulting-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.consulting-card:hover {
    border-color: var(--azure);
    box-shadow: var(--shadow-sm);
}

.consulting-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 0.75rem 0;
}

.consulting-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .coaching-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coaching-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO WITH STATS ON RIGHT
   ======================================== */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-stat-card {
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
}

/* ========================================
   ROLE PAGES STYLES
   ======================================== */

/* Role Header */
.role-header {
    padding: 6rem 0 4rem;
    position: relative;
}

.trainers-header {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
}

.coaches-header {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #9a7b2a 100%);
}

.consultants-header {
    background: linear-gradient(135deg, var(--azure) 0%, var(--navy) 100%);
}

.role-header .breadcrumb a,
.role-header .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.role-header-content {
    text-align: center;
    color: var(--white);
}

.role-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.role-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.role-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Role Overview */
.role-overview {
    padding: 5rem 0;
    background: var(--cream);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.overview-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.image-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.trainers-image {
    color: var(--crimson);
}

.coaches-image {
    color: var(--gold-dark);
}

.consultants-image {
    color: var(--azure);
}

/* Role Responsibilities */
.role-responsibilities {
    padding: 5rem 0;
    background: var(--white);
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.responsibility-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.responsibility-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.resp-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.responsibility-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.responsibility-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sector Specialisations */
.sector-specialisations {
    padding: 5rem 0;
    background: var(--cream);
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid var(--border);
}

.sector-dot {
    width: 8px;
    height: 8px;
    background: var(--crimson);
    border-radius: 50%;
}

.specialisation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.spec-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.spec-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* GEDS Offerings */
.geds-offerings {
    padding: 5rem 0;
    background: var(--white);
}

.offering-block {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.offering-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qual-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--gold);
}

.cert-icon {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
}

.cpd-icon {
    background: linear-gradient(135deg, var(--azure) 0%, var(--navy) 100%);
    color: var(--white);
}

.offering-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 0.25rem 0;
}

.offering-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.offering-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.offering-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item ul li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.offering-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--crimson);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.offering-link:hover {
    gap: 10px;
}

/* Responsive for Role Pages */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-image {
        display: none;
    }
    
    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialisation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offering-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }
    
    .specialisation-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .offering-header {
        flex-direction: column;
        text-align: center;
    }
}
