:root {
  --primary-color: #2196f3;
  --secondary-color: #1976d2;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --dark-gray: #666;
  --heading-1: clamp(2rem, 5vw, 2.5rem);
  --heading-2: clamp(1.5rem, 4vw, 2.2rem);
  --heading-3: clamp(1.2rem, 3vw, 1.8rem);
  --body-text: clamp(1rem, 2vw, 1.3rem);
  --small-text: clamp(0.875rem, 1.5vw, 1rem);
}

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

body {
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  direction: rtl;
}

/* New Header Styles */
header {
  background-color: var(--primary-color) !important;
  box-shadow: none;
  padding: 0;
  padding-right: 0;
}

.main-nav.new-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100px;
  background: var(--primary-color);
  flex-direction: row;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  margin-right: 60px;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.header-center h1 {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.icon {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 2px;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.icon:hover {
  color: #000;
}

.header-right .icon {
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  margin-right: 140px;
}

/* Remove old header styles */
.logo,
.nav-links,
.social-icons,
.social-icon {
  display: none !important;
}

@media (max-width: 768px) {
  .main-nav.new-header {
    padding: 0 1rem;
    height: 80px;
    width: 100%;
  }

  .header-center {
    flex-direction: column;
    gap: 10px;
  }

  .header-center h1 {
    font-size: 1.5rem;
  }

  .icon {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }

  header {
    padding-right: 0;
  }

  .header-right .icon {
    font-size: 1.1rem;
    width: 26px;
    height: 26px;
    margin-right: 0;
  }

  .header-left {
    display: none;
  }

  .site-logo {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .main-nav.new-header {
    padding: 0 0.5rem;
    height: 70px;
  }

  .site-logo {
    max-width: 150px;
  }

  .header-right .icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: right;
  padding: 8rem 4vw 4rem 0;
  padding: 6rem 2rem 4rem;
  width: 100%;
  height: 80vh;
  box-sizing: border-box;
  position: relative;
}

.hero-separator {
  width: 100%;
  height: 1px;
  background: #0002;
  margin: 1.5rem 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0);
}

.hero-flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  max-width: 700px;
}

.hero-text-button p {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-gif-corner {
  width: clamp(200px, 30vw, 600px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #f8f8f8;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 3rem;
  }

  .hero-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-button {
    align-items: center;
    text-align: center;
  }

  .hero-text-button p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-gif-corner {
    order: -1;
    width: 250px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem 2rem;
  }

  .hero-flex {
    gap: 1.5rem;
  }

  .hero-text-button p {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .hero-gif-corner {
    width: 200px;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Services Section */
.services {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services h3 {
  font-size: var(--heading-2);
  text-align: center;
  margin-bottom: 3rem;
  grid-column: 1 / -1;
}

.service-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h4 {
  font-size: var(--heading-3);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: var(--body-text);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

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

/* Stats Section */
.stats-section {
  background: #efefef;
  padding: 4rem 0 4rem 0;
  text-align: center;
}

.stats-title {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.stats-desc {
  font-size: var(--body-text);
  color: #222;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.stat-block {
  font-size: var(--body-text);
  color: #222;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.stat-block b {
  font-size: 1.18rem;
  font-weight: bold;
  color: #111;
}

@media (max-width: 700px) {
  .stats-title {
    font-size: 1.5rem;
  }

  .stats-desc,
  .stat-block {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Sidebar Overlay Styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  justify-content: flex-end;
  align-items: stretch;
  direction: ltr !important;
}

.sidebar-overlay.active {
  display: flex;
}

.sidebar {
  background: var(--primary-color);
  width: 350px;
  max-width: 90vw;
  height: 100%;
  padding: 0 24px 24px 24px;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: slideInSidebarRight 0.3s ease;
}

@keyframes slideInSidebarRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.close-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  color: #fff;
  font-size: 1.5rem;
  z-index: 10;
  text-decoration: none;
}

.sidebar-title {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  font-family: "Cairo", sans-serif;
  margin-top: 0;
  padding-top: 0;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.sidebar-links li {
  border-bottom: 1px solid #333;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.sidebar-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 18px 0 12px 24px;
  transition: color 0.2s;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
  padding-right: 24px;
}

.sidebar-links a:hover {
  color: #fff;
  background: #222;
  transition: color 0.4s, background 0.4s;
}

.sidebar-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: auto;
  margin-bottom: 16px;
}

.sidebar-social .icon {
  background: #222;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.5s;
}

.sidebar-social .icon:hover {
  color: #fff;
  transform: translateY(-3px);
  transition: transform 0.5s all;
}

@media (max-width: 500px) {
  .sidebar {
    width: 100vw;
    padding: 24px 8px 16px 8px;
  }

  .sidebar-title {
    font-size: 2.5rem;
  }

  .sidebar-links a {
    font-size: 1.1rem;
  }

  .sidebar-social .icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

.site-logo {
  margin-top: 8px;
  margin-bottom: 0;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  filter: brightness(0) invert(1);
}

.header-left .icon {
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left .icon:hover {
  color: #111;
  transition: color 0.5s all;
}

.header-left .icon i {
  font-size: 1.5rem;
}

.sidebar-title .site-logo {
  max-width: 120px;
}

.hero-logo {
  display: block;
  margin-right: 30vw;
  margin-bottom: 1rem;
  max-width: 400px;
  width: 500px;
  height: 500px;
  filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
  .hero-logo {
    max-width: 200px;
    margin-right: 2vw;
  }
}

.intro-arabic {
  background: #f5f5f5;
  padding: 4rem 2rem;
  margin: 0 0 2rem 0;
  width: 100%;
}

.intro-arabic p {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  line-height: 1.6;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .intro-arabic {
    padding: 3rem 1rem;
  }

  .intro-arabic p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .intro-arabic {
    padding: 2rem 1rem;
  }

  .intro-arabic p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

.important-notice {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  margin: 0 0 2rem 0;
  width: 100%;
}

.important-notice h2 {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.important-notice p {
  font-size: var(--body-text);
  font-weight: 400;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 1rem;
}

.important-notice b {
  font-weight: bold;
}

@media (max-width: 768px) {
  .important-notice {
    padding: 3rem 1rem;
  }

  .important-notice h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .important-notice p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .important-notice {
    padding: 2rem 1rem;
  }

  .important-notice h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .important-notice p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

.account-benefits {
  background: #f7f7f7;
  padding: 4rem 0 4rem 0;
  margin-bottom: 2rem;
}

.benefits-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefits-image img {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.benefits-btn {
  font-family: "Cairo", sans-serif;
  font-size: 1.1rem;
  padding: 0.3rem 1.2rem;
  border-radius: 6px;
  background: #fff;
  color: #222;
  cursor: pointer;
  margin-bottom: 1rem;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.benefits-btn:hover {
  background: #2196f3;
  color: #fff;
}

.benefits-text {
  flex: 2;
  text-align: right;
}

.benefits-text h2 {
  font-size: var(--heading-2);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.benefits-text h3 {
  font-size: var(--heading-3);
  font-weight: bold;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.benefits-text p {
  font-size: var(--body-text);
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .benefits-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .benefits-image img {
    width: 220px;
  }

  .benefits-text h2 {
    font-size: 1.5rem;
  }

  .benefits-text h3 {
    font-size: 1.1rem;
  }

  .benefits-text p {
    font-size: 1rem;
  }
}

.timeline-section {
  padding: 4rem 0 2rem 0;
  background: #fff;
}

.timeline-title {
  font-size: var(--heading-2);
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 4px;
  background: #e0e0e0;
  transform: translateX(50%);
  z-index: 0;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 3.5rem;
  z-index: 1;
}

.timeline-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-step:nth-child(even) {
  flex-direction: row;
}

.timeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #2196f3;
  color: #2196f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  right: 50%;
  top: 0;
  transform: translate(50%, 0);
  z-index: 2;
}

.timeline-icon.done {
  background: #2196f3;
  color: #fff;
  border: 2px solid #2196f3;
}

.timeline-content {
  background: #f3f3f3;
  padding: 1.5rem 2rem;
  border-radius: 6px;
  box-shadow: none;
  min-width: 320px;
  max-width: 400px;
  text-align: right;
  position: relative;
}

.timeline-step:nth-child(odd) .timeline-content {
  margin-left: -7px;
  margin-right: 60px;
}

.timeline-step:nth-child(even) .timeline-content {
  margin-right: -7px;
  margin-left: 60px;
  text-align: left;
}

.timeline-content h3 {
  font-size: var(--heading-3);
  font-weight: bold;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: var(--body-text);
  color: #222;
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .timeline {
    padding: 0 0.5rem;
  }

  .timeline-content {
    min-width: 0;
    max-width: 100%;
    padding: 1rem 1rem;
  }

  .timeline-step:nth-child(odd) .timeline-content {
    margin-right: 40px;
    margin-left: 0;
  }

  .timeline-step:nth-child(even) .timeline-content {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .timeline-section {
    padding: 2rem 0 1rem 0;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .timeline {
    max-width: 100%;
    padding: 0;
  }

  .timeline-content {
    padding: 0.7rem 0.5rem;
    font-size: 0.9rem;
  }

  .timeline-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }

  .timeline-step:nth-child(odd) .timeline-content,
  .timeline-step:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}

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

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .services h3 {
    font-size: 1.8rem;
  }
}

/* About Page Styles */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.breadcrumb {
  font-size: var(--small-text);
  margin-bottom: 1.5rem;
}

.about-container h2 {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: right;
}

.about-container h3 {
  font-size: var(--heading-2);
  font-weight: bold;
  margin: 2rem 0 1rem;
  text-align: right;
  color: #111;
}

.about-container p {
  font-size: var(--body-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: right;
}

.about-container ul,
.about-container ol {
  font-size: var(--body-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
  text-align: right;
}

.about-container li {
  margin-bottom: 0.75rem;
}

.about-container b {
  font-weight: 600;
}

/* Media Queries */
@media (max-width: 768px) {
  .about-container {
    padding: 1.5rem 1rem;
  }

  .about-container h2 {
    margin-bottom: 1.25rem;
  }

  .about-container h3 {
    margin: 1.5rem 0 0.75rem;
  }

  .about-container p,
  .about-container ul,
  .about-container ol {
    margin-bottom: 1.25rem;
  }

  .about-container li {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 1rem 0.75rem;
  }

  .about-container h2 {
    margin-bottom: 1rem;
  }

  .about-container h3 {
    margin: 1.25rem 0 0.5rem;
  }

  .about-container p,
  .about-container ul,
  .about-container ol {
    margin-bottom: 1rem;
  }
}

/* Instagram Verify Page Styles */
.tiktok-hero.instagram {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 4vw, 4rem);
  margin-bottom: 0;
}

.tiktok-hero.instagram h1 {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: 'Cairo', sans-serif;
}

.tiktok-hero.instagram p {
  font-size: var(--body-text);
  font-family: 'Cairo', sans-serif;
  color: #fff;
  margin: 0;
}

.instagram-intro-section {
  background: var(--light-gray);
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  direction: rtl;
}

.instagram-intro-section p {
  font-size: clamp(1.125rem, 2vw, 2rem);
  color: var(--text-color);
  margin: 0 auto;
  min-width: 100%;
  font-family: 'Cairo', sans-serif;
  line-height: 1.8;
  padding-bottom: clamp(16px, 2vw, 24px);
  font-weight: 400;
}

.instagram-info-section {
  background: #fff;
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 4rem);
  margin: 0;
}

.instagram-info-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
}

.instagram-info-section h2 {
  font-size: var(--heading-2);
  font-weight: bold;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: right;
  font-family: 'Cairo', sans-serif;
}

.instagram-info-section p {
  font-size: var(--body-text);
  color: #222;
  margin-bottom: 1.5rem;
  text-align: right;
  font-family: 'Cairo', sans-serif;
  line-height: 1.8;
}

/* Instagram Verify Image Section */
.instagram-image-container {
  width: 100%;
  text-align: center;
  margin: 2rem 0 3rem 0;
}

.instagram-image-container img {
  display: block;
  max-width: 400px;
  /* Adjust based on desired max size */
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Instagram Verification Practices Section */
.instagram-practices-section {
  background: #fff;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.instagram-practices-container {
  max-width: 900px;
  margin: 0 auto;
}

.instagram-practices-section h2 {
  font-size: var(--heading-2);
  font-weight: bold;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: right;
}

.instagram-practices-section h3 {
  font-size: var(--heading-3);
  font-weight: bold;
  color: #222;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: right;
}

.instagram-practices-section p,
.instagram-practices-section ul,
.instagram-practices-section ol {
  font-size: var(--body-text);
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: right;
}

.instagram-practices-section ul,
.instagram-practices-section ol {
  padding-right: 1.5rem;
}

.instagram-practices-section li {
  margin-bottom: 0.75rem;
}

.instagram-practices-section b {
  font-weight: 600;
}

/* Black Background Section (for Instagram Verify Page) */
.instagram-black-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0 0 2rem 0;
  width: 100%;
}

.instagram-black-section h2 {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.instagram-black-section p {
  font-size: var(--body-text);
  font-weight: 400;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Instagram Verification Conditions Section */
.instagram-conditions-section {
  background: var(--light-gray);
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
}

.instagram-conditions-container {
  max-width: 900px;
  margin: 0 auto;
}

.instagram-conditions-section h2 {
  font-size: var(--heading-2);
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: right;
}

.instagram-conditions-section p {
  font-size: var(--body-text);
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: right;
  line-height: 1.8;
}

.instagram-conditions-section ol {
  font-size: var(--body-text);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
  text-align: right;
}

.instagram-conditions-section li {
  margin-bottom: 1rem;
}

.instagram-conditions-section li b {
  font-weight: bold;
}

.instagram-conditions-section a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Instagram Cost Section */
.instagram-cost-section {
  background: #fff;
  width: 100%;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
  text-align: center;
}

.instagram-cost-container {
  max-width: 1100px;
  margin: 0 auto;
}

.instagram-cost-section h2 {
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.instagram-cost-section p {
  font-size: var(--body-text);
  color: #444;
  line-height: 1.8;
}

/* How We Verify Section */
.instagram-how-verify-section {
  background: #fff;
  width: 100%;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
}

.instagram-how-verify-container {
  max-width: 900px;
  margin: 0 auto;
}

.instagram-how-verify-section h2 {
  font-size: var(--heading-2);
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  text-align: right;
}

.instagram-how-verify-section p {
  font-size: var(--body-text);
  color: #444;
  margin-bottom: 1.5rem;
  text-align: right;
  line-height: 1.8;
}

.instagram-how-verify-section h3 {
  font-size: var(--heading-3);
  font-weight: bold;
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: right;
}

/* Request Verification Button Section */
.instagram-request-button-section {
  background: #000;
  width: 100%;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
  text-align: center;
}

.instagram-request-button-section h2 {
  color: #fff;
  font-size: var(--heading-1);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.instagram-request-button-section p {
  color: #fff;
  font-size: var(--body-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.instagram-request-button-section .cta-button {
  background-color: #16a34a;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.instagram-request-button-section .cta-button:hover {
  background-color: #12893b;
}

/* FAQ Section */
.instagram-faq-section {
  background: #fff;
  width: 100%;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
}

.instagram-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.instagram-faq-section h2 {
  text-align: center;
  font-size: var(--heading-2);
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
  width: 100%;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  background: #fff;
  border: none;
  outline: none;
  font-size: var(--body-text);
  font-family: "Cairo", sans-serif;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-chevron {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.5rem 1rem 1.25rem;
  background: #fafafa;
  color: #222;
  font-size: var(--small-text);
  font-family: "Cairo", sans-serif;
  border-top: 1px solid #eee;
  text-align: right;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer Section */
footer {
  background-color: #1a2226;
  color: white;
  padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.footer-section h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-bottom .footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 52px);
  height: clamp(40px, 5vw, 52px);
  background: #222;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  transition: background 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.footer-bottom .footer-social-icon:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  box-shadow: 0 4px 18px 0 rgba(33, 150, 243, 0.25);
  color: #fff;
}

.appointment-btn {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.appointment-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #FF8E53, #FF6B6B);
}

.appointment-btn:hover::before {
  left: 100%;
}

.appointment-btn .btn-text {
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.appointment-btn i {
  font-size: 1.2em;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .header-center {
    flex-direction: column;
    gap: 10px;
  }

  .appointment-btn {
    display: none;
  }
}