
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7bb8 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .main-content {
            background: white;
            margin: -30px auto 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .content-section {
            padding: 40px;
        }

        h2 {
            color: #30A0FF;
            font-size: 2rem;
            margin-bottom: 25px;
            border-bottom: 3px solid #30A0FF;
            padding-bottom: 10px;
        }

        h3 {
            color: #000;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .highlight-box {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7bb8 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }

        .highlight-box h3 {
            color: white;
            margin-bottom: 15px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .comparison-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .comparison-card.winner {
            border-color: #30A0FF;
            background: linear-gradient(135deg, #fff 0%, #e8f4fd 100%);
        }

        .comparison-card.winner::before {
            content: "RECOMMENDED";
            position: absolute;
            top: 15px;
            right: -30px;
            background: #28a745;
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
        }

        .comparison-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .card-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .card-header h3 {
            color: #30A0FF;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .card-header .subtitle {
            color: #666;
            font-style: italic;
        }

        .feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list .check {
            color: #28a745;
            margin-right: 10px;
            font-weight: bold;
        }

        .feature-list .cross {
            color: #dc3545;
            margin-right: 10px;
            font-weight: bold;
        }

        .feature-list .partial {
            color: #ffc107;
            margin-right: 10px;
            font-weight: bold;
        }

        .detailed-comparison {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .detailed-comparison th {
            background: #30A0FF;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .detailed-comparison th.highlight {
            background: #28a745;
        }

        .detailed-comparison td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        .detailed-comparison tr:hover {
            background-color: #f8f9fa;
        }

        .detailed-comparison .winner-cell {
            background-color: #e8f5e8;
            font-weight: 600;
        }

        .strength-analysis {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .strength-card {
            background: #e8f5e8;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid #28a745;
            transition: transform 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-3px);
        }

        .strength-card h4 {
            color: #28a745;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .weakness-analysis {
            background: #fff3cd;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid #ffc107;
            margin: 30px 0;
        }

        .weakness-analysis h3 {
            color: #856404;
            margin-bottom: 20px;
        }

        .weakness-item {
            background: white;
            padding: 20px;
            margin: 15px 0;
            border-radius: 8px;
            border-left: 4px solid #ffc107;
        }

        .weakness-item h4 {
            color: #856404;
            margin-bottom: 10px;
        }

        .testimonial-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }

        .testimonial {
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #30A0FF;
        }

        .cta-section {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: white;
            padding: 50px;
            text-align: center;
            margin: 40px 0;
            border-radius: 15px;
        }

        .cta-section h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #30A0FF;
            color: white;
        }

        .btn-primary:hover {
            background: #1e7bb8;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(48, 160, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #000;
            transform: translateY(-3px);
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .gallery-caption {
            padding: 15px;
            background: white;
            text-align: center;
            font-weight: 500;
        }

        .internal-links {
            background: #e8f4fd;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #30A0FF;
        }

        .internal-links h4 {
            color: #30A0FF;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .internal-links a {
            color: #30A0FF;
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin: 8px 0;
            transition: color 0.3s ease;
        }

        .internal-links a:hover {
            color: #1e7bb8;
            text-decoration: underline;
        }

        .faq-section {
            background: #f8f9fa;
            padding: 50px;
            border-radius: 15px;
            margin: 40px 0;
        }

        .faq-item {
            background: white;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .faq-question {
            background: #30A0FF;
            color: white;
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #1e7bb8;
        }

        .faq-answer {
            padding: 20px;
            display: block;
        }

        .roi-calculator {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
            padding: 40px;
            border-radius: 15px;
            border: 2px solid #28a745;
            margin: 40px 0;
        }

        .roi-calculator h3 {
            color: #28a745;
            text-align: center;
            margin-bottom: 30px;
        }

        .roi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .roi-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .roi-number {
            font-size: 2rem;
            color: #28a745;
            font-weight: bold;
            display: block;
        }

        .roi-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .content-section {
                padding: 20px;
            }

            h2 {
                font-size: 1.5rem;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .strength-analysis {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .detailed-comparison {
                font-size: 0.9rem;
            }

            .detailed-comparison th,
            .detailed-comparison td {
                padding: 10px 5px;
            }

            .roi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .header {
                padding: 40px 0;
            }

            .content-section {
                padding: 15px;
            }

            .cta-section {
                padding: 30px 20px;
            }

            .faq-section {
                padding: 30px 20px;
            }

            .roi-grid {
                grid-template-columns: 1fr;
            }
        }
    