
       
        /* Hero Section */
        .hero {
          
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-overlay {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 255, 255, 0.7));
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1rem;
            animation: slide-in 1s ease-out;
        }

        .hero-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
        }

        .btn-primary:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
        }

        .btn-primary i {
            margin-right: 0.5rem;
        }

        /* Thanks Section */
        .thanks-section {
            padding: 80px 0;
            background: #f8f9fa;
            text-align: center;
        }

        .thanks-card {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .thanks-card i {
            font-size: 4rem;
            color: #ff0000;
            margin-bottom: 1rem;
            display: block;
        }

        .thanks-card p {
            color: #666;
            margin-bottom: 2rem;
        }

      
      
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .thanks-card {
                padding: 1.5rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

    

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 1.8rem;
            color: white;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #ffdddd;
        }

        .nav-link i {
            margin-right: 0.5rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-overlay {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 255, 255, 0.7));
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1rem;
            animation: slide-in 1s ease-out;
        }

        .hero-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
        }

        .btn-primary:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
        }

        .btn-primary i {
            margin-right: 0.5rem;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            font-weight: bold;
        }

        .section-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .content-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .content-card h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .content-card h3 i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .content-card p {
            color: #666;
            margin-bottom: 1rem;
        }

        .content-card ul {
            list-style: none;
            padding-left: 0;
        }

        .content-card ul li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 1.5rem;
        }

        .content-card ul li i {
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links, .footer-contact, .footer-responsible {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-link, .responsible-link {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover, .responsible-link:hover {
            color: #ff0000;
        }

        .footer-link i, .responsible-link i {
            margin-right: 0.5rem;
        }

        .footer-disclaimer {
            border-top: 1px solid #555;
            padding-top: 2rem;
            text-align: center;
            color: #ccc;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #ff0000;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-10px) rotate(-45deg);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .content-card {
                padding: 1.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes slide-in {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
 