/* About Page Styles */

/* Main Title */
.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
  }
  
  .about-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c40d2e;
  }
  
  /* About Container */
  .about-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* About Intro */
  .about-intro {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
  }
  
  .brand-name {
    color: #c40d2e;
    font-weight: 700;
  }
  
  /* About Sections */
  .about-section {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .about-section-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(143, 0, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #c40d2e;
  }
  
  .about-section-content {
    flex-grow: 1;
  }
  
  .about-section-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .about-section-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .about-section-content p:last-child {
    margin-bottom: 0;
  }
  
  /* Highlight Text */
  .highlight {
    font-weight: 600;
    color: #333;
  }
  
  /* CTA Section */
  .about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(143, 0, 29, 0.1);
  }
  
  .about-cta .btn {
    margin-top: 1.5rem;
    padding: 12px 35px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(143, 0, 29, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .about-cta .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
  }
  
  .about-cta .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(143, 0, 29, 0.3);
    background-color: #6b0016;
  }
  
  .about-cta .btn:hover:before {
    left: 100%;
  }
  
  .about-cta-text {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
  }
  
  /* Button styling */
  .button-tertiary-color {
    background: linear-gradient(145deg, #c40d2e, #a50023);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .button-tertiary-color:hover {
    background: linear-gradient(145deg, #7a0018, #c40d2e);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .about-main-title {
      font-size: 2rem;
    }
  
    .about-section {
      flex-direction: column;
    }
  
    .about-section-icon {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  
    .about-section-content h2 {
      font-size: 1.3rem;
    }
  }
  