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

    body {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        color: #1e293b;
    }

    /* Animated Background */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="80" r="1.8" fill="rgba(255,255,255,0.1)"/></svg>');
        background-repeat: repeat;
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 24px;
        position: relative;
        z-index: 1;
    }

    /* Header Section */
    .header {
        background: rgba(6, 21, 46, 0.85);
        backdrop-filter: blur(20px);
        border-radius: 32px;
        padding: 48px 40px;
        margin-bottom: 32px;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
        position: relative;
        overflow: hidden;
    }

    .header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(99,102,241,0.3), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Title Box Styles */
    .title-box {
        background: linear-gradient(135deg, #4a148c, #6a1b9a);
        border-radius: 60px;
        padding: 16px 32px;
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(2px);
    }
    
    .title-box i {
        font-size: 2.2rem;
        color: #fff;
        text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .title-box h1 {
        color: #fff !important;
        font-size: 2rem;
        margin: 0;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .header p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        letter-spacing: 0.5px;
        margin-top: 20px;
    }

    /* Card Styles */
    .card {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(4px);
        border-radius: 24px;
        padding: 32px;
        margin-bottom: 28px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
    }

    h2 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #4a148c;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-left: 4px solid #6366f1;
        padding-left: 16px;
    }

    h2 i {
        color: #6366f1;
        font-size: 1.5rem;
    }

    /* List Styles */
    ul {
        list-style: none;
        padding-left: 0;
    }

    li {
        padding: 8px 0 8px 28px;
        position: relative;
        line-height: 1.6;
    }

    li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #10b981;
        font-weight: bold;
        font-size: 1.1rem;
    }

    /* Warning and Alert Cards */
    .warning-card {
        background: linear-gradient(135deg, #fffbeb, #fef3c7);
        border-left: 6px solid #f59e0b;
    }

    .danger-card {
        background: linear-gradient(135deg, #fef2f2, #fee2e2);
        border-left: 6px solid #ef4444;
    }

    .info-card {
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
        border-left: 6px solid #3b82f6;
    }

    .contact-card {
        background: linear-gradient(135deg, #ecfdf5, #d1fae5);
        border-left: 6px solid #10b981;
    }

    /* Contact Info Grid */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .contact-item {
        background: white;
        padding: 16px;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }

    .contact-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .contact-item i {
        font-size: 2rem;
        color: #4a148c;
        margin-bottom: 12px;
    }

    .contact-item strong {
        display: block;
        font-size: 1.2rem;
        color: #1e293b;
        margin-top: 8px;
    }

    /* Button */
    .btn-primary {
        background: linear-gradient(135deg, #4a148c, #6a1b9a);
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 40px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 4px 15px rgba(74,20,140,0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(74,20,140,0.4);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    /* WhatsApp Button */
    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    }

    .btn-whatsapp:hover {
        box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    }

    /* Footer */
    footer {
        margin-top: 48px;
        text-align: center;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
        padding: 32px;
        background: rgba(0,0,0,0.3);
        border-radius: 24px;
        backdrop-filter: blur(10px);
    }

    footer a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .container {
            padding: 20px 16px;
        }

        .header {
            padding: 32px 24px;
        }

        .title-box {
            padding: 12px 20px;
            gap: 12px;
        }

        .title-box i {
            font-size: 1.5rem;
        }

        .title-box h1 {
            font-size: 1.3rem;
        }

        .card {
            padding: 24px;
        }

        h2 {
            font-size: 1.3rem;
        }

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

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .card {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }

    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.3s; }
    .card:nth-child(4) { animation-delay: 0.4s; }
    .card:nth-child(5) { animation-delay: 0.5s; }
    .card:nth-child(6) { animation-delay: 0.6s; }
    .card:nth-child(7) { animation-delay: 0.7s; }