.page-thabet-iphone-advantages {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Main text color for dark body background */
  background-color: #000000; /* Ensure this matches body background */
}

.page-thabet-iphone-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-thabet-iphone-advantages__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000; /* Dark background */
  overflow: hidden;
  min-height: 600px; /* Ensure sufficient height */
}

.page-thabet-iphone-advantages__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim image for text readability */
}

.page-thabet-iphone-advantages__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-thabet-iphone-advantages__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-thabet-iphone-advantages__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-thabet-iphone-advantages__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-thabet-iphone-advantages__cta-buttons--center {
  margin-top: 40px;
  justify-content: center;
}

.page-thabet-iphone-advantages__btn-primary,
.page-thabet-iphone-advantages__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box; /* Button responsiveness */
  white-space: normal; /* Button responsiveness */
  word-wrap: break-word; /* Button responsiveness */
}

.page-thabet-iphone-advantages__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-thabet-iphone-advantages__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-thabet-iphone-advantages__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-thabet-iphone-advantages__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-thabet-iphone-advantages__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Section Styling */
.page-thabet-iphone-advantages__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
}

.page-thabet-iphone-advantages__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-thabet-iphone-advantages__intro-section,
.page-thabet-iphone-advantages__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #ffffff;
}

.page-thabet-iphone-advantages__intro-section .page-thabet-iphone-advantages__section-title,
.page-thabet-iphone-advantages__faq-section .page-thabet-iphone-advantages__section-title {
    color: #26A9E0; /* Brand color for titles on lighter dark background */
}