/* =================================
   #PREMIUM ABOUT SECTION
   ================================= */

/* Base Styles */
.about-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3f66, #d4af37, #1e3f66);
  background-size: 200% auto;
  animation: gradientBG 6s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section Header */
.about-section .section-header {
  margin-bottom: 4.5rem;
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

.about-section .section-title {
  color: #1e3f66;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  font-family: 'Playfair Display', serif;
}

.about-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d4af37;
  border-radius: 3px;
}

.about-section .section-subtitle {
  color: #000000 !important; /* Changed to black */
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 1rem auto 0;
  font-weight: 500;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text {
  display: grid;
  gap: 1.5rem;
}

.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3748;
  margin: 0;
}

/* Feature Cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3f66, #d4af37);
  transition: height 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  height: 6px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-title {
  font-size: 1.4rem;
  color: #497EE6; /* Changed to light blue */
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-text {
  color: #497EE6; /* Changed to light blue */
  line-height: 1.7;
  margin: 0;
  opacity: 0.9; /* Slightly transparent for better readability */
}

/* About Hero Content */
.about-hero-content {
    margin-bottom: 4rem;
}

.about-hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-hero-content .subtitle {
    color: #497EE6;
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 2rem auto 4rem;
    font-weight: 500;
}

/* Company Story */
.about-story {
    margin-bottom: 4rem; /* Replaces mb-6 utility class */
}

.about-story .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.about-story .about-text:last-of-type {
    margin-bottom: 3rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-item h3 {
    color: #497EE6;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
}

/* Leadership/Team Section */
.leadership-section {
    margin: 8rem 0 4rem;
    text-align: center;
}

.leadership-section h2 {
    color: #497EE6;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.leadership-section .section-subtitle {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.leadership-member {
    text-align: center;
    flex: 0 0 250px;
}

.leadership-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 3px solid #497EE6;
}

.leadership-member h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #0d1b2a;
}

.leadership-member .role {
    color: #497EE6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


.team-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 63, 102, 0.02) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-radius: 12px;
  border: 1px dashed rgba(30, 63, 102, 0.1);
}

.team-cta p {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Video Section */
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 3rem;
  background: #0d1b2a;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  cursor: pointer;
}

.thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-thumbnail:hover .thumbnail-image {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #1e3f66;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  color: #d4af37;
}

.play-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e3f66;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-badge i {
  color: #d4af37;
  font-size: 1.1rem;
}

.video-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #0d1b2a;
  border-radius: 12px;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(13, 27, 42, 0.4) 0%,
    rgba(30, 63, 102, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.video-thumbnail:hover .image-overlay {
  background: linear-gradient(
    to bottom, 
    rgba(13, 27, 42, 0.5) 0%,
    rgba(30, 63, 102, 0.8) 100%
  );
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover .overlay-content {
  transform: translateY(0);
}

.play-icon {
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  color: #d4af37;
  transform: scale(1.05);
}

.overlay-tagline {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  opacity: 0.95;
}

.video-duration {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.video-thumbnail:hover .video-duration {
  background: rgba(0, 0, 0, 0.5);
  color: #d4af37;
}

/* CTA Section */
.about-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 0 1.5rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.btn-accent i {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.btn-accent:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
  }
  
  .about-cta {
    margin-top: 4rem;
  }
  
  .overlay-tagline {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .about-cta {
    margin-bottom: 2rem;
  }
  
  .btn-accent {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-features > *,
.team-grid > * {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.about-features > *:nth-child(1),
.team-grid > *:nth-child(1) { 
  animation-delay: 0.1s; 
}

.about-features > *:nth-child(2),
.team-grid > *:nth-child(2) { 
  animation-delay: 0.2s; 
}

.about-features > *:nth-child(3),
.team-grid > *:nth-child(3) { 
  animation-delay: 0.3s; 
}

.about-section .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.about-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  transition: all 0.3s ease;
}

.about-section .section-title:hover::after {
  width: 120px;
}

.about-section .section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content Area */
.about-content {
  padding-right: 3rem;
  position: relative;
}

.about-text {
  max-width: 600px;
}

.about-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2.5rem;
}

.about-paragraph::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.about-paragraph:last-of-type {
  margin-bottom: 3rem;
}

/* Team Members Section */
.team-members {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 1.5rem 0;
    overflow-x: auto;
    padding: 10px 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.team-members::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.team-members .signature {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    min-width: 0;
    margin-right: 8px;
}

.team-members .signature:last-child {
    margin-right: 0;
}

.team-members .signature:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.team-members .signature-image {
    margin-right: 8px;
    flex-shrink: 0;
    line-height: 0;
}

.team-members .signature-image img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #D4A73F;
    object-fit: cover;
}

.team-members .signature-details {
    flex: 1;
    min-width: 0;
}

.team-members .signature-name {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 0.85rem;
    margin: 0 0 1px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-members .signature-title {
    color: #D4A73F;
    font-size: 0.7rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

@media (max-width: 480px) {
    .team-members {
        gap: 8px;
        padding: 8px 0 12px;
    }
    
    .team-members .signature {
        padding: 5px 8px;
    }
    
    .team-members .signature-image img {
        width: 32px;
        height: 32px;
    }
    
    .team-members .signature-name {
        font-size: 0.8rem;
    }
    
    .team-members .signature-title {
        font-size: 0.65rem;
    }
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border-light);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stat-value i {
  color: var(--color-accent);
  font-size: 2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Image Area */
.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 500px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.2);
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.7) 0%, rgba(13, 27, 42, 0.1) 100%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.about-image:hover .overlay-content {
  transform: translateY(0);
}

.overlay-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Founder Signature */
.signature {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  position: relative;
}

.signature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

.signature-image {
  margin-right: 1.5rem;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-details {
  flex: 1;
}

.signature-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.signature-title {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 600;
}

/* CTA Button */
.about-cta {
  margin-top: 3rem;
  text-align: center;
}

.about-cta .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Decorative Elements */
.about-decor-1,
.about-decor-2,
.about-decor-3 {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.about-decor-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
}

.about-decor-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  filter: blur(30px);
  border-radius: 50%;
}

.about-decor-3 {
  top: 50%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  filter: blur(25px);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-section {
    padding: 6rem 0;
  }
  
  .about-grid {
    gap: 3rem;
  }
  
  .about-content {
    padding-right: 2rem;
  }
  
  .about-paragraph {
    font-size: 1.05rem;
  }
  
  .stat-value {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .about-section .section-title {
    font-size: 3rem;
  }
  
  .about-section .section-subtitle {
    font-size: 1.15rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    padding-right: 0;
    order: 2;
  }
  
  .about-image {
    order: 1;
    max-width: 700px;
    margin: 0 auto;
    min-height: 400px;
  }
  
  .about-text {
    max-width: 100%;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
  
  .about-section .section-header {
    margin-bottom: 3.5rem;
  }
  
  .about-section .section-title {
    font-size: 2.5rem;
  }
  
  .about-section .section-subtitle {
    font-size: 1.1rem;
  }
  
  .about-paragraph {
    padding-left: 2rem;
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 1.25rem;
  }
  
  .signature {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }
  
  .signature::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .signature-image {
    margin: 0 0 1.5rem 0;
  }
  
  .about-cta {
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-section .section-title {
    font-size: 2.25rem;
  }
  
  .about-section .section-subtitle {
    font-size: 1rem;
  }
  
  .about-paragraph {
    padding-left: 1.75rem;
  }
  
  .signature-name {
    font-size: 1.25rem;
  }
  
  .signature-title {
    font-size: 0.8rem;
  }
}
