 <style>
    
  

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            color: white;
            padding: 150px 2rem 100px;
            text-align: center;
            margin-top: 60px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 900;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: #C41E3A;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #C41E3A;
        }

        /* Sections */
        section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #C41E3A;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border-top: 4px solid #C41E3A;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-number {
            background: #C41E3A;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .service-card ul {
            list-style: none;
            color: #666;
            font-size: 0.95rem;
        }

        .service-card li:before {
            content: "✓ ";
            color: #C41E3A;
            font-weight: bold;
            margin-right: 5px;
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            color: #C41E3A;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border-left: 4px solid #C41E3A;
        }

        .stat-number {
            font-size: 2.5rem;
            color: #C41E3A;
            font-weight: 700;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Equipment */
        .equipment-container {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            margin-top: 3rem;
            align-items: start;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .equipment-icon-large {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.2);
        }

        .equipment-icon-large svg {
            width: 70px;
            height: 70px;
            fill: white;
        }

        .equipment-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .equipment-item {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #C41E3A;
            transition: all 0.3s;
        }

        .equipment-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .equipment-item h4 {
            color: #C41E3A;
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
        }

        .equipment-item p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        /* Features */
        .features {
            background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            color: white;
            padding: 80px 2rem;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
            fill: white;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        /* Contact */
        .contact-box {
            max-width: 800px;
            margin: 3rem auto 0;
            background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
            padding: 3rem;
            border-radius: 15px;
            color: white;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        .contact-box h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-info-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-info-item {
            display: flex;
            align-items: start;
            gap: 1.5rem;
        }

        .contact-info-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .contact-info-text {
            line-height: 1.8;
        }

        .contact-info-text strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        /* Logos Section */
        .logos-section {
            background: #f8f9fa;
            padding: 60px 2rem;
        }

        .logos-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .logo-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .logo-item:hover {
            transform: translateY(-5px);
        }

        .logo-item img {
            max-width: 300px;
            height: auto;
            display: block;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

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

            .equipment-container {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 2rem;
            }

            .equipment-list {
                grid-template-columns: 1fr;
            }

            .equipment-item:hover {
                transform: translateX(0);
                transform: translateY(-5px);
            }

            .contact-box {
                padding: 2rem;
            }

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

            .contact-info-item {
                display: flex;
                gap: 1rem;
                align-items: start;
            }

            .logos-container {
                flex-direction: column;
                gap: 2rem;
            }

            .logo-item img {
                max-width: 100%;
            }

            .logo img {
                height: 40px;
            }
        }
    </style>