:root {
    --primary-color: #08223b; /* dark blue */
    --primary-hover: #0a2a4a;
    --primary-light: #1a3d5c;
    --primary-dark: #051829;
    --accent-color: #4a90e2; /* light blue */
    --accent-hover: #357abd;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(8, 34, 59, 0.1), 0 1px 2px 0 rgba(8, 34, 59, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(8, 34, 59, 0.1), 0 2px 4px -1px rgba(8, 34, 59, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(8, 34, 59, 0.1), 0 4px 6px -2px rgba(8, 34, 59, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(8, 34, 59, 0.1), 0 10px 10px -5px rgba(8, 34, 59, 0.04);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.text-primary {
    color: #08223b !important;
}
.bg-primary {
    background-color: #08223b !important;
}
.bg-primary-light {
    background-color: var(--primary-light) !important;
}
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}
.text-primary {
    color: var(--primary-color);
}
.logo-container {
    background-color: var(--primary-color);
    border-radius: 1rem;
    padding: 0.5rem;
    width: 100%;
}
/* === Home Page === */
.header-section-primary h1 {
    color: #fff;
    position: relative;
    display: inline-block; /* so the underline fits the text width */
}

    .header-section-primary h1::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px; /* space between text and underline */
        width: 40px; /* small underline length */
        height: 3px;
        background-color: #4a90e2;
    }

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* Left Content Section */
.hero-section {
    padding: 60px 0;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}
.hero-primary {
    background-color: var(--primary-color);
}
.hero-primary .hero-title, .hero-subtitle {
    color: white;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 2rem 0 2.5rem 0;
    max-width: 480px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.6s ease;
}

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
        font-weight: 500;
        letter-spacing: -0.02em;
    }
        .section-header h2::after {
            content: "";
            position: relative;
            bottom: -6px; /* space between text and underline */
            width: 40px; /* small underline length */
            height: 3px;
            background-color: white;
        }
    .section-header p {
        font-size: 1.25rem;
        color: var(--text-body);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
.header-primary h2 {
    color: var(--primary-color);
}
    .header-primary h2::after {
    }
.header-secondary h2 {
    color: white;
}

    .header-secondary h2::after {
        background-color: var(--accent-color);
    }
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--primary-dark);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    min-height: 280px;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--accent-color);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

/* Service Content Area */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
}

/* Service Features - Now Horizontal */
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .service-features li {
        padding: 0.5rem 1rem;
        color: var(--text-dark);
        font-size: 0.9rem;
        background: var(--bg-light);
        border-radius: 20px;
        border: 1px solid var(--border-color);
        transition: var(--transition-base);
        white-space: nowrap;
    }

        .service-features li:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

/* Service CTA Area */
.service-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 250px;
    flex-shrink: 0;
}

/* Service Icon (Optional - if you want to add icons) */
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

/* Responsive Design for Horizontal Layout */
@media (max-width: 1200px) {
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .service-cta {
        min-width: auto;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .service-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

        .service-card h2 {
            font-size: 1.75rem;
        }

        .service-card h3 {
            font-size: 1.35rem;
        }

    .service-features {
        flex-direction: column;
        gap: 0.75rem;
    }

        .service-features li {
            text-align: center;
        }

    .service-cta {
        align-items: stretch;
    }

        .service-cta .btn {
            width: 100%;
        }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }

        .service-card h2 {
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
        }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

    .features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-base);
    position: relative;
}

    .feature-item:hover {
        background: var(--primary-hover);
        transform: translateY(-5px);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}


.feature-item h4 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

    .cta-content h2 {
        font-size: 3rem;
        margin-bottom: 1.25rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .cta-content p {
        font-size: 1.35rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 300px;
        height: 300px;
    }

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

    .btn-primary-gradient:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    }
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        background-color: var(--primary-hover);
    }
.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: var(--shadow-md);
}

    .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    position: relative;
}

    .btn-outline:hover {
        color: white;
        border-color: var(--primary-color);
        background: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.hero-section .btn-outline,
.cta-section .btn-outline {
    border-color: white;
    color: white;
}

    .hero-section .btn-outline:hover,
    .cta-section .btn-outline:hover {
        background: white;
        color: var(--primary-color);
        border-color: white;
    }

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 10px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-section {
        width: 100%;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content > div {
        margin-left: 0 !important;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        margin: 1.5rem auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

        .service-card h3 {
            font-size: 1.5rem;
        }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.15rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .service-cta {
        align-items: stretch;
    }

    .services-section,
    .features-section,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .container {
        padding: 0 16px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-grid,
    .features-grid {
        gap: 1.5rem;
    }
}

/* === Layout === */




/* Main Content Area */
.main-content {
    flex: 1;
    padding: 0;
}

/* Enhanced Footer */
.footer-custom {
    background: var(--primary-color);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-section h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--accent-color);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

        .footer-links a::before {
            content: '';
            margin-right: 0.5rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .footer-bottom a {
        color: var(--accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

/* Contact Info Styles */
.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

    .contact-info strong {
        color: #ffffff;
        display: block;
        margin-top: 0.5rem;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeInUp 0.6s ease forwards;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Enhanced Navbar Styles */
.navbar-custom {
    background: var(--primary-color);
    box-shadow: 0 2px 20px rgba(8, 34, 59, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border: none;
}

    .navbar-custom.scrolled {
        padding: 0.75rem 0;
        box-shadow: 0 4px 30px rgba(8, 34, 59, 0.12);
    }

.navbar-brand-custom {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-link-custom {
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .nav-link-custom::before {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }

    .nav-link-custom:hover {
        background: rgba(8, 34, 59, 0.05);
        color: lightgray !important;
    }

        .nav-link-custom:hover::before {
            width: calc(100% - 2rem);
        }

    .nav-link-custom.active {
        background: var(--primary-color);
        color: #ffffff !important;
    }

/* Dropdown Menu Styles */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(8, 34, 59, 0.15);
    padding: 0.75rem;
    margin-top: 0.5rem;
    min-width: 280px;
    animation: dropdownFadeIn 0.3s ease;
    overflow: hidden;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    margin: 0.25rem 0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .dropdown-item-custom::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .dropdown-item-custom:hover {
        background: rgba(8, 34, 59, 0.05);
        transform: translateX(5px);
    }

        .dropdown-item-custom:hover::before {
            transform: scaleY(1);
        }

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.dropdown-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.3;
}

.dropdown-item-custom:hover .dropdown-title {
    color: var(--accent-color);
}

/* Mobile Menu Button */
.navbar-toggler-custom {
    border: 2px solid var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .navbar-toggler-custom:hover {
        background: var(--primary-color);
    }

        .navbar-toggler-custom:hover .navbar-toggler-icon-custom {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.navbar-toggler-icon-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(8, 34, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Clean Three-Column About Us Section */
.about-us-section {
    padding: 100px 0;
    position: relative;
}

    .about-us-section.bg-primary {
        background: var(--primary-color);
    }

/* Header Styles */
.header-secondary {
    text-align: center;
    margin-bottom: 4rem;
}

    .header-secondary h2 {
        color: white;
       
    }
    .header-secondary p
    {
        color: white;
    }
    /* Three Column Grid */
    .story-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        width: 100%;
        margin: 0 auto;
        padding: 80px;
    }

.story-column {
    padding: 0.5rem;
}

    .story-column h3 {
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 0.75rem;
    }

    .story-column p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
    }

        .story-column p:last-child {
            margin-bottom: 0;
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }

    .header-secondary h2 {
        font-size: 2.5rem;
    }

    .story-grid {
        gap: 2rem;
    }

    .story-column {
        padding: 2rem;
    }

        .story-column h3 {
            font-size: 1.35rem;
        }

        .story-column p {
            font-size: 0.95rem;
        }
}

@media (max-width: 480px) {
    .story-column {
        padding: 1.5rem;
    }

    .header-secondary h2 {
        font-size: 2rem;
    }

    .story-column h3 {
        font-size: 1.25rem;
    }
}