* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        body {
            line-height: 1.6;
            color: #FFFFFF;
            background: #1A1E27;
        }
        .ebay {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: linear-gradient(135deg, #252A34, #1A1E27);
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header__logo-img {
            width: 450px;
            margin-bottom: 20px;
        }
        .header__welcome {
            font-size: 18px;
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: #D3D3D3;
            max-width: 900px;
            margin: 0 auto;
        }
        /* Trust Badges Styles */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 12px 18px;
            border-radius: 10px;
            max-width: 350px;
            font-size: 14px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .trust-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .trust-badge__icon {
            width: 32px;
            height: 32px;
            background: #E9464B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .trust-badge__icon::before {
            content: "✓";
            color: #FFFFFF;
            font-size: 20px;
        }
        .trust-badge__text {
            color: #FFFFFF;
            line-height: 1.4;
        }
        .product {
            padding: 30px 0;
        }
        .content h2 {
            color: #E9464B;
            font-size: 28px;
            margin-bottom: 15px;
        }
        .content p {
            font-size: 16px;
            margin-bottom: 20px;
            color: #FFFFFF;
        }
        .content ul {
            list-style: none;
            margin-bottom: 20px;
        }
        .content ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 16px;
        }
        .content ul li:before {
            content: "➔";
            color: #E9464B;
            position: absolute;
            left: 0;
        }
        /* FAQ Styles */
        .faq {
            margin-top: 30px;
        }
        .faq h3 {
            color: #E9464B;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .faq-item {
            margin-bottom: 10px;
        }
        .faq-question {
            display: block;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            color: #FFFFFF;
            font-weight: 600;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .faq-answer {
            display: none;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 0 0 8px 8px;
            color: #D3D3D3;
            font-size: 14px;
        }
        .faq-toggle {
            display: none;
        }
        .faq-toggle:checked + .faq-question + .faq-answer {
            display: block;
        }
        .faq-question::before {
            content: "▼";
            display: inline-block;
            margin-right: 10px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        .faq-toggle:checked + .faq-question::before {
            transform: rotate(180deg);
        }
        /* About MmonsteR Block */
        .about-mmonster {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        .about-mmonster h3 {
            color: #E9464B;
            font-size: 28px;
            margin-bottom: 20px;
        }
        .about-mmonster p {
            color: #D3D3D3;
            font-size: 16px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }
        .section {
            text-align: center;
            padding: 20px 0;
        }
        .heading--primary {
            font-size: 24px;
            color: #E9464B;
            margin-bottom: 15px;
        }
        .content--small {
            font-size: 14px;
            color: #BBBBBB;
        }
        .footer {
            text-align: center;
            padding: 20px;
            font-size: 14px;
            color: #888888;
        }
        a {
            color: #A335EE;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }