
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: #000;
            color: #fff;
            line-height: 1.8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .fire-icon {
            font-size: 60px;
            margin-bottom: 20px;
            animation: flicker 2s infinite;
        }

        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        h1 {
            font-size: 3em;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }

        h2 {
            font-size: 1.8em;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .subtitle {
            font-size: 1.3em;
            color: #DAA520;
            margin-bottom: 40px;
        }

        /* Authority Strip */
        .authority {
            background: rgba(218, 165, 32, 0.1);
            border: 2px solid #DAA520;
            border-radius: 15px;
            padding: 30px;
            margin: 40px auto;
            max-width: 900px;
        }

        .authority-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .authority-item {
            padding: 15px;
        }

        .authority-item i {
            font-size: 50px;
        }

        .authority-item span {
            font-size: 2em;
            display: block;
            margin-bottom: 10px;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
            color: #000;
            padding: 20px 50px;
            font-size: 1.4em;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
            margin: 20px 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
        }

        /* Problem Section */
        .problem {
            background: #0a0a0a;
            padding: 80px 20px;
        }

        .problem h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #DAA520;
        }

        .problem-list {
            max-width: 800px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.05);
            border-right: 4px solid #DAA520;
            padding: 30px;
            border-radius: 10px;
        }

        .problem-item {
            color: #DAA520;
            font-size: 1.4em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .problem-item::before {
            font-size: 1.5em;
        }

        .truth-box {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border: 2px solid #DAA520;
            border-radius: 15px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .truth-box h3 {
            color: #DAA520;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .truth-box p {
            font-size: 1.3em;
            line-height: 1.8;
        }

        /* Solution Section */
        .solution {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 80px 20px;
        }

        .solution h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #DAA520;
        }

        .value-stack {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(218, 165, 32, 0.05);
            border: 2px solid #DAA520;
            border-radius: 20px;
            padding: 40px;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.3em;
        }

        .value-item::before {
            color: #DAA520;
            font-size: 1.5em;
            font-weight: bold;
        }

        .value-item i{
            color: #DAA520;
        }

        .why-free {
            background: #000;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }

        .why-free h3 {
            color: #DAA520;
            font-size: 2em;
            margin-bottom: 15px;
        }

        /* Offer Section */
        .offer {
            background: #0a0a0a;
            padding: 80px 20px;
        }

        .offer h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 60px;
            color: #DAA520;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .course-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border: 3px solid #DAA520;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(218, 165, 32, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(218, 165, 32, 0.3);
        }

        .course-card:hover::before {
            opacity: 1;
        }

        .course-content {
            position: relative;
            z-index: 1;
        }

        .course-title {
            font-size: 1.8em;
            color: #DAA520;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .course-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .course-detail span {
            font-size: 1.3em;
        }

        .course-detail i {
            color: #DAA520;
        }

        .course-outcome {
            background: rgba(218, 165, 32, 0.1);
            border-right: 3px solid #DAA520;
            padding: 20px;
            margin-top: 25px;
            border-radius: 10px;
        }

        .course-outcome strong {
            color: #DAA520;
        }

        /* Target Audience */
        .target {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 80px 20px;
        }

        .target h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #DAA520;
        }

        .target-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto 40px;
        }

        .target-item {
            background: rgba(218, 165, 32, 0.05);
            border: 2px solid #20da4f;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            font-size: 1.2em;
            transition: all 0.3s ease;
        }

        .target-item:hover {
            background: rgba(218, 165, 32, 0.1);
            transform: scale(1.05);
        }

        .not-for {
            background: rgba(255, 0, 0, 0.1);
            border: 2px solid #ff4444;
            border-radius: 15px;
            padding: 25px;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.2em;
        }

        /* Bonuses */
        .bonuses {
            background: #0a0a0a;
            padding: 80px 20px;
        }

        .bonuses h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #DAA520;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .bonus-item {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border: 2px solid #DAA520;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .bonus-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(218, 165, 32, 0.3);
        }

        .bonus-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .bonus-text {
            font-size: 1.2em;
        }

        /* Details Section */
        .details {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 80px 20px;
        }

        .details h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #DAA520;
        }

        .details-box {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(218, 165, 32, 0.05);
            border: 2px solid #DAA520;
            border-radius: 20px;
            padding: 40px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-size: 1.3em;
        }

        .detail-item span {
            font-size: 1.5em;
        }

        /* Support Section */
        .support {
            background: #0a0a0a;
            padding: 80px 20px;
            text-align: center;
        }

        .support h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #DAA520;
        }

        .support-box {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border: 2px solid #DAA520;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
        }

        .support-text {
            font-size: 1.3em;
            margin-bottom: 25px;
        }

        .whatsapp-button {
            display: inline-block;
            background: #25D366;
            color: #fff;
            padding: 18px 40px;
            font-size: 1.3em;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-button:hover {
            background: #1ebe57;
            transform: scale(1.05);
        }

        /* Exit Hook */
        .exit-hook {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 80px 20px;
            text-align: center;
        }

        .exit-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.5em;
            line-height: 2;
        }

        .exit-content .phone-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .exit-content .phone-icon i {
            color: #DAA520;
        }

        .exit-highlight {
            color: #DAA520;
            font-size: 1.8em;
            font-weight: bold;
            margin: 30px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.5em;
            }

            .subtitle {
                font-size: 1.1em;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 1.2em;
            }
        }

        /* Hover Effects for Social Icons */
    footer a:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5) !important;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        footer > div > div:first-child > div:first-child {
            font-size: 2em !important;
        }
        
        footer a {
            width: 50px !important;
            height: 50px !important;
        }
        
        footer a svg {
            width: 22px !important;
            height: 22px !important;
        }
    }