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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: transparent;
            min-height: 100vh;
            padding: 20px;
        }
        body::-webkit-scrollbar {
  display: none;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
        }

        .header {
            padding: 20px;
            text-align: center;
        }

        .header img {
            max-width: 600px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .pricing-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px 40px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.267);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(249, 249, 249, 0.3);
        }

        .pricing-card img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            color: #ffffff;
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .price-item {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 10px;
            margin: 10px 0;
            font-weight: 600;
            font-size: 18px;
        }

        .price-item.normal {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .info-section {
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
        }

        .deadline {
            background: #ffcdcdd8;
            border-left: 4px solid #ffc107;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            font-size: 18px;
            font-weight: 600;
            color: #856404;
        }

        h2 {
            color: #ffffff;
            font-size: 28px;
            margin-bottom: 20px;
            border-bottom: 3px solid #dc2626;
            padding-bottom: 10px;
        }

        .benefits-list {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .benefits-list li {
            padding: 15px;
            margin: 10px 0;
            background: #7d4646aa;
            border-left: 4px solid #d76060ca;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .benefits-list li:hover {
            background: #ffcdcdd8;
            transform: translateX(10px);
        }

        .benefits-list li::before {
            content: "✓";
            color: #dc2626;
            font-weight: bold;
            font-size: 20px;
            margin-right: 10px;
        }

        .location-section {
            background: #fefefe00;
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }

        .location-item {
            background: rgba(210, 210, 210, 0.728);
            padding: 20px;
            margin: 15px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .location-item h4 {
            color: #dc2626;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .location-item p {
            color: #555;
            line-height: 1.6;
        }

        .contact-info {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 24px;
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 30px 20px;
            }

            .info-section {
                padding: 30px 20px;
            }

            h2 {
                font-size: 24px;
            }

            .pricing-card h3 {
                font-size: 20px;
            }
        }