:root {
            --casio-red: #e60012;
            --casio-dark: #1a1a1a;
            --casio-light: #f8f9fa;
            --casio-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .brand-red {
            color: var(--casio-red);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--casio-red);
        }
        .text-center.section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .product-icon {
            font-size: 3rem;
            color: var(--casio-red);
            margin-bottom: 1rem;
        }
        .feature-icon {
            background-color: rgba(230, 0, 18, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .feature-icon i {
            font-size: 1.8rem;
            color: var(--casio-red);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--casio-red);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--casio-red);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--casio-red);
        }
        .contact-info-box {
            background-color: var(--casio-light);
            border-left: 4px solid var(--casio-red);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0 5px 5px 0;
        }
        .contact-info-box i {
            color: var(--casio-red);
            margin-right: 10px;
            width: 20px;
        }
        .footer {
            background-color: var(--casio-dark);
            color: white;
            padding-top: 3rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            margin: 5px;
            border-radius: 4px;
            transition: all 0.3s;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
        }
        .btn-casio {
            background-color: var(--casio-red);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-casio:hover {
            background-color: #c4000f;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
        }
        .product-img {
            height: 200px;
            object-fit: cover;
            object-position: center;
        }
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--casio-red);
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(230, 0, 18, 0.1);
            color: var(--casio-dark);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(230, 0, 18, 0.25);
        }
