.container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-narrow {
            max-width: 896px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            padding: 5rem 0;
            text-align: center;
            color: var(--primary-foreground);
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 48rem;
            margin: 0 auto;
        }

        /* Section Styling */
        section {
            padding: 5rem 0;
        }

        .bg-muted {
            background-color: var(--secondary);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 3rem;
        }

        .icon-box {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--gradient-primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
        }

        .section-header h2 {
            font-size: 1.875rem;
            font-weight: 700;
        }

        /* Accordion Styles */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion-item {
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            padding: 0 1.5rem;
            background-color: var(--card-bg);
            transition: box-shadow 0.2s;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .accordion-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1rem 0;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            color: var(--foreground);
        }

        .accordion-trigger:hover {
            opacity: 0.8;
        }

        .chevron {
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .accordion-trigger.active .chevron {
            transform: rotate(180deg);
        }

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

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

        .accordion-content-inner {
            padding-bottom: 1rem;
            color: var(--muted-foreground);
            line-height: 1.75;
        }

        /* Card Styles */
        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }

        .card-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
        }



        .card-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .card-content {
            padding: 1.5rem;
        }

        /* Button Styles */
        .btn2 {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid var(--border);
            background-color: var(--card-bg);
            color: var(--foreground);
        }

        .btn2:hover {
            background-color: var(--secondary);
        }

        /* Guidelines Grid */
        .guidelines-grid {
            display: grid;
            gap: 1rem;
        }

        .guideline-item {
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
        }

        .guideline-item h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .guideline-item p,
        .guideline-item ul {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .guideline-item ul {
            margin-top: 0.5rem;
            padding-left: 1.5rem;
        }

        /* Alert Boxes */
        .alert {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
        }

        .alert-warning {
            background-color: #fffbeb;
            border: 1px solid #fde68a;
            color: #92400e;
        }

        .alert-info {
            background-color: #eff6ff;
            border: 1px solid #bfdbfe;
            color: #1e40af;
        }

        .alert-success {
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534;
        }

        .alert strong {
            font-weight: 600;
        }

        /* Expandable Content */
        .expandable-content {
            display: none;
            margin-top: 1rem;
            padding: 1rem;
            background-color: var(--secondary);
            border-radius: 0.5rem;
        }

        .expandable-content.active {
            display: block;
        }

        .expandable-content h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .expandable-content h4 {
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .expandable-content p {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .expandable-content ul {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            padding: 5rem 0;
            text-align: center;
            color: var(--primary-foreground);
        }

        .cta-section h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 42rem;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary2 {
            background-color: white;
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary2:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .btn-outline {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.75rem 1.5rem;
            border: 1px solid white;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

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

            .hero p {
                font-size: 1rem;
            }

            section {
                padding: 3rem 0;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary2,
            .btn-outline {
                width: 100%;
                max-width: 300px;
            }
        }

        /* SVG Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
        }