/* Start custom CSS for html, class: .elementor-element-3c4cbed */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.3em;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: #FF6B35;
            color: white;
            padding: 18px 40px;
            font-size: 1.2em;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            background: #E55A2B;
        }

        .cta-button-secondary {
            background: white;
            color: #0066CC;
        }

        .cta-button-secondary:hover {
            background: #f0f0f0;
        }

        /* Stats Section */
        .stats {
            padding: 60px 20px;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 3em;
            color: #0066CC;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1em;
            color: #666;
        }

        /* Audience Section */
        .audience {
            padding: 60px 20px;
        }

        .audience h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
            color: #0066CC;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .audience-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #0066CC;
        }

        .audience-card h3 {
            color: #0066CC;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        .audience-card ul {
            list-style: none;
            padding-left: 0;
        }

        .audience-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .audience-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0066CC;
            font-weight: bold;
        }

        /* Performance Metrics */
        .metrics {
            padding: 60px 20px;
            background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
            color: white;
        }

        .metrics h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 20px;
        }

        .metrics-intro {
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .metrics-table {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin: 40px auto;
            max-width: 900px;
        }

        .metrics-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .metrics-table th {
            background: #0066CC;
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 1.1em;
        }

        .metrics-table td {
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
            color: #333;
        }

        .metrics-table tr:last-child td {
            border-bottom: none;
        }

        .metrics-table .your-performance {
            font-weight: bold;
            color: #0066CC;
            font-size: 1.2em;
        }

        /* Why Advertise Section */
        .why-advertise {
            padding: 60px 20px;
        }

        .why-advertise h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
            color: #0066CC;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            color: #0066CC;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        /* Ad Formats */
        .ad-formats {
            padding: 60px 20px;
            background: #f8f9fa;
        }

        .ad-formats h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 40px;
            color: #0066CC;
        }

        .format-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .format-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .format-card:hover {
            transform: translateY(-5px);
        }

        .format-card h3 {
            color: #0066CC;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        .format-card .price {
            font-size: 2em;
            color: #FF6B35;
            font-weight: bold;
            margin: 20px 0;
        }

        .format-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .format-card li {
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .format-card li:last-child {
            border-bottom: none;
        }

        /* Testimonial/Social Proof */
        .social-proof {
            padding: 60px 20px;
            text-align: center;
        }

        .social-proof h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: #0066CC;
        }

        .highlight-box {
            background: #fff4e6;
            border-left: 5px solid #FF6B35;
            padding: 30px;
            margin: 20px auto;
            max-width: 800px;
            text-align: left;
            border-radius: 5px;
        }

        .highlight-box strong {
            color: #0066CC;
            font-size: 1.3em;
        }

        /* CTA Section */
        .final-cta {
            padding: 80px 20px;
            background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 1.3em;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .stat-number {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2em !important;
            }
        }
    </style>/* End custom CSS */