        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #941B80 0%, #0096AE 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        header h1 {
            color:#0096AE;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        header p {
            color: #666;
            font-size: 1.1rem;
        }

        .intro {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .intro h2 {
            color: #0096AE;;
            margin-bottom: 15px;
        }

        .licenses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .license-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .license-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .license-card h3 {
            color: #0096AE;;
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .license-icon {
            font-size: 2rem;
        }

        .license-card .subtitle {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-style: italic;
        }

        .license-card ul {
            list-style: none;
            padding-left: 0;
        }

        .license-card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .license-card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0096AE;;
            font-weight: bold;
        }

        .price-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .price-section h2 {
            color: #0096AE;;
            margin-bottom: 20px;
            text-align: center;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .price-table th,
        .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .price-table th {
            background: #0096AE;;
            color: white;
            font-weight: 600;
        }

        .price-table tr:hover {
            background: #f5f5f5;
        }

        .requirements {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .requirements h2 {
            color: #0096AE;;
            margin-bottom: 20px;
        }

        .requirements ul {
            list-style: none;
            padding-left: 0;
        }

        .requirements ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px solid #eee;
        }

        .requirements ul li::before {
            content: "📋";
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .important-note {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .important-note h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        footer p {
            color: #666;
        }

        footer a {
            color: #0096AE;;
            text-decoration: none;
            font-weight: 600;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            .licenses-grid {
                grid-template-columns: 1fr;
            }

            .price-table {
                font-size: 0.9rem;
            }

            .price-table th,
            .price-table td {
                padding: 10px;
            }
        }