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

    body, button, input, select, textarea {
      font-family: "Vazirmatn", sans-serif;
    }

    /* ── BODY ── */
    body {
      background-color: #0b0d2a;
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

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


    /* ─── Header ─────────────────────────────────────────── */
    header {
      background: #0a0e27;
      border-bottom: 1px solid #374151;
      padding: 1rem 0;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-circle {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #22d3ee, #2563eb);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .search-container {
      flex: 1;
      max-width: 28rem;
      position: relative;
    }

    .search-icon {
      position: absolute;
      left: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      pointer-events: none;
    }

    .search-input {
      width: 100%;
      background: #1a1f3a;
      border: 1px solid #374151;
      border-radius: 9999px;
      padding: 0.5rem 1rem 0.5rem 2.5rem;
      color: white;
      font-size: 0.875rem;
    }

    .search-input::placeholder { color: #6b7280; }
    .search-input:focus {
      outline: none;
      border-color: #3b82f6;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.2s;
      font-size: 0.95rem;
    }

    nav a:hover,
    nav a.active { color: white; }

    .header-icons {
      display: flex;
      gap: 0.75rem;
      margin-left: 1rem;
    }

    .icon-btn {
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 0.4rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
    }

    .icon-btn:hover { color: #d1d5db; }

    /* ─── Hero ───────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, #0a0e27, rgba(10,14,39,.8), transparent);
    }

    .hero-overlay-bottom {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, #0a0e27, transparent);
    }

    .hero-content {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .hero-text h1 {
      font-size: clamp(2rem, 5vw, 3.75rem);
      font-weight: bold;
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .hero-text p {
      font-size: 1.125rem;
      color: #d1d5db;
    }

    /* ─── Main Content ───────────────────────────────────── */
    .main-content {
      flex: 1;
      padding: 3rem 0;
    }

    /* ─── Section Headers ────────────────────────────────── */
    .section-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

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

    section + section { margin-top: 3rem; }

    /* ─── News ───────────────────────────────────────────── */
    .news-grid {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .news-card {
      background: rgba(21,25,53,.5);
      backdrop-filter: blur(8px);
      border: 1px solid #374151;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .news-card:hover { border-color: rgba(59,130,246,.5); }

    .news-content {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .news-image {
      width: 16rem;
      height: 8rem;
      flex-shrink: 0;
      border-radius: 0.5rem;
      overflow: hidden;
      background: #374151;
    }

    .news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .news-date {
      color: #9ca3af;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .news-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }

    .news-description {
      color: #9ca3af;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: #60a5fa;
      font-weight: 500;
      font-size: 0.875rem;
      margin-top: 1rem;
      cursor: pointer;
      padding: 0;
      text-align: left;
      transition: color 0.2s;
    }

    .read-more-btn:hover { color: #93c5fd; }

    /* ─── Reviews ────────────────────────────────────────── */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .review-card {
      background: rgba(21,25,53,.5);
      backdrop-filter: blur(8px);
      border: 1px solid #374151;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .review-card:hover { border-color: rgba(59,130,246,.5); }

    .review-image {
      height: 14rem;
      overflow: hidden;
      background: #374151;
    }

    .review-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .review-card:hover .review-image img { transform: scale(1.05); }

    .review-content { padding: 1.25rem; }

    .review-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .star-rating {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 0.75rem;
    }

    .star { width: 1rem; height: 1rem; }
    .star.filled { fill: #fbbf24; }
    .star.empty  { fill: #4b5563; }

    .review-text {
      color: #9ca3af;
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    /* ─── Footer ─────────────────────────────────────────── */
    footer {
      background: #0a0e27;
      border-top: 1px solid #374151;
      padding: 3rem 0 0;
      margin-top: auto;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2.5rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .footer-logo h3 {
      font-size: 1.25rem;
      font-weight: bold;
    }

    .footer-description {
      color: #9ca3af;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    .footer-section h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: white;
    }

    .footer-section ul { list-style: none; }
    .footer-section ul li { margin-bottom: 0.6rem; }

    .footer-section ul a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .footer-section ul a:hover { color: white; }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-top: 0.5rem;
    }

    .social-icon {
      color: #9ca3af;
      transition: color 0.2s;
      display: flex;
      align-items: center;
    }

    .social-icon:hover { color: white; }

    .copyright {
      text-align: center;
      color: #6b7280;
      font-size: 0.875rem;
      border-top: 1px solid #374151;
      padding: 1.5rem 0;
    }

    /* ─── Responsive ─────────────────────────────────────── */
    @media (max-width: 1024px) {
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-content { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .news-content { flex-direction: column; }
      .news-image { width: 100%; height: 12rem; }
      .reviews-grid { grid-template-columns: 1fr; }
      .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    }

      
    @font-face {
      font-family: 'Vazirmatn';
      src: url('/static/css/fonts/Vazirmatn/webfonts/Vazirmatn-Regular.woff2') format('woff2'),
          url('/static/css/fonts/Vazirmatn/webfonts/Vazirmatn-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

    body, button, input, select, textarea {
      font-family: 'Vazirmatn', sans-serif !important;
    }