        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-top {
            background-color: #e31d3c;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-top-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #e31d3c;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
        }
        
        .nav-menu a:hover {
            color: #e31d3c;
        }
        
        .search-icon, .menu-icon {
            cursor: pointer;
            font-size: 20px;
            margin-left: 20px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #ff0000 0%, #e31d3c 100%);
            color: white;
            padding: 80px 0;
            padding-top: 150px;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            text-align: left;
            padding-right: 40px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            /* border-radius: 8px; */
            /* box-shadow: 0 10px 25px rgba(0,0,0,0.2); */
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #f2f2f2;
        }
        
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
        }

        .cta-button-hero {
            display: inline-block;
            background-color: #fff;
            color: #e31d3c;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button-hero:hover {
            background-color: #c41933;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #c41933;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #fff;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f8f8f8;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #e31d3c;
            margin-bottom: 15px;
        }        
        
        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title2 {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title2 h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-image {
            height: 250px;
            background-color: #ddd;
            /* background-image: url('/api/placeholder/400/200'); */
            background-size: contain;
            background-position: top;
            background-repeat: no-repeat;
        }
        
        .feature-content {
            padding: 25px;
        }
        
        .feature-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #e31d3c;
        }
        
        .feature-content p {
            margin-bottom: 20px;
            color: #666;
        }
        
        .learn-more {
            color: #e31d3c;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }
        
        .learn-more:hover {
            text-decoration: underline;
        }
        
        /* Solutions Section */
        .solutions {
            padding: 80px 0;
        }
        
        .solutions-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .solution-box {
            flex: 1;
            min-width: 300px;
            background-color: #f5f5f5;
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid #e31d3c;
        }
        
        .solution-box h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #e31d3c;
        }
        
        .solution-box ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .solution-box ul li {
            margin-bottom: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #e31d3c 0%, #ff0000 100%);
            color: white;
            padding: 80px 0;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial {
            padding: 20px;
        }
        
        .testimonial p {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: bold;
        }
        
        /* Resources Section */
        .resources {
            padding: 80px 0;
            background-color: #f8f8f8;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .resource-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .resource-image {
            height: 200px;
            background-color: #ddd;
            background-image: url('/api/placeholder/400/200');
            background-size: cover;
            background-position: center;
        }
        
        .resource-content {
            padding: 25px;
        }
        
        .resource-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #e31d3c;
        }
        
        .resource-content p {
            margin-bottom: 20px;
            color: #666;
        }
        /* CTA Section */
        .cta-section-hero {
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section-hero h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #e31d3c;
        }
        
        .cta-section-hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #666;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #e31d3c;
        }
        
        .cta-section p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #666;
        }
        
        /* Footer */
        /* footer {
            background-color: #222;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            background-color: #444;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: #e31d3c;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
            color: #aaa;
            font-size: 14px;
        } */
        
        /* Media Queries */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .header-top {
                display: none;
            }
            
            .nav-menu {
                display: none;
            }
            
            .menu-icon {
                display: block;
            }
        }


        