/* information.css — page-specific styles */

/* Content Sections */
        .content-section {
            padding: 4rem 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .content-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary-100);
        }

        .content-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }

        .content-section p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .content-section ul, .content-section ol {
            margin: 1rem 0 1.5rem 1.5rem;
            color: var(--text-secondary);
        }

        .content-section li {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .content-section strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Step Cards */
        .steps-grid {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .step-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateX(8px);
            border-color: var(--primary-light);
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content h3 {
            margin: 0 0 0.5rem;
            color: var(--text-primary);
            font-size: 1.125rem;
        }

        .step-content p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Info Boxes */
        .info-box {
            background: var(--primary-50);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }

        .info-box.warning {
            background: #FEF3C7;
            border-left-color: var(--warning);
        }

        .info-box.success {
            background: #F0FDF4;
            border-left-color: var(--success);
        }

        .info-box h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        /* Document List */
        .doc-list {
            display: grid;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .doc-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-gray);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .doc-item:hover {
            background: var(--primary-50);
            transform: translateX(4px);
        }

        .doc-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            box-shadow: var(--shadow-sm);
        }

        /* Pricing Table */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .price-table th {
            background: var(--bg-gray);
            font-weight: 600;
            color: var(--text-primary);
        }

        .price-table tr:hover {
            background: var(--primary-50);
        }

        /* Footer */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 1rem;
            }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .footer-content { grid-template-columns: 1fr; }
            .step-card { flex-direction: column; }
        }
