/*/* style-privacy.css - Main CSS for Privacy Page */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #006233;
      --secondary-color: #D21034;
      --accent-color: #F5F5DC;
      --dark-green: #004d29;
      --light-green: #e8f5e9;
      --text-dark: #2c3e50;
      --text-light: #666;
      --white: #ffffff;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      min-height: 100vh;
      color: var(--text-dark);
      line-height: 1.8;
    }

    /* Header Styles */
    header {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
      color: var(--white);
      padding: 1rem 0;
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 3px solid var(--white);
    }

    .logo-text h1 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .logo-text p {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 25px;
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .mobile-menu {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Main Content */
    main {
      max-width: 900px;
      margin: 3rem auto;
      padding: 0 2rem;
    }

    .privacy-container {
      background: var(--white);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: var(--shadow-hover);
      position: relative;
      overflow: hidden;
    }

    .privacy-container::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .page-header {
      text-align: center;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid var(--light-green);
    }

    .page-header i {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      display: block;
    }

    .page-header h2 {
      font-size: 2.2rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .page-header p {
      color: var(--text-light);
      font-size: 1.1rem;
    }

    .last-updated {
      display: inline-block;
      background: var(--light-green);
      color: var(--primary-color);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      margin-top: 1rem;
    }

    .privacy-section {
      margin-bottom: 2.5rem;
    }

    .privacy-section h3 {
      color: var(--primary-color);
      font-size: 1.4rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding-right: 1rem;
      border-right: 4px solid var(--secondary-color);
    }

    .privacy-section h3 i {
      color: var(--secondary-color);
    }

    .privacy-section p {
      color: var(--text-light);
      text-align: justify;
      margin-bottom: 1rem;
    }

    .privacy-section ul {
      list-style: none;
      padding-right: 1.5rem;
    }

    .privacy-section li {
      position: relative;
      padding-right: 1.5rem;
      margin-bottom: 0.8rem;
      color: var(--text-light);
    }

    .privacy-section li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 0;
      color: var(--primary-color);
    }

    .highlight-box {
      background: linear-gradient(135deg, var(--light-green) 0%, #fff 100%);
      border-right: 4px solid var(--primary-color);
      padding: 1.5rem;
      border-radius: 10px;
      margin: 1.5rem 0;
    }

    .highlight-box i {
      color: var(--secondary-color);
      font-size: 1.2rem;
      margin-left: 0.5rem;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .contact-card {
      background: var(--white);
      border: 2px solid var(--light-green);
      padding: 1.5rem;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary-color);
    }

    .contact-card i {
      font-size: 2rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }

    .contact-card h4 {
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .contact-card p {
      color: var(--text-light);
      font-size: 0.95rem;
    }

