        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .f-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        .f-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .f-header h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .f-header p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .f-accordion {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .f-accordion-item {
            border-bottom: 1px solid #e9ecef;
        }

        .f-accordion-item:last-child {
            border-bottom: none;
        }

        .f-accordion-header {
            background: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
        }

        .f-accordion-header:hover {
            background: #f8f9fa;
        }

        .f-accordion-header.active {
            background: #e3f2fd;
            color: #1976d2;
        }

        .f-accordion-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-right: 15px;
        }

        .f-accordion-header.active .f-accordion-title {
            color: #1976d2;
        }

        .f-accordion-icon {
            font-size: 1.2rem;
            color: #3498db;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .f-accordion-header.active .f-accordion-icon {
            transform: rotate(180deg);
            color: #1976d2;
        }

        .f-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .f-accordion-content.active {
            max-height: 2000px;
        }

        .f-accordion-body {
            padding: 0 20px 25px 20px;
            color: #555;
            line-height: 1.7;
        }

        .f-accordion-body h3 {
            color: #2c3e50;
            margin: 15px 0 10px 0;
            font-size: 1.05rem;
        }

        .f-accordion-body ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .f-accordion-body li {
            margin: 8px 0;
            color: #666;
        }

        .f-accordion-body strong {
            color: #2c3e50;
        }

        .f-cta-section {
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
            color: white;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .f-cta-section h2 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .f-cta-section p {
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .f-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .f-cta-button {
            display: inline-block;
            padding: 12px 25px;
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .f-cta-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        .f-cta-button.primary {
            background: white;
            color: #27ae60;
            border-color: white;
        }

        .f-cta-button.primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .f-container {
                max-width: 800px;
                padding: 40px 20px;
            }

            .f-header h1 {
                font-size: 2.2rem;
            }

            .f-header p {
                font-size: 1.1rem;
            }

            .f-accordion-title {
                font-size: 1.2rem;
            }

            .f-cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }