        body {
            font-family: 'Quicksand', ui-sans-serif, sans-serif;
            font-weight: 300;
            background-color: #f4f7f6;
            color: #333;
            transition: all 0.3s ease;
        }
    header .header-content .inner h3 {
        font-size: 40px;
    }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: bold;
            color: #1abc9c !important;
        }

        .nav-link,
        .dropdown-item {
            color: #333 !important;
        }

        .nav-link:hover,
        .dropdown-item:hover {
            color: #1abc9c !important;
        }

        .btn-primary {
            background-color: #1abc9c;
            border-color: #1abc9c;
        }

        .btn-primary:hover {
            background-color: #16a085;
            border-color: #16a085;
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
        }

        .section-subheading {
            font-size: 1.2rem;
            color: #666;
        }

        .feature-card,
        .support-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .accent-section {
            background-color: #1abc9c;
            color: #fff;
        }

        .footer {
            background-color: #fff;
            padding: 40px 0;
            border-top: 1px solid #ddd;
        }

        .footer a {
            color: #666;
            text-decoration: none;
        }

        .footer a:hover {
            color: #1abc9c;
        }

        .icon-circle {
            background-color: #1abc9c;
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        /* Hero Section Full-Width Image */
        .hero-section {
            position: relative;
            padding: 0;
            overflow: hidden;
            /* Prevent content overflow */
        }

        .hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            /* Limit max width for larger screens */
        }

        .hero-content .section-heading {
            color: #fff;
            font-size: 2.5rem;
        }

        .hero-content .section-subheading {
            color: #ddd;
            font-size: 1.2rem;
        }

        /* Responsive Adjustments for Mobile */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                /* Allow the section to grow with content */
            }

            .hero-image {
                height: 600px;
                /* Increase height to accommodate content */
            }

            .hero-content {
                position: relative;
                /* Switch to relative positioning to avoid overlap */
                top: 0;
                left: 0;
                transform: none;
                /* Remove centering transform */
                width: 100%;
                /* Full width on mobile */
                max-width: none;
                /* Remove max-width constraint */
                padding: 20px;
                border-radius: 0;
                /* Remove border radius for full-width effect */
                background: rgba(0, 0, 0, 0.7);
                /* Slightly darker overlay for readability */
            }

            .hero-content .section-heading {
                font-size: 1.8rem;
                /* Smaller heading for mobile */
            }

            .hero-content .section-subheading {
                font-size: 1rem;
                /* Smaller subheading for mobile */
            }

            .hero-content .btn {
                display: block;
                /* Stack buttons vertically */
                width: 100%;
                /* Full-width buttons */
                margin: 10px 0;
                /* Add spacing between buttons */
            }
        }

        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #1a1a1a;
            color: #e0e0e0;
        }

        .dark-mode .navbar {
            background-color: #2c2c2c;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark-mode .nav-link,
        .dark-mode .dropdown-item {
            color: #e0e0e0 !important;
        }

        .dark-mode .nav-link:hover,
        .dark-mode .dropdown-item:hover {
            color: #1abc9c !important;
        }

        .dark-mode .section-heading {
            color: #e0e0e0;
        }

        .dark-mode .section-subheading {
            color: #b0b0b0;
        }

        .dark-mode .feature-card,
        .dark-mode .support-card {
            background-color: #2c2c2c;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark-mode .accent-section {
            background-color: #1abc9c;
            color: #fff;
        }

        .dark-mode .footer {
            background-color: #2c2c2c;
            border-top: 1px solid #444;
        }

        .dark-mode .footer a {
            color: #b0b0b0;
        }

        .dark-mode .footer a:hover {
            color: #1abc9c;
        }

        .dark-mode .text-muted {
            color: #b0b0b0 !important;
        }

        /* Toggle Switch */
        .dark-mode-toggle {
            display: flex;
            align-items: center;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 24px;
        }
			li::marker {
			color: #1abc9c;
			}
        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: #1abc9c;
        }

        input:checked+.slider:before {
            transform: translateX(26px);
        }
		
		.dropdown-header {
    font-size: 1.2rem!important;
    font-weight: bold!important;
}