
        /* Global Container Styles */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header Styles */
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #e67e22;
            padding-bottom: 15px;
        }

        h2 {
            color: #2980b9;
            font-size: 2rem;
            margin: 30px 0 15px;
        }

        h3 {
            color: #16a085;
            font-size: 1.5rem;
            margin: 25px 0 10px;
        }

        /* Table Styles */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .spec-table th {
            background-color: #3498db;
            color: white;
            text-align: left;
            padding: 12px 15px;
            font-weight: 600;
        }

        .spec-table td {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }

        .spec-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .spec-table tr:hover {
            background-color: #f1f9ff;
        }

        /* Comparison Table - South American Football League Style */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #2c3e50;
            color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .comparison-table th {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .comparison-table .champion {
            background-color: #e67e22;
            position: relative;
        }

        .comparison-table .champion::after {
            content: "🏆";
            position: absolute;
            right: 15px;
        }

        .comparison-table .competitor {
            background-color: #7f8c8d;
        }

        .comparison-table td {
            padding: 12px 15px;
            text-align: center;
            border-bottom: 1px solid #34495e;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .advantage {
            color: #d5212e;
            font-weight: bold;
        }

        .comparison-table .advantage::before {
            content: "🥇 ";
        }

        .comparison-table tr:hover {
            background-color: rgba(232, 195, 158, 0.2);
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background-color: #d5212e;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background-color: #b31b26;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }

        /* Content Sections */
        .content-section {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .benefit-list {
            list-style-type: none;
            padding-left: 0;
        }

        .benefit-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .benefit-list li::before {
            content: "✓";
            color: #27ae60;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .faq-item {
            margin-bottom: 20px;
        }

        .faq-question {
            font-weight: bold;
            color: #2980b9;
        }

        .client-proof {
            background: #e8f4fc;
            padding: 20px;
            border-left: 4px solid #3498db;
            margin: 20px 0;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .spec-table, .comparison-table {
                font-size: 0.9rem;
            }
        }
    