        :root {
            --primary-black: #000000;
            --primary-blue: #005893;
            --secondary-blue: #0BBBEF;
            --accent-orange: #f3b600;
            --light-bg: #f5fbff;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            padding-top: 90px;
            overflow-x: hidden;
        }
        
        /* Header */
        .header {
            height: 90px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: 700;
            text-decoration: none;
        }
        
        .logo-24 {
            color: var(--primary-blue);
        }
        
        .logo-cms {
            color: var(--secondary-blue);
        }
        
        .logo-sup {
            font-size: 16px;
            vertical-align: super;
            color: var(--accent-orange);
        }
        
        .nav-link {
            color: var(--primary-black);
            font-weight: 500;
            margin: 0 10px;
            font-size: 0.85em;
			text-transform: uppercase;
        }
        
        .nav-link:hover {
            color: var(--secondary-blue);
        }
        
        .btn-login {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            font-weight: 600;
        }

        .btn-login:hover {
            background-color: color-mix(in srgb, var(--accent-orange) 90%, white);
            color: white;
        }
        
        .btn-login-top {
            background-color: var(--accent-orange);
            color: white;
            border: none;
			margin-left: 10px;
            font-weight: 600;
        }

        .btn-login-top:hover {
            background-color: color-mix(in srgb, var(--accent-orange) 90%, white);
            color: white;
        }
        
        .btn-register {
            background-color: white;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            font-weight: 600;
        }
        
        .btn-register:hover {
            color: var(--secondary-blue);
            border-color: var(--secondary-blue);
        }
        
        /* Hero section */
        .hero {
            background-color: var(--light-bg);
            padding: 80px 0 0;
            position: relative;
			background: url('/images/demo3.jpg') center bottom no-repeat;
			background-size: cover;
        }
        
        .hero-content {
            padding-bottom: 60px;
        }
        
        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 20px;
        }
        
        .hero h1 .logo-24,
        .hero h1 .logo-cms {
            font-weight: 700;
        }
        
        .hero p {
            font-size: 20px;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .stat-item {
            background-color: white;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            min-width: 200px;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent-orange);
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 16px;
            color: var(--primary-blue);
        }
        
        .interface-img-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .interface-img {
            width: 100%;
            height: auto;
            border-radius: 8px 8px 0 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: block;
        }
        
        /* Features */
        .features {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 60px;
            font-weight: 700;
        }
        
        .feature-card {
            padding: 20px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon-container {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            font-size: 32px;
            color: var(--secondary-blue);
            margin-bottom: 15px;
        }
        
        .feature-content {
            text-align: center;
        }
        
        .feature-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--light-bg);
			background: url('/images/texture1.png') center center;
            padding: 80px 0;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
            display: flex;
            align-items: center;
        }
        
        .testimonial-photo {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 30px;
            flex-shrink: 0;
        }
        
        .testimonial-content {
            flex-grow: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        /* Full width image */
        .full-width-img {
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
        }
        
        /* Pricing */
        .pricing {
            padding: 80px 0;
            background-color: var(--light-bg);
			background: url('/images/texture1.png') center center;
        }
        
        .pricing-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .pricing-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .pricing-price {
            font-size: 36px;
            font-weight: 700;
            margin: 20px 0;
        }
        
        .pricing-period {
            font-size: 16px;
            opacity: 0.8;
        }
        
        .pricing-features {
            padding: 30px;
            background-color: white;
        }
        
        .pricing-features ul {
            list-style: none;
            padding: 0;
        }
        
        .pricing-features li {
            padding: 8px 0;
            color: #555;
        }
        
        .pricing-features li i {
            color: var(--secondary-blue);
            margin-right: 10px;
        }
        
        .btn-pricing {
            background-color: var(--accent-orange);
            color: white;
            font-weight: 600;
            width: 100%;
            padding: 12px;
            border: none;
        }
        
        .btn-pricing:hover {
            background-color: color-mix(in srgb, var(--accent-orange) 90%, white);
            color: white;
        }
        
        /* Contact form */
        .contact {
            padding: 80px 0;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        
        .form-control:focus {
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 0.25rem rgba(11, 187, 239, 0.25);
        }
        
        .btn-submit {
            background-color: var(--accent-orange);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border: none;
            width: 100%;
            margin-top: 20px;
        }
        
        .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-orange) 90%, white);
            color: white;
        }
        
        .form-check-input:checked {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
        }
        
        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: -15px;
            margin-bottom: 15px;
            display: none;
        }
        
        .is-invalid {
            border-color: #dc3545;
        }
        
        .privacy-link {
            color: var(--secondary-blue);
            text-decoration: underline;
            cursor: pointer;
        }
        
        .privacy-link:hover {
            color: var(--primary-blue);
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-blue);
			background: url('/images/texture2.png') center center;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
            text-decoration: none;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: white;
            text-decoration: none;
            margin-right: 15px;
        }
        
        .footer-link:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        
        .footer-info {
            opacity: 0.8;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        /* Modal */
        .modal-content {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .modal {
            overflow-y: auto;
        }
        
        .modal-dialog {
            display: flex;
            align-items: center;
            min-height: calc(100% - 1rem);
			margin-top: 0;
			margin-bottom: 0;
        }
        
        .modal.show .modal-dialog {
            transform: none;
        }
        
        .modal-header {
            background-color: var(--primary-blue);
            color: white;
        }
        
        .modal-title {
            font-weight: 600;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .forgot-password {
            color: var(--secondary-blue);
            text-decoration: none;
            font-size: 14px;
        }
        
        .forgot-password:hover {
            text-decoration: underline;
        }
        
        .modal-form .form-control {
            padding: 10px;
            margin-bottom: 15px;
        }
        
        .modal-form .btn {
            padding: 12px;
            font-size: 16px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1183px) {
            .feature-card {
                text-align: center;
            }
            
            .feature-icon-container {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .feature-icon {
                margin-right: 0;
            }
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                position: absolute;
                top: 90px;
                left: 15px;
                right: 15px;
                z-index: 1000;
            }
            
            .nav-link {
                margin: 10px 0;
            }
            
            .header-buttons {
                margin-top: 15px;
            }
            
            .stats {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .testimonial-card {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-photo {
                width: 100px;
                height: 100px;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .pricing-card {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 989px) {
            .navbar-collapse.collapse:not(.show) {
                display: none !important;
            }
            
            .navbar-collapse.collapse.show {
                display: block !important;
            }
        }
        
        @media (max-width: 975px) {
            .navbar-collapse {
                display: none !important;
            }
            
            .navbar-collapse.show {
                display: block !important;
            }
            
            .navbar-toggler {
                display: block !important;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0 0;
            }
            
            .hero-content {
                padding-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .feature-card {
                margin-bottom: 30px;
            }
            
            .stat-item {
                min-width: 150px;
                padding: 15px 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }
        
        @media (max-width: 576px) {
            .pricing-card {
                max-width: 100%;
            }
            
            .modal-dialog {
                margin: 0 auto;
            }
        }
		
		.carousel-control-prev-icon,
		.carousel-control-next-icon {
			filter: invert(1);
		}
		
		.carousel-inner {
			cursor: grab;
		}

		.carousel-inner:active {
			cursor: grabbing;
		}