* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
            color: #333;
        }
        
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        .dropdown-menu {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-height: 500px;
            z-index: 1001;
        }

        .dropdown-item {
            color: #333;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: #86BC25 ;
            color: white;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
        .btn-get-started:hover {
    background: #86BC25;
}


        .hero {
            padding: 5rem 2rem 6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-color: #F7F7F8;
            width: 100%;
            margin-top: 7rem;
        }
        
        .hero-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 88px;
            height: 88px;
            border-radius: 24px;
            background: linear-gradient(135deg, #e8f5d0 0%, #cfe8a0 100%);
            box-shadow: 0 8px 28px rgba(134, 188, 37, 0.22);
            margin: 0 auto 1.5rem;
        }

        .hero-doc-icon {
            font-size: 2.6rem;
            color: #86BC25;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero h1 .gradient-text {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .value-badge {
            display: inline-block;
            background: #86BC25;
            color: #fff;
            padding: 0.45rem 1.4rem;
            border-radius: 999px;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        
        .gradient-text {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .resource-section {
            padding: 2rem 2rem 5rem;
            background-color: #F7F7F8;
            position: relative;
        }

        .resource-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .resource-layer {
            margin-bottom: 2rem;
        }

        .layer-header {
            margin-bottom: 4rem;
            text-align: center;
        }

        .resource-layer:first-child .layer-header {
            margin-bottom: 2rem;
        }

        .layer-tag {
            display: inline-block;
            background: linear-gradient(135deg, #86BC25 0%, #86BC25 100%);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .resource-layer:nth-child(1) .layer-tag {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .resource-layer:nth-child(2) .layer-tag {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .resource-layer:nth-child(2) .layer-header {
            margin-bottom: 2rem;
        }

        .resource-layer:nth-child(2) .resource-grid {
            margin-bottom: 2rem;
        }

        .layer-title {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .layer-subtitle {
            font-size: 1rem;
            color: #555;
            font-weight: 500;
            line-height: 1.8;
        }

        .tech-doc-container {
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 2.5rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .knowledge-path-container {
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 2.5rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.75rem;
            margin-bottom: 3rem;
        }

        .resource-layer:first-child .resource-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .resource-card {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 1.75rem;
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .resource-layer:first-child .resource-card {
            padding: 1.25rem;
        }

        .resource-card:hover {
            background: white;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
            border-color: rgba(0, 0, 0, 0.08);
        }

        .resource-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 0.5rem;
        }

        .resource-subtitle {
            color: #86BC25;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

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

        .resource-features li {
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
            padding-left: 1.25rem;
            position: relative;
            line-height: 1.5;
        }

        .resource-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #86BC25;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .timeline-section {
            padding: 2rem 2rem 2rem;
            background: linear-gradient(135deg, #F7F7F8 0%, #F7F7F8 100%);
            position: relative;
        }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .timeline-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .timeline-header p {
            color: #555;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

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

        .timeline-item {
            text-align: center;
            padding: 1rem;
            min-width: 0;
        }

        .timeline-step {
            font-size: 3rem;
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 1rem;
        }

        .timeline-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .timeline-delivery {
            background: #86BC25;
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-top: 2rem;
        }
         .timeline-delivery1{
            background:#86BC25;
            color: #000;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-top: 0.5rem;

         }
        .why-choose-section {
            padding: 2rem 2rem 5rem;
            background-color: #F7F7F8;
            position: relative;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .why-choose-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .why-choose-header p {
            color: #555;
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #555;
            font-weight: 500;
        }

        .cta-section {
            padding: 5rem 2rem;
            background-color:#86BC25;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: black;
        }

        .cta-section p {
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.8;
            color: black;
        }

        .cta-button {
            background: #1a1a1a;
            color: #86BC25;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: #111313;
            border-top: 1px solid #e5e7eb;
            padding: 3rem 0;
        }

        footer h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #000;
        }

        footer a {
            color: #666;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        footer a:hover {
            color: #86BC25 !important;
        }

        footer .text-muted {
            color: #666 !important;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }

        .theme-toggle svg {
            width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px #0003;
            z-index: 999;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #ccc;
        }

        body.dark-mode .navbar {
            background-color: #2a2a2a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        body.dark-mode .navbar-nav .nav-link {
            color: #ccc !important;
        }

        body.dark-mode .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        body.dark-mode .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }

        body.dark-mode .dropdown-menu {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .dropdown-item {
            color: #ccc;
        }

        body.dark-mode .dropdown-item:hover {
            background-color: #333;
            color: #86BC25;
        }

        body.dark-mode .hero {
            background-color: #1a1a1a;
        }

        body.dark-mode .hero h1 {
            color: #fff;
        }

        body.dark-mode .hero p {
            color: #aaa;
        }

        body.dark-mode .gradient-text {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .layer-title {
            color: #fff;
        }

        body.dark-mode .layer-subtitle {
            color: #aaa;
        }

        body.dark-mode .resource-card {
            background: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .resource-card:hover {
            background: #333;
            border-color: #555;
        }

        body.dark-mode .resource-card h3 {
            color: #86BC25;
        }

        body.dark-mode .resource-card p {
            color: #aaa;
        }

        body.dark-mode .tech-doc-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .knowledge-path-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .why-choose-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .why-choose-header h2 {
            color: #fff;
        }

        body.dark-mode .why-choose-header p {
            color: #aaa;
        }

        body.dark-mode .theme-toggle svg {
            stroke: #fff;
        }

        body.dark-mode .cta-button {
            background: #1a1a1a;
            color: #86BC25;
        }

        body.dark-mode .cta-button:hover {
            background: #2a2a2a;
        }

        body.dark-mode footer,
        body.dark-mode footer.bg-light {
            background-color: #1a1a1a !important;
            border-top: 1px solid #333;
        }

        body.dark-mode footer h6 {
            color: #ffffff !important;
        }

        body.dark-mode footer a {
            color: #b0b0b0 !important;
        }

        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }

        body.dark-mode footer .text-muted {
            color: #888 !important;
        }

        body.dark-mode footer .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode footer hr {
            border-color: #333 !important;
        }

        body.dark-mode footer svg {
            stroke: #b0b0b0;
        }

        body.dark-mode footer a:hover svg {
            stroke: #4a9eff;
        }

        body.dark-mode .text-muted {
            color: #999 !important;
        }

        body.dark-mode .resource-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .resource-subtitle {
            color: #aaa;
        }

        body.dark-mode .resource-features li {
            color: #aaa;
        }

        body.dark-mode .timeline-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%);
        }

        body.dark-mode .timeline-header h2 {
            color: #fff;
        }

        body.dark-mode .timeline-header p {
            color: #aaa;
        }

        body.dark-mode .timeline-item h4 {
            color: #fff;
        }

        body.dark-mode .timeline-item p {
            color: #aaa;
        }

        body.dark-mode .timeline-delivery {
            background: #86BC25;
            color: #000;
        }

        body.dark-mode .timeline-delivery1 {
            background: #86BC25;
            color: #000;
        }

        body.dark-mode .stat-number {
            color: #60a5fa;
        }

        body.dark-mode .stat-label {
            color: #aaa;
        }

        body.dark-mode .cta-section {
            background-color:#86BC25;
        }

        body.dark-mode .cta-section h2 {
            color: black;
        }

        body.dark-mode .cta-section p {
            color: black;
        }

        @media (max-width: 1024px) {
            .hero {
                height: 80vh;
                padding: 2rem 1.5rem;
            }

            .hero > div {
                margin-top: -3rem !important;
            }

            .hero h1 {
                font-size: 3rem;
                margin-bottom: 1.25rem;
            }

            .hero p {
                font-size: 0.95rem;
                max-width: 650px;
                line-height: 1.7;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: unset;
                padding: 2rem 1.5rem;
                margin-top: 0;
            }

            .hero > div {
                margin-top: 0 !important;
            }

            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                max-width: 600px;
                line-height: 1.7;
                text-align: center;
            }

            .layer-title {
                font-size: 1.8rem;
            }

            .resource-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

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

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 640px) {
            .hero {
                height: auto;
                min-height: unset;
                padding: 1.75rem 1rem;
                margin-top: 0;
            }

            .hero > div {
                margin-top: 0 !important;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 0.9rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.25rem;
                max-width: 100%;
                line-height: 1.6;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: auto;
                min-height: unset;
                padding: 1.5rem 0.75rem;
                margin-top: 0;
            }

            .hero > div {
                margin-top: 0 !important;
            }

            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
                line-height: 1.25;
            }

            .hero p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
                max-width: 100%;
                line-height: 1.6;
                text-align: center;
            }
        }

        @media (max-width: 1024px) {
            .timeline-section {
                padding: 3.5rem 2rem;
            }

            .timeline-header {
                margin-bottom: 3rem;
            }

            .timeline-header h2 {
                font-size: 1.75rem;
            }

            .timeline-header p {
                font-size: 0.95rem;
            }

            .timeline-item {
                padding: 1.75rem;
            }

            .timeline-step {
                font-size: 2.5rem;
            }

            .timeline-item h4 {
                font-size: 1rem;
            }

            .why-choose-section {
                padding: 3.5rem 2rem;
            }

            .why-choose-header {
                margin-bottom: 3rem;
            }

            .why-choose-header h2 {
                font-size: 1.75rem;
            }

            .why-choose-header p {
                font-size: 0.95rem;
            }

            .stats-grid {
                gap: 2rem;
            }

            .stat-item {
                padding: 1.75rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .timeline-section {
                padding: 3rem 1.5rem;
            }

            .timeline-header {
                margin-bottom: 2.5rem;
            }

            .timeline-header h2 {
                font-size: 1.5rem;
            }

            .timeline-header p {
                font-size: 0.9rem;
                max-width: 500px;
            }

            .timeline-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
            }

            .timeline-item {
                padding: 1.5rem;
            }

            .timeline-step {
                font-size: 2.2rem;
            }

            .timeline-item h4 {
                font-size: 0.95rem;
            }

            .timeline-item p {
                font-size: 0.9rem;
            }

            .timeline-delivery {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
                margin-top: 0.75rem;
            }

            .why-choose-section {
                padding: 3rem 1.5rem;
            }

            .why-choose-header {
                margin-bottom: 2.5rem;
            }

            .why-choose-header h2 {
                font-size: 1.5rem;
            }

            .why-choose-header p {
                font-size: 0.9rem;
                max-width: 600px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 1.5rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 640px) {
            .timeline-section {
                padding: 2.5rem 1rem;
            }

            .timeline-header {
                margin-bottom: 2rem;
            }

            .timeline-header h2 {
                font-size: 1.25rem;
            }

            .timeline-header p {
                font-size: 0.85rem;
                max-width: 100%;
            }

            .timeline-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem;
            }

            .timeline-item {
                padding: 1.25rem;
            }

            .timeline-step {
                font-size: 2rem;
            }

            .timeline-item h4 {
                font-size: 0.9rem;
            }

            .timeline-item p {
                font-size: 0.85rem;
            }

            .timeline-delivery {
                padding: 0.35rem 0.7rem;
                font-size: 0.75rem;
                margin-top: 0.6rem;
            }

            .why-choose-section {
                padding: 2.5rem 1rem;
            }

            .why-choose-header {
                margin-bottom: 2rem;
            }

            .why-choose-header h2 {
                font-size: 1.25rem;
            }

            .why-choose-header p {
                font-size: 0.85rem;
                max-width: 100%;
            }

            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem;
            }

            .stat-item {
                padding: 1.25rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .timeline-section {
                padding: 2rem 0.75rem;
            }

            .timeline-header {
                margin-bottom: 1.5rem;
            }

            .timeline-header h2 {
                font-size: 1.1rem;
            }

            .timeline-header p {
                font-size: 0.8rem;
                max-width: 100%;
            }

            .timeline-grid {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }

            .timeline-item {
                padding: 1rem;
            }

            .timeline-step {
                font-size: 1.8rem;
            }

            .timeline-item h4 {
                font-size: 0.85rem;
            }

            .timeline-item p {
                font-size: 0.8rem;
            }

            .timeline-delivery {
                padding: 0.3rem 0.6rem;
                font-size: 0.7rem;
                margin-top: 0.5rem;
            }

            .why-choose-section {
                padding: 2rem 0.75rem;
            }

            .why-choose-header {
                margin-bottom: 1.5rem;
            }

            .why-choose-header h2 {
                font-size: 1.1rem;
            }

            .why-choose-header p {
                font-size: 0.8rem;
                max-width: 100%;
            }

            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.3rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 1024px) {
            footer .row {
                gap: 1.5rem !important;
            }

            footer h6 {
                font-size: 0.95rem;
            }

            footer small {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 2rem 1rem !important;
            }

            footer .row {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                justify-content: flex-start !important;
            }

            footer .row > div {
                flex: none !important;
                width: 100% !important;
                min-width: auto !important;
            }

            footer img {
                max-width: 120px !important;
            }

            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 1rem !important;
            }

            footer ul {
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.75rem !important;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer svg {
                width: 16px !important;
                height: 16px !important;
            }

            .row.align-items-center {
                flex-direction: column !important;
                text-align: center !important;
                gap: 1rem !important;
            }

            .row.align-items-center .col-md-4 {
                width: 100% !important;
                text-align: center !important;
            }

            footer hr {
                margin: 1rem 0 !important;
            }
        }

        @media (max-width: 640px) {
            footer {
                padding: 1.5rem 1rem !important;
            }

            footer img {
                max-width: 100px !important;
                margin-bottom: 0.75rem !important;
            }

            footer h6 {
                font-size: 0.9rem;
                margin-bottom: 0.75rem !important;
            }

            footer .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            footer li {
                margin-bottom: 0.5rem !important;
            }

            footer small {
                font-size: 0.75rem;
            }

            footer .text-muted.small {
                margin-bottom: 0.5rem !important;
            }

            footer p {
                margin-bottom: 0.5rem !important;
            }

            footer svg {
                width: 14px !important;
                height: 14px !important;
                margin-right: 0.4rem !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.75rem;
            }

            footer hr {
                margin: 0.75rem 0 !important;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 1rem !important;
            }

            footer .mb-5 {
                margin-bottom: 1rem !important;
            }

            footer .row {
                gap: 1rem !important;
            }

            footer img {
                max-width: 90px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer ul.list-unstyled {
                margin-bottom: 0;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .text-muted {
                font-size: 0.7rem !important;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer a {
                font-size: 0.7rem;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }
        }
