.elementor-1401 .elementor-element.elementor-element-1775430{margin:-175px -12px 0px -12px;}/* Start custom CSS for html, class: .elementor-element-efb2ff6 *//* Base Page Styling */
.custom-about-page {
  width: 100%;
  box-sizing: border-box;
  color: #333;
  line-height: 1.8;
  font-family: inherit; /* Uses your WordPress theme's default Persian font */
}

.custom-about-page * {
  box-sizing: border-box;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Screen-reader only class for SEO headings that shouldn't disrupt design */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hero Section (Matches your dark theme) */
.about-hero {
  background: #111; /* Dark background matching your homepage */
  background-image: radial-gradient(circle at 50% -20%, #2a2a2a, #111);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 4px solid #e63946; /* Brand red accent */
}

.about-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #fff;
}

.about-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Section */
.about-content-section {
  padding: 60px 0;
  background-color: #fff;
}

.about-intro-text {
  max-width: 850px;
  margin: 0 auto 50px auto;
  text-align: justify;
  font-size: 1.1rem;
  color: #444;
}

.about-intro-text p {
  margin-bottom: 20px;
}

/* Features Grid */
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.highlight-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #e63946;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 15px 0;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* Contact Box */
.about-contact-box {
  background: #fcf4f4; /* Very subtle red tint */
  border: 1px solid #fad4d7;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.about-contact-box h2 {
  font-size: 1.5rem;
  color: #111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.about-contact-box > p {
  color: #555;
  margin: 0 0 25px 0;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-style: normal;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}

.contact-label {
  color: #666;
}

.contact-value {
  color: #111;
  font-weight: 700;
}

.contact-link {
  color: #e63946;
  font-weight: 700;
  text-decoration: none;
  direction: ltr; /* Keeps the phone number readable in LTR format */
  display: inline-block;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero {
    padding: 50px 0;
  }
  
  .about-content-section {
    padding: 40px 0;
  }
  
  .about-contact-box {
    padding: 30px 20px;
  }

  .about-intro-text {
    text-align: right; /* Often better for mobile reading than justify */
  }
}/* End custom CSS */