
        :root {
            --gold-primary: #D4AF37;
            --gold-dark: #B8960F;
            --gold-light: #8B7355;
            --slate-900: #FFFFFF;
            --slate-800: #F8FAFC;
            --slate-700: #E2E8F0;
            --slate-100: #1E293B;
            --white: #0F172A;
            --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
            --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
            color: var(--slate-100);
            line-height: 1.8;
            overflow-x: hidden;
        }

        .page-container {
            min-height: 100vh;
            position: relative;
            padding: 4rem 2rem;
        }

        /* Decorative Background Elements */
        .bg-decoration {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }

        .bg-decoration-1 {
            background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .bg-decoration-2 {
            background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Section */
        .hero {
            text-align: center;
            margin-bottom: 5rem;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: var(--shadow-gold);
            animation: slideDown 0.8s ease-out 0.2s both;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--gold-primary);
            color: #FFFFFF;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #0F172A;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #0F172A 0%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #B8960F;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #334155;
            max-width: 900px;
            margin: 1.5rem auto 0;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Section Styles */
        .section {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: var(--shadow-subtle);
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease-out both;
        }

        .section:nth-child(2) { animation-delay: 0.1s; }
        .section:nth-child(3) { animation-delay: 0.2s; }
        .section:nth-child(4) { animation-delay: 0.3s; }
        .section:nth-child(5) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold), var(--shadow-subtle);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }

        .section-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold-primary);
            line-height: 1;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.3;
        }

        .subsection {
            margin: 2rem 0;
        }

        .subsection-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #B8960F;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .subsection-title::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold-primary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--gold-primary);
        }

        .text-content {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #334155;
            opacity: 0.95;
        }

        .text-content p {
            margin-bottom: 1rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-right: 4px solid var(--gold-primary);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        .highlight-box strong {
            color: var(--gold-primary);
        }

        ul {
            list-style: none;
            padding-right: 0;
        }

        li {
            position: relative;
            padding-right: 2rem;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        li::before {
            content: '◆';
            position: absolute;
            right: 0;
            color: var(--gold-primary);
            font-size: 0.8rem;
        }

        /* Table Styles */
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            background: rgba(248, 250, 252, 0.8);
            padding: 1.5rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        thead {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
        }

        th {
            padding: 1.2rem 1rem;
            text-align: right;
            font-weight: 700;
            color: var(--gold-primary);
            border-bottom: 2px solid var(--gold-primary);
        }

        td {
            padding: 1.2rem 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            color: #334155;
        }

        tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        tr:last-child td {
            border-bottom: none;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .column-card {
            background: rgba(248, 250, 252, 0.9);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.25);
            transition: all 0.3s ease;
        }

        .column-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
        }

        .column-card h3 {
            color: var(--gold-primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .info-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(212, 175, 55, 0.2);
            color: #B8960F;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0.3rem 0.3rem 0.3rem 0;
            border: 1px solid rgba(212, 175, 55, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .page-container {
                padding: 2rem 1rem;
            }
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
                color: black;
            }

            .bg-decoration {
                display: none;
            }

            .section {
                page-break-inside: avoid;
                border: 1px solid #ddd;
            }
        }
