/* Apply border-box globally to prevent padding from causing spillovers */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Base HTML and Body Styles */
html {
    background-color: #e0e0e0;
}

body {
    margin: 0 15%;
    padding: 0;
    font-family: Verdana, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container for the banner */
.banner-container {
    width: 100%;
    overflow: hidden;
}

/* The Banner Image */
.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* General Content Styling */
.content {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.content h1 {
    font-size: 1.2rem;
    text-align: center;
}

/* Interior Pages Layout (thanks.php, supplier.php) */
.content-centered {
    padding: 40px 20px;
    text-align: center;
}

.content-centered h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.content-centered p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Return Home Button */
.btn-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-home:hover {
    background-color: #555;
}

/* Registration Section Styles */
.registration-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    background-image: url('SASS_KZN.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.registration-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fe0000;
}

.registration-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-request {
    padding: 10px 20px;
    background-color: #fe0000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-request:hover {
    background-color: #1a47a4;
}

.form-input {
    padding: 10px;
    border: 1px solid #ccc;
}

/* Sponsor Carousel Styles */
.sponsor-section {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
}

.sponsor-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.carousel-track img {
    height: 80px;
    width: auto;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partner Carousel Styles */
.partner-carousel-container {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-top: 40px;
}

.partner-carousel-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: partner-scroll 40s linear infinite;
}

.partner-carousel-track:hover {
    animation-play-state: paused;
}

.partner-carousel-track img {
    height: 80px; /* Maintain a consistent height */
    width: 160px; /* Set a fixed width for uniform sizing */
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-carousel-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer-red {
    color: red;
}

/* Supplier Form Styles */
.supplier-form-box {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f9;
}

.form-error-box {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.form-error-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.form-error-box ul {
    margin: 0;
    padding-left: 20px;
}

.supplier-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.supplier-form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #193b82;
    font-size: 0.95rem;
}

.supplier-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.supplier-form-control:focus {
    border-color: #193b82;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(25, 59, 130, 0.1);
}

.supplier-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.supplier-form-col {
    flex: 1;
    min-width: 250px;
}

/* =========================================
   Supplier Page Specific Styles
   ========================================= */

.supplier-main {
    width: 100%;
    background-color: #f4f6fa;
}

/* Hero Section */
.supplier-hero {
    background: linear-gradient(rgba(25, 59, 130, 0.85), rgba(25, 59, 130, 0.85)), url('SASS_KZN.jpg') center/cover;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px 100px 20px;
}

.supplier-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.supplier-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: #193b82;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #122a5e;
    color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #193b82;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    color: #193b82;
    border-color: #193b82;
}

.btn-outline:hover {
    background-color: rgba(25, 59, 130, 0.05);
}

/* General Section Styles */
.supplier-section {
    padding: 30px 20px;
    color: #333;
}

.bg-light {
    background-color: #f4f6fa;
}

.bg-white {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    color: #193b82;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Why Matters Grid */
.why-matters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #eef2f9;
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #193b82;
}

.info-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Opportunities Grid */
.opportunities-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.opp-col-left {
    flex: 1;
    min-width: 300px;
}

.opp-col-right {
    flex: 2;
    min-width: 350px;
}

.opp-title {
    color: #193b82;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.opp-subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
}

.tier-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.tier-tag {
    flex: 1;
    text-align: center;
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tier-tag:hover {
    background-color: #193b82;
    color: #ffffff;
    border-color: #193b82;
}

.link-download {
    display: inline-block;
    margin-top: 15px;
    color: #193b82;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.link-download:hover {
    text-decoration: underline;
}

.sponsor-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sponsor-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

.sponsor-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sponsor-card-icon {
    font-size: 2rem;
    color: #193b82;
}

.sponsor-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.sponsor-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sponsor-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.sponsor-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

/* CTA Banner */
.cta-banner-wrapper {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.cta-banner-col {
    flex: 1;
    min-width: 300px;
}

.cta-banner-col h2 {
    font-size: 1.6rem;
    color: #193b82;
    margin-bottom: 10px;
}

.cta-banner-col p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    min-height: 45px;
}

/* Important Information Section */
.important-info-section {
    background-color: #f4f6fa;
    padding: 30px 20px;
    text-align: center;
}

.important-info-section h2 {
    color: #193b82;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.important-info-section > p {
    margin-bottom: 40px;
    color: #555;
    font-size: 1.1rem;
}

.info-lists-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.info-list {
    flex: 1;
    min-width: 300px;
}

.info-list ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

/* =========================================
   Grant Page Specific Styles
   ========================================= */

.grant-highlight {
    background: linear-gradient(90deg, #c4a052 0%, #e8d08b 50%, #c4a052 100%);
    color: #1a2a44;
    display: inline-block;
    padding: 15px 80px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.grant-container {
    max-width: 1100px;
    margin: -80px auto 60px auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
}

.grant-how-it-works {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grant-how-it-works h2 {
    color: #193b82;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.grant-how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background-color: #e0e4f0;
}

.grant-how-it-works p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

.grant-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #193b82;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.grant-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
}

.grant-section-header {
    display: flex;
    align-items: center;
    color: #193b82;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    white-space: nowrap;
}

.grant-section-header::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #cbd5e1;
    margin-left: 20px;
}

.check-list, .cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li, .cross-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
}

.check-list li::before {
    content: '✔';
    color: #2e7d32;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.cross-list li::before {
    content: '❌';
    color: #c62828;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.grant-covers-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.grant-covers, .grant-not-covers {
    flex: 1;
    padding: 35px 30px;
}

.grant-covers {
    border-right: 1px solid #eef2f9;
}

.covers-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #111;
}

.icon-circle-check {
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; justify-content: center; align-items: center;
    font-size: 0.9rem;
}

.icon-circle-cross {
    background: #e53935;
    color: white;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; justify-content: center; align-items: center;
    font-size: 0.9rem;
}

.grant-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.grant-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f4f8;
    padding: 10px 20px;
    border-radius: 50px;
    color: #193b82;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.icon-circle-blue {
    background: #193b82;
    color: white;
    border-radius: 50%;
    width: 24px; height: 24px;
    display: flex; justify-content: center; align-items: center;
    font-size: 0.8rem;
}

.grant-compliance-note {
    color: #193b82;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 15px;
}

.grant-support-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.grant-support-box h3 {
    color: #193b82;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.grant-support-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-grant-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #193b82;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-grant-download:hover {
    background: #122a5e;
}

.grant-bottom-cta {
    text-align: center;
}

.grant-bottom-cta h2 {
    color: #193b82;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.grant-bottom-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.grant-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #193b82;
    font-weight: 600;
    margin-bottom: 40px;
}

.grant-footer-logos {
    border-top: 1px solid #e0e4f0;
    padding-top: 30px;
    max-width: 800px;
    margin: 0 auto;
    color: #193b82;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.grant-footer-note {
    font-weight: normal;
    color: #777;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* Grant Page Responsiveness */
@media (max-width: 900px) {
    .grant-grid-3, 
    .grant-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grant-covers-wrapper {
        flex-direction: column;
    }
    
    .grant-covers {
        border-right: none;
        border-bottom: 1px solid #eef2f9;
    }
    
    .grant-highlight {
        padding: 15px 30px;
    }
}

/* =========================================
   Homepage Specific Styles (index.php)
   ========================================= */

/* Reset body for the homepage to allow edge-to-edge layouts */
body.home-body {
    margin: 0;
    padding: 0;
    background-color: #f4f6fa;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header / Nav */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #193b82;
}

.home-logo img {
    height: 45px;
}

.home-logo-text {
    line-height: 1.2;
}

.home-logo-text strong {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.home-logo-text span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #555;
}

.main-nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
}

.main-nav a:hover, .main-nav a.active {
    color: #193b82;
}

/* Home Hero */
.home-hero {
    background: url('SASS_KZN.jpg') center right / cover no-repeat;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 40px solid #f4f6fa;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #e4edf8 0%, #e4edf8 45%, rgba(228, 237, 248, 0) 100%);
}

.home-hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-text {
    flex: 1;
    padding-right: 50px;
    max-width: 800px;
}

.home-hero-title {
    font-size: 2.8rem;
    color: #193b82;
    margin-bottom: 10px;
    font-weight: 700;
}

.home-hero-subtitle {
    font-size: 1.8rem;
    color: #333;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.home-hero-subtitle strong {
    color: #193b82;
    font-weight: bold;
}

.home-hero-meta {
    font-size: 1.1rem;
    color: #111;
    font-weight: bold;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-home-primary {
    background: #193b82;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-home-outline {
    background: #fff;
    color: #333;
    border: 1px solid #cbd5e1;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Collab Section */
.home-collab {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
}

.collab-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.collab-inner h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: normal;
    margin: 0;
}

.collab-inner img {
    height: 45px;
    object-fit: contain;
}

/* 2 Column Grids */
.home-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.home-section-title {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
}

/* Accordion / Cards */
.home-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 15px;
}

.home-card h3 {
    color: #193b82;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-card ul.bullet-list {
    padding-left: 20px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style-type: disc;
    margin: 0;
}

.home-card ul.bullet-list li {
    margin-bottom: 8px;
}

/* Homepage Responsiveness */
@media (max-width: 900px) {
    .home-grid-2 {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none; /* Simple hide for now, can be replaced with a burger menu */
    }
    .home-hero-text {
        padding-right: 0;
    }
}

/* =========================================
   Homepage Specific Styles (index.php)
   ========================================= */

/* Reset body for the homepage to allow edge-to-edge layouts */
body.home-body {
    margin: 0;
    padding: 0;
    background-color: #f4f6fa;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header / Nav */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #193b82;
}

.home-logo img {
    height: 45px;
}

.home-logo-text {
    line-height: 1.2;
}

.home-logo-text strong {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.home-logo-text span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #555;
}

.main-nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
}

.main-nav a:hover, .main-nav a.active {
    color: #193b82;
}

/* Home Hero */
.home-hero {
    background: url('SASS_KZN.jpg') center right / cover no-repeat;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 40px solid #f4f6fa;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #e4edf8 0%, #e4edf8 45%, rgba(228, 237, 248, 0) 100%);
}

.home-hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-text {
    flex: 1;
    padding-right: 50px;
    max-width: 800px;
}

.home-hero-title {
    font-size: 2.8rem;
    color: #193b82;
    margin-bottom: 10px;
    font-weight: 700;
}

.home-hero-subtitle {
    font-size: 1.8rem;
    color: #333;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.home-hero-subtitle strong {
    color: #193b82;
    font-weight: bold;
}

.home-hero-meta {
    font-size: 1.1rem;
    color: #111;
    font-weight: bold;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-home-primary {
    background: #193b82;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-home-outline {
    background: #fff;
    color: #333;
    border: 1px solid #cbd5e1;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Collab Section */
.home-collab {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
}

.collab-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.collab-inner h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: normal;
    margin: 0;
}

.collab-inner img {
    height: 45px;
    object-fit: contain;
}

/* 2 Column Grids */
.home-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.home-section-title {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
}

/* Accordion / Cards */
.home-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 15px;
}

.home-card h3 {
    color: #193b82;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-card ul.bullet-list {
    padding-left: 20px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style-type: disc;
    margin: 0;
}

.home-card ul.bullet-list li {
    margin-bottom: 8px;
}

/* Homepage Responsiveness */
@media (max-width: 900px) {
    .home-grid-2 {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none; /* Simple hide for now, can be replaced with a burger menu */
    }
    .home-hero-text {
        padding-right: 0;
    }
}

/* =========================================
   Homepage Specific Styles (index.php)
   ========================================= */

/* Reset body for the homepage to allow edge-to-edge layouts */
body.home-body {
    margin: 0;
    padding: 0;
    background-color: #f4f6fa;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header / Nav */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #193b82;
}

.home-logo img {
    height: 45px;
}

.home-logo-text {
    line-height: 1.2;
}

.home-logo-text strong {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.home-logo-text span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #555;
}

.main-nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
}

.main-nav a:hover, .main-nav a.active {
    color: #193b82;
}

/* Home Hero */
.home-hero {
    background: url('SASS_KZN.jpg') center right / cover no-repeat;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 40px solid #f4f6fa;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #e4edf8 0%, #e4edf8 45%, rgba(228, 237, 248, 0) 100%);
}

.home-hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-text {
    flex: 1;
    padding-right: 50px;
    max-width: 800px;
}

.home-hero-title {
    font-size: 2.8rem;
    color: #193b82;
    margin-bottom: 10px;
    font-weight: 700;
}

.home-hero-subtitle {
    font-size: 1.8rem;
    color: #333;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.home-hero-subtitle strong {
    color: #193b82;
    font-weight: bold;
}

.home-hero-meta {
    font-size: 1.1rem;
    color: #111;
    font-weight: bold;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-home-primary {
    background: #193b82;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-home-outline {
    background: #fff;
    color: #333;
    border: 1px solid #cbd5e1;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Collab Section */
.home-collab {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
}

.collab-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.collab-inner h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: normal;
    margin: 0;
}

.collab-inner img {
    height: 45px;
    object-fit: contain;
}

/* 2 Column Grids */
.home-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.home-section-title {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 25px;
}

/* Accordion / Cards */
.home-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 15px;
}

.home-card h3 {
    color: #193b82;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-card ul.bullet-list {
    padding-left: 20px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    list-style-type: disc;
    margin: 0;
}

.home-card ul.bullet-list li {
    margin-bottom: 8px;
}

/* =========================================
   Delegate Registration Page Specific Styles
   ========================================= */

.delegate-hero {
    background: url('Delegate_Registration_Banner.png') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 20px;
}

.delegate-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.delegate-hero-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.delegate-hero-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: #e0e4f0;
}

.delegate-hero-inner p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.5;
}

/* Stats Bar */
.delegate-stats-bar {
    background: #fff;
    max-width: 1200px;
    margin: -30px auto 30px;
    border-radius: 8px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.delegate-stat {
    flex: 1;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.delegate-stat:not(:last-child) {
    border-right: 1px solid #eef2f9;
}

.delegate-stat-icon {
    font-size: 1.8rem;
    color: #193b82;
    background: #eaf2fb;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}

.delegate-stat-text strong {
    display: block;
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.delegate-stat-text span {
    color: #555;
    font-size: 0.95rem;
}

/* Info Grid */
.delegate-info-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.delegate-info-card {
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.delegate-info-icon {
    font-size: 3rem;
    line-height: 1;
}

.delegate-info-card.blue {
    background-color: #f0f4f8;
}

.delegate-info-card.green {
    background-color: #ebf7ed;
}

.delegate-info-card h3 {
    color: #193b82;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.delegate-info-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.delegate-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delegate-info-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.delegate-info-card ul li::before {
    content: '✔';
    color: #2e7d32;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Form Layout */
.delegate-main-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.delegate-intro-text {
    margin-bottom: 30px;
    color: #444;
    font-size: 1.05rem;
}

.delegate-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 20px;
}

.delegate-form-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Sections */
.reg-section {
    background: #fff;
    border: 1px solid #e0e4f0;
    border-radius: 8px;
    padding: 25px;
}

.reg-section .supplier-form-label {
    color: #333;
    font-size: 0.85rem;
}

.reg-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #111;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #eef2f9;
    padding-bottom: 15px;
}

.step-num {
    background: #193b82;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.reg-optional {
    color: #888;
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Attendance Cards */
.attendance-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.attendance-card {
    cursor: pointer;
}

.attendance-card input {
    display: none;
}

.att-card-inner {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.attendance-card input:checked + .att-card-inner {
    border-color: #193b82;
    background: #eaf2fb;
    box-shadow: 0 0 0 2px rgba(25, 59, 130, 0.2);
}

.att-icon {
    font-size: 1.8rem;
    color: #193b82;
    margin-bottom: 10px;
}

.att-title {
    display: block;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.att-date {
    color: #666;
    font-size: 0.8rem;
}

/* Custom Checkboxes */
.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}

.custom-check input {
    margin-top: 3px;
}

/* Sidebar Cards */
.reg-sidebar-card {
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.reg-sidebar-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.reg-sidebar-content {
    flex: 1;
}

.reg-sidebar-card.pale-orange {
    background: #fff9f0;
    border: 1px solid #ffedd5;
}

.reg-sidebar-card.pale-blue {
    background: #f0f6ff;
    border: 1px solid #dbeafe;
}

.reg-sidebar-card.pale-green {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
}

.sidebar-card-title {
    font-weight: bold;
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.reg-sidebar-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

.sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #193b82;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .delegate-form-grid {
        grid-template-columns: 1fr;
    }
    .delegate-info-grid {
        grid-template-columns: 1fr;
    }
    .delegate-stats-bar {
        flex-direction: column;
    }
    .delegate-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eef2f9;
    }
}

/* =========================================
   Early Bird Packages Section Styles
   ========================================= */

.early-bird-packages-section {
    padding: 60px 0;
    background-color: #f4f6fa; /* Light background to differentiate */
    text-align: center;
}

.early-bird-packages-section .section-title {
    color: #193b82;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.package-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: left;
    border: 1px solid #e0e4f0;
    display: flex;
    flex-direction: column;
}

.package-card .package-title {
    font-size: 1.6rem;
    color: #193b82;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.package-card .package-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2e7d32; /* Green for price */
    margin-bottom: 5px;
}

.package-card .package-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.package-card .package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Make list take available space */
}

.package-card .package-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.package-card .package-features li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    color: #2e7d32;
}

/* Responsive adjustments for packages */
@media (max-width: 768px) {
    .package-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Program Page Specific Styles
   ========================================= */
.program-hero {
    background: url('SASS_Scientific_Committee_Banner.png') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 20px 100px;
    border-bottom-left-radius: 50% 30px;
    border-bottom-right-radius: 50% 30px;
    margin-bottom: 40px;
}
.program-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.program-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.program-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #e0eaf5;
}
.program-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.program-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #193b82;
    font-weight: bold;
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0 20px;
}
.program-intro p {
    margin-bottom: 15px;
    font-weight: normal;
    color: #444;
}
.program-intro p:first-child {
    font-weight: bold;
    color: #193b82;
}

.program-highlights-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}
.program-highlights-header h2 {
    color: #193b82;
    font-size: 2.2rem;
    margin: 0;
}
.program-highlights-header p {
    color: #193b82;
    font-size: 1rem;
    max-width: 400px;
    margin: 0;
    text-align: left;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.program-card {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
}
.program-card.green { background-color: #f0fdf4; border-top: 5px solid #2e7d32; }
.program-card.blue { background-color: #f0f6ff; border-top: 5px solid #193b82; }
.program-card.orange { background-color: #fff9f0; border-top: 5px solid #f59e0b; }
.program-card.purple { background-color: #f5f3ff; border-top: 5px solid #7c3aed; }

.program-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    background-color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.program-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    min-height: 45px;
}
.program-card.green h3 { color: #2e7d32; }
.program-card.blue h3 { color: #193b82; }
.program-card.orange h3 { color: #d97706; }
.program-card.purple h3 { color: #6d28d9; }

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.program-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
}
.program-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #888;
}

.program-digital-banner {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.program-digital-banner h3 {
    color: #193b82;
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.program-digital-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

.program-who-attend {
    background-color: #f8fafc;
    padding: 50px 20px;
    text-align: center;
}
.program-who-attend-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.program-who-attend-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.program-who-attend-header h2 {
    color: #193b82;
    margin: 0;
    font-size: 1.8rem;
}
.program-who-attend-header p {
    margin: 0;
    color: #444;
    text-align: left;
    max-width: 500px;
    font-size: 0.95rem;
}

.program-who-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.program-who-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}
.program-who-item-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.program-who-item-icon.green { color: #2e7d32; border: 2px solid #2e7d32; }
.program-who-item-icon.blue { color: #193b82; border: 2px solid #193b82; }
.program-who-item-icon.orange { color: #d97706; border: 2px solid #d97706; }
.program-who-item-icon.purple { color: #6d28d9; border: 2px solid #6d28d9; }
.program-who-item p {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.program-footer-banner {
    background-color: #122a5e;
    color: white;
    max-width: 1200px;
    margin: -30px auto 40px;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.program-footer-banner-left {
    flex: 1.5;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 40px;
}
.program-footer-banner-left .icon {
    font-size: 3rem;
    line-height: 1;
}
.program-footer-banner-left h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}
.program-footer-banner-left p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0eaf5;
}
.program-footer-banner-right {
    flex: 1;
}
.program-footer-banner-right p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
}

.program-bottom-text {
    text-align: center;
    color: #193b82;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .program-highlights-header, .program-who-attend-header {
        flex-direction: column;
        text-align: center;
    }
    .program-highlights-header p, .program-who-attend-header p {
        text-align: center;
    }
    .program-footer-banner {
        flex-direction: column;
    }
    .program-footer-banner-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-right: 0;
        padding-bottom: 30px;
    }
    .program-digital-banner {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Contact Us Page Specific Styles
   ========================================= */

.contact-hero {
    background: url('SASS_Scientific_Committee_Banner.png') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 20px 100px;
    border-bottom-left-radius: 50% 30px;
    border-bottom-right-radius: 50% 30px;
    margin-bottom: 40px;
}

.contact-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #e0eaf5;
}

.contact-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-col h3, .contact-form-col h3 {
    color: #193b82;
    font-size: 1.6rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info-card {
    background: #f4f6fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-method-icon {
    background: #e0eaf5;
    color: #193b82;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-method-text strong {
    display: block;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 3px;
}

.contact-method-text a {
    color: #193b82;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.whatsapp-btn:hover { background: #20bd5a; color: white; }
.whatsapp-btn-icon { font-size: 1.8rem; line-height: 1; }
.whatsapp-btn-text strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.whatsapp-btn-text span { font-size: 0.85rem; opacity: 0.9; font-weight: normal; }

.contact-response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #193b82;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
}

.contact-form-col p { color: #444; margin-bottom: 25px; font-size: 1.05rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form-col .supplier-form-control { background: #fff; padding: 15px; border-radius: 6px; }
.contact-form-col textarea.supplier-form-control { min-height: 150px; resize: vertical; margin-bottom: 10px; }

.support-journey-banner { background: #f0f6ff; border-radius: 12px; padding: 30px; display: flex; align-items: center; gap: 25px; margin-bottom: 40px; }
.support-journey-icon { font-size: 3.5rem; color: #193b82; line-height: 1; }
.support-journey-banner h4 { color: #193b82; margin: 0 0 5px; font-size: 1.25rem; white-space: nowrap; }
.support-journey-banner p { color: #444; margin: 0; font-size: 1rem; line-height: 1.5; }

.contact-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.map-card { background: #f4f6fa; border-radius: 12px; padding: 40px 30px; display: flex; align-items: center; gap: 30px; }
.map-card-graphic { width: 120px; height: 120px; background: #e8f5e9; border-radius: 50%; position: relative; display: flex; justify-content: center; align-items: center; font-size: 4rem; }
.map-card-graphic .pin { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); font-size: 1.8rem; color: #2e7d32; text-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.map-card-content h4 { color: #2e7d32; font-size: 1.3rem; margin-bottom: 15px; margin-top: 0; }
.map-card-content p { color: #444; font-size: 0.95rem; line-height: 1.6; margin: 0; }

.faq-card { background: #f4f6fa; border-radius: 12px; padding: 30px; }
.faq-card h4 { color: #193b82; font-size: 1.3rem; margin-top: 0; margin-bottom: 20px; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 15px 20px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; color: #111; font-weight: 600; font-size: 0.95rem; cursor: pointer; }
.faq-item::after { content: '⌄'; color: #193b82; font-weight: bold; font-size: 1.2rem; }
.faq-footer { margin-top: 15px; font-size: 0.9rem; color: #444; }
.faq-footer a { color: #193b82; font-weight: bold; text-decoration: none; }

.contact-footer-banner { background: #122a5e; color: white; border-radius: 12px; padding: 40px; display: flex; justify-content: space-between; align-items: center; }
.contact-footer-banner-text h3 { font-size: 1.5rem; margin-top: 0; margin-bottom: 10px; }
.contact-footer-banner-text p { font-size: 1rem; color: #e0eaf5; margin: 0; }
.contact-footer-banner-logo { display: flex; align-items: center; gap: 15px; }
.contact-footer-banner-logo img { height: 50px; filter: brightness(0) invert(1); }
.contact-footer-banner-logo span { font-size: 1.5rem; font-weight: bold; letter-spacing: 1px; line-height: 1.1; }
.contact-footer-banner-logo span small { display: block; font-size: 0.6rem; letter-spacing: 0; font-weight: normal; margin-top: 3px; }

.btn-send {
    background: #193b82;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}
.btn-send:hover { background: #122a5e; }

@media (max-width: 992px) {
    .contact-grid, .contact-bottom-grid { grid-template-columns: 1fr; }
    .support-journey-banner { flex-direction: column; text-align: center; }
    .contact-footer-banner { flex-direction: column; text-align: center; gap: 30px; }
    .contact-form-row { grid-template-columns: 1fr; }
    .map-card { flex-direction: column; text-align: center; }
}