		
		:root {
            --primary-blue: #0d6efd;
            --dark-bg: #090e1a; /* Sleek dark blue/black tint */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #ffffff;
        }

        /* --- Header / Navbar Navigation --- */
        .navbar {
            padding: 1.25rem 0;
            background: transparent;
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 10;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #ffffff !important;
        }
        .nav-link {
            color: #cbd5e1 !important;
            font-weight: 500;
            margin-right: 1.5rem;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #ffffff !important;
        }
        .btn-book {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-book:hover {
            background-color: #0b5ed7;
            transform: translateY(-1px);
            color: white;
        }

        /* --- Hero Section Styles --- */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* Replace with your own high-res background image link */
            background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?q=80&w=2070') no-repeat center center/cover;
            padding-top: 100px; /* Accounts for fixed transparent navbar */
            padding-bottom: 60px;
            overflow: hidden;
        }

        /* Dark overlay to make white text highly readable */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(9, 14, 26, 0.95) 40%, rgba(9, 14, 26, 0.7) 100%);
            z-index: 1;
        }

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

        /* Top Feature pill tag */
        .feature-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        /* Typography sizing matching the video framework */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
            max-width: 850px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 650px;
        }

        /* Hero Action Buttons */
        .btn-outline-custom {
            border: 1px solid #ffffff;
            color: #ffffff;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background-color: #ffffff;
            color: var(--dark-bg);
        }
        .hero-btn-primary {
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 6px;
        }

        /* Social proof / Trust section styling */
        .trust-section {
            margin-top: 3.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .avatar-group {
            display: flex;
            align-items: center;
        }
        .avatar-group img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid var(--dark-bg);
            margin-right: -10px;
            object-fit: cover;
        }
        .trust-text {
            font-size: 0.9rem;
            color: #cbd5e1;
            margin-left: 15px;
        }

        /* Responsive breakpoints adjustments */
        @media (max-width: 991.98px) {
            .hero-title { font-size: 2.5rem; }
            .navbar { background: var(--dark-bg); position: relative; }
            .hero-section { min-height: auto; padding-top: 60px; }
        }






















		/* --- Section 1: Problems Layout --- */
        .problems-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .sticky-left-content {
            position: sticky;
            top: 40px;
        }
		.sticky-left-content h2 {
			color: #000;
			font-weight: 600;
        }

        .problem-card {
            background-color: #ECF1F6;
            /* border: 1px solid #e2e8f0; */
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            transition: all 0.2s ease;
        }

        .problem-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
		.problem-card h4 {
			color: #000;
			/* font-weight: 600; */
        }
        .problem-icon-wrapper i {
            font-size: 1.25rem;
        }

        /* --- Section 2: Approach Layout --- */
        .approach-section {
            padding: 80px 0;
            background-color: #ECF1F6;
        }
        .approach-section h2{
            color: #000;
			font-weight: 600;
        }


        .approach-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.25rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .approach-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        }
        .approach-card h3 {
            color: #000;
        }
        .approach-icon-box {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        /* Global CTAs matching the video buttons */
        .btn-cta-blue {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            border-radius: 6px;
            border: none;
            transition: opacity 0.2s ease;
        }
        .btn-cta-blue:hover {
            color: white;
            opacity: 0.9;
        }












		/* --- Process Section Styles --- */
        .process-section {
            padding: 80px 0;
			background-color: #ecf1f654;
        }

        .process-title {
            font-weight: 600;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
            color: #000;
        }

        .process-subtitle {
            max-width: 700px;
            margin: 0 auto;
            color: #000000a4;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Steps Wrapper & Card Design */
        .steps-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .step-row {
            display: flex;
            align-items: stretch;
            margin-bottom: 1.5rem;
            gap: 1.5rem;
        }

        /* Left Side Circle Number Badge */
        .step-number-badge {
            width: 48px;
            height: 48px;
            background-color: var(--primary-blue);
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 8px; /* Slightly rounded squares based on video layout */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Right Side Details Container Card */
        .step-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
            width: 100%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
            transition: box-shadow 0.2s ease;
        }

        .step-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .step-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .step-icon {
            color: var(--primary-blue);
            font-size: 1.35rem;
            display: flex;
            align-items: center;
        }

        .step-card-title {
            font-weight: 700;
            font-size: 1.35rem;
            margin: 0;
            color: #000;
        }

        .step-card-text {
            color: #0000008f;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Bottom Action Button Styling */
        .btn-audit {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            padding: 0.85rem 2.25rem;
            border-radius: 8px;
            border: none;
            transition: background-color 0.2s ease, transform 0.1s ease;
        }

        .btn-audit:hover {
            background-color: #1d4ed8;
            color: white;
        }

        /* Responsive Breakpoint Tweak */
        @media (max-width: 576px) {
            .step-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            .step-card {
                padding: 1.5rem;
            }
        }



















		/* --- Case Studies Section Header --- */
		.real-results{
			background: #020617;
		}
        .results-header-title {
            font-weight: 600;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
            color: var(--text-main);
        }

        .results-header-text {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
        }

        .btn-results-cta {
            border: 1px solid #cbd5e1;
            font-weight: 600;
            padding: 0.65rem 1.5rem;
            border-radius: 6px;
            color: #090e1a;
            transition: all 0.2s ease;
            background: white;
        }

        .btn-results-cta:hover {
            background-color: #f8fafc;
            border-color: #94a3b8;
            color: #090e1a;

        }

        /* --- Case Study Card Architecture --- */
        .case-study-card {
            border: 1px solid var(--card-border);
            border-radius: 12px;
            overflow: hidden;
            background: #ffffff;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        /* Card Top Header & Image Layer */
        .card-image-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Absolute Overlay Badges */
        .niche-badge {
            position: absolute;
            top: 120px;
            left: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            color: #ffffff;
        }
        
        .badge-ecommerce { background-color: #2563eb; }
        .badge-b2bsaas { background-color: #7c3aed; }
        .badge-healthcare { background-color: #059669; }

        .client-brand-title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem 1.25rem;
            background: linear-gradient(to top, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0));
            color: #ffffff;
            font-weight: 700;
            font-size: 1.35rem;
            margin: 0;
        }

        /* Card Body Layout */
        .card-body-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #94a3b8;
            margin-bottom: 1rem;
        }

        /* Results Checklist items */
        .metrics-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        .metrics-list li {
            font-size: 1rem;
            color: #000;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .metrics-list li i {
            color: #10b981; /* Metric success checkmark green */
            font-size: 1.15rem;
        }

        /* Bottom Quote / Review Segment */
        .card-quote-box {
            border-top: 1px dashed #000;
            padding-top: 1.25rem;
            margin-top: auto;
        }

        .card-quote-text {
            font-style: italic;
            color: #0000008f;
            font-size: 0.925rem;
            line-height: 1.5;
            margin: 0;
        }
























        /* --- Section Typography --- */
        .testimonial-title {
            font-weight: 800;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
            color: #000;
        }

        .testimonial-subtitle {
            color: #0000008f;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        /* --- Testimonial Slider & Card Container --- */
        .testimonial-slider-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            padding: 0 60px; /* Leave space for absolute-positioned side arrows */
        }

        .testimonial-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
        }

        /* Stars Layout */
        .stars-row {
            color: #FACC15;
            font-size: 1.15rem;
            margin-bottom: 1.25rem;
            display: flex;
            gap: 2px;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #334155;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        /* User Profile Info Layout */
        .profile-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .profile-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-name {
            font-weight: 700;
            font-size: 1rem;
            margin: 0;
            color: #000;
        }

        .profile-role {
            font-size: 0.875rem;
            color: #0000008f;
            margin: 0;
        }

        /* --- Custom Side Nav Arrows --- */
        .custom-carousel-btn {
            width: 40px;
            height: 40px;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            transition: all 0.2s ease;
        }

        /* .custom-carousel-btn:hover {
            background-color: var(--text-main);
            color: #ffffff;
            border-color: var(--text-main);
        } */

        .custom-carousel-btn.btn-prev {
            left: 0;
        }

        .custom-carousel-btn.btn-next {
            right: 0;
        }

        /* Mobile Breakpoint Tweak */
        @media (max-width: 768px) {
            .testimonial-slider-container {
                padding: 0;
            }
            .custom-carousel-btn {
                display: none; /* Hide side arrows on mobile; rely on touch gestures */
            }
            .testimonial-title {
                font-size: 2rem;
            }
        }





        .whatWeH2{
            color: #000;
            font-weight: 600;
        }








        /* --- Qualification Section Styles --- */
        .qualification-section {
            background-color: #2463EB;
            color: #ffffff;
            padding: 80px 0;
        }

        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 2.5rem;
        }

        /* Requirements checklist */
        .requirement-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .requirement-list li {
            font-size: 1.05rem;
            font-weight: 500;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .requirement-list li i {
            font-size: 1.25rem;
            color: #ffffff;
        }

        /* Right Side Callout Box */
        .callout-box {
            background-color: var(--accent-box-bg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .quote-container {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .info-icon-wrapper {
            background-color: rgba(255, 255, 255, 0.15);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon-wrapper i {
            font-size: 1.25rem;
        }

        .quote-text {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.5;
            margin: 0;
        }

        /* Custom White CTA Button */
        .btn-qualify {
            background-color: #ffffff;
            color: #2463EB;
            /* font-weight: 600; */
            padding: 0.75rem 2rem;
            border-radius: 8px;
            border: none;
            transition: all 0.2s ease;
            align-self: flex-start;
        }

        .btn-qualify:hover {
            background-color: rgba(255, 255, 255, 0.9);
            color: #2463EB;
            transform: translateY(-1px);
        }

        /* Responsive Breakpoint Adjustment */
        @media (max-width: 991.98px) {
            .section-title { font-size: 2rem; }
            .callout-box { margin-top: 2rem; }
        }














        /* --- FAQ Typography --- */
        .faq-title {
            font-weight: 800;
            font-size: 2.5rem;
            letter-spacing: -0.5px;
            color: var(--text-main);
        }

        .faq-subtitle {
            color: #0000008f;
            font-size: 1.1rem;
            margin-bottom: 3.5rem;
        }

        /* --- Custom Bootstrap Accordion Theme --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Isolate items into distinct separated white bars */
        .accordion-item {
            background-color: #ffffff;
            border: 0px solid #e2e8f0 !important;
            border-radius: 12px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.02);
        }

        /* Accordion Header / Trigger Button */
        .accordion-button {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            padding: 1.25rem 1.5rem;
            box-shadow: none !important;
            background-color: #ffffff !important;
            transition: color 0.2s ease;
        }

        /* Active blue font text state from the video */
        .accordion-button:not(.collapsed) {
            color: var(--brand-blue) !important;
        }

        /* Customizing the native chevron icon tint */
        .accordion-button::after {
            background-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        /* Panel Content Area spacing */
        .accordion-body {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }













        /* --- Main Form Card Block --- */
        .cta-form-card {
            background-color: #ffffff;
            border: 1px solid #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
            max-width: 1050px;
            margin: 0 auto;
        }

        /* Left Column Accent Panel Styling */
        .cta-dark-panel {
            background-color: #020617;
            color: #ffffff;
            padding: 3.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cta-panel-title {
            font-weight: 600;
            font-size: 2.25rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .cta-panel-text {
            color: #cbd5e1;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* "Only X slots left" Pill Badge */
        .slots-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(34, 197, 94, 0.15); /* Translucent green */
            color: #4ade80; /* Bright text green */
            border: 1px solid rgba(34, 197, 94, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

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

        .btn-calendar {
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            font-weight: 600;
            padding: 0.65rem 1.25rem;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .btn-calendar:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

        /* Right Column Form Area Styling */
        .cta-form-body {
            padding: 3.5rem;
        }

        .form-label {
            /* font-weight: 600; */
            font-size: 0.9rem;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 1px solid #0000002e;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            color: #000;
            box-shadow: none !important;
            transition: border-color 0.2s ease;
        }

        .form-control:focus {
            border-color: #2463EB;
        }

        #auditForm .form-control {
            color: #212529 !important; /* Bootstrap's standard dark text color */
        }

        /* Optional: Ensure text color stays readable during autofill */
        #auditForm .form-control:-webkit-autofill {
            -webkit-text-fill-color: #212529 !important;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        /* Interactive Blue Call Button */
        .btn-submit-call {
            background-color: #2463EB;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            border-radius: 8px;
            border: none;
            transition: opacity 0.2s ease;
        }

        .btn-submit-call:hover {
            color: #ffffff;
            opacity: 0.95;
        }

        /* Responsive Breakpoints Adaptations */
        @media (max-width: 991.98px) {
            .cta-dark-panel {
                padding: 2.5rem;
            }
            .cta-form-body {
                padding: 2.5rem;
            }
            .cta-panel-title {
                font-size: 1.85rem;
                margin-bottom: 1rem;
            }
        }












     /* --- Footer Main Layout --- */
        .site-footer {
            background-color: #020617;
            color: #ffffff;
            padding: 80px 0 40px 0;
        }

        /* Logo Configuration */
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .logo-badge {
            width: 36px;
            height: 36px;
            background-color: #2563eb;
            color: #ffffff;
            font-weight: 800;
            font-size: 1.25rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-name {
            font-size: 1.35rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.3px;
        }

        .brand-desc {
            color: var(--link-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 320px;
        }

        /* Social Icons Link Styles */
        .social-links {
            display: flex;
            gap: 1.25rem;
        }

        .social-links a {
            color: var(--link-color);
            font-size: 1.2rem;
            transition: color 0.2s ease;
        }

        .social-links a:hover {
            color: #ffffff;
        }

        /* Footer Structural Headings */
        .footer-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.75rem;
            color: #ffffff;
        }

        /* Column Links Architecture */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-links a {
            color: var(--link-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #2563eb;
        }

        /* Right Hand Contact Grid Items */
        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }

        .contact-item i {
            color: #2563eb;
            font-size: 1.1rem;
            margin-top: 1px;
        }

        .contact-item a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

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

        .contact-text-block {
            color: var(--link-color);
            line-height: 1.5;
        }

        /* Lower Copyright Divider Layout */
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            margin-top: 60px;
            padding-top: 30px;
            color: #475569;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #475569;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: #fff;
        }