* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
               line-height: 1.6;
  color: #333;
	 background-color: #fafafa;
}

.main-header {
  position: fixed;
    top: 0;
    left: 0;
   right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   border-bottom :1px solid #e5e7eb;
   z-index: 1000;
   transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-header.hidden {
  transform: translateY(-100%);
}

.nav-container


{
   max-width: 1200px;
   margin: 0 auto;
	padding: 0 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
  height: 70px;
}

.company-logo {
  height: 45px;
    width: auto;
}

.desktop-nav {
  display:       flex;
   gap: 32px;
}

.nav-item {
   text-decoration: none;
    color: #374151;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
    font-size: 16px;
}

.nav-item:hover, .nav-item.active {
  color: #2563eb;
}

.nav-item::after {
  content: '';
    position: absolute;
     bottom: -5px;
	left: 0;
  width  :  0;
         height: 2px;
    background: #2563eb;
         transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
   width    :    100%;
}

.mobile-toggle {
       display: none;
    flex-direction: column;
                    cursor: pointer;
    padding: 8px;
	 gap: 4px;
}

.burger-line {
   width: 24px;
  height: 3px;
    background: #374151;
	transition :        all 0.3s ease;
   border-radius :      2px;
}

.mobile-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
       display: none; 
   position     :      absolute; 
	top: 100%; 
   left: 0; 
    right: 0; 
  background: white; 
         border-top: 1px solid #e5e7eb; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
   display: block;
}

.mobile-nav-item {
  display  : block;
  padding: 16px 20px;
    text-decoration: none;
    color: #374151;
  font-weight: 500;
        border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.mobile-nav-item:hover {
	background-color: #f9fafb;
  color: #2563eb;
}

.page-content {
  margin-top: 70px;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 80px 0;
    min-height: 600px;
    display: flex;
	align-items: center;
}

.hero-container {
  max-width: 1200px;
   margin: 0 auto;
    padding :       0 20px;
  display    :   grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items:      center;
}

.hero-title {
   font-size:3.5rem;
         font-weight: 700;
   line-height: 1.2;
	margin-bottom :24px;
}

.hero-description {
  font-size: 1.2rem;
    margin-bottom: 32px;
               opacity:     0.9;
  line-height: 1.6;
}

.hero-actions {
   display: flex;
    gap: 20px;
  flex-wrap:     wrap;
}

.primary-btn, .secondary-btn {
  padding: 14px 28px;
   text-decoration: none;
   border-radius: 8px;
     font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
   font-size: 16px;
}

.primary-btn {
  background :    #f59e0b; 
	   color    :  white; 
	         border: 2px solid #f59e0b;
}

.primary-btn:hover {
   	background: #d97706;
 border-color: #d97706;
  transform: translateY(-2px);

}

.secondary-btn {
   background: transparent;
    color: white;
  border :     2px solid white;
}

.secondary-btn:hover {
   color: #667eea;
    background: white;
}

.hero-image {
    width: 100%;
   border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.intro-section, .services-section, .testimonials-section {


  padding: 80px 0;
	}

.content-wrapper {
    margin: 0 auto;
  padding: 0 20px;
    max-width: 1200px;
}

.section-heading {
    font-size: 2.5rem;

   font-weight: 700;

    color: #1f2937;

  margin-bottom: 48px;
}

.section-heading.centered {
	text-align: center;
}

.intro-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.intro-card {
   background: white;
    padding  :        32px;
	border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-title {
     font-size: 1.5rem;
		font-weight: 600;
          color  :#2563eb;
    margin-bottom: 16px;
}

.card-text  {
   color: #6b7280;
     line-height     :     1.7; 
	
}  

.services-layout {

  display: flex;
  flex-direction: column;
 gap: 60px; 
	}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 48px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-item.reverse {
   direction: rtl;
}

.service-item.reverse .service-content {
    direction    : ltr;
}

.service-img {
  width     :  100%;
  border-radius: 12px;


}

.service-title {
  font-size: 1.8rem;

   font-weight: 600;

   color: #1f2937;

    margin-bottom: 16px;
}

.service-description {
  color: #6b7280;
      margin-bottom: 20px;
	 line-height: 1.6;
}

.service-features {

    list-style: none;
}

.service-features li {
  padding: 8px 0;
   color    :        #374151;
  position: relative;
	padding-left: 24px;
}

.service-features li::before {
  content: "✓";
          position: absolute;
  left: 0;
	color: #10b981;
   font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
    padding: 80px 0;
}

.cta-container {
		max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.cta-title {
   font-size: 2.5rem;
  font-weight: 700;
   margin-bottom: 24px;
}

.cta-text {
   font-size :       1.1rem;
   opacity: 0.9;
        margin-bottom :    32px;
   line-height: 1.6;
}


.cta-button {
  background:     #f59e0b;
   color: white;
   padding: 16px 32px;
    text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
	font-size: 16px;
	 transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  background: #d97706;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

.cta-image {
   width: 100%;
   border-radius: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
     }

.testimonial-card {
  background: white;
  padding: 32px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #2563eb;
}

.testimonial-text {
   color: #374151;
   font-style: italic;
	margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author strong {
      color: #1f2937;
  display: block;
  margin-bottom: 4px;}

.testimonial-author span {
    color: #6b7280; 
   font-size: 0.9rem;
}

.contact-section   {

   background: #f9fafb;
    padding: 80px 0;}

.contact-container {
   display: grid;
   padding: 0 20px;
  margin: 0 auto;
  gap: 60px;
    max-width     :1200px;
   grid-template-columns: 1fr 1fr;
}

.contact-title {


       font-size: 2.5rem;

	   font-weight: 700;

	  color : #1f2937;

	  margin-bottom: 24px;
     }

.contact-description {
   color: #6b7280;
  margin-bottom: 32px;
   line-height: 1.6;
                    font-size: 1.1rem;
}

.contact-details {
	display: flex;
    flex-direction: column;
         gap: 16px;
}

.detail-item {
    display: flex;
    gap: 12px;

}

.detail-item strong {
  min-width: 100px; 
    color: #374151;
}

.contact-form {
	background: white;
   padding: 40px;
    border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {

	    margin-bottom  :    24px;


}

.form-group label  
  {
    display: block;
   margin-bottom: 8px;
	 font-weight: 500;
	color     :#374151;
}

.form-group input, .form-group select, .form-group textarea 
 {
	width: 100%;
         padding: 12px 16px;
   -o-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
    border: 2px solid #e5e7eb;
   border-radius: 8px;
   -webkit-transition: border-color 0.3s ease;
  font-size: 16px;
   transition: border-color 0.3s ease;
   background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
   background: #2563eb;
                    color: white;
   padding: 14px 32px;
   border: none;
    border-radius: 8px;
    font-size: 16px;
  font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   width: 100%;
} 

.submit-btn:hover {
    background: #1d4ed8;
  transform: translateY(-2px);
}


.site-footer {
    color: white;
               background: #1f2937;
   padding    : 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
                    margin: 0 auto;
    padding :0 20px;
  display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
}

.footer-logo {
	 height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {


  font-size     :    1.1rem;
    font-weight: 600;
               margin-bottom: 16px;
	color: white;}

.footer-link {
   display: block;
  color: #d1d5db;
   text-decoration: none;
    margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
	color: #f59e0b;
}

.footer-contact {
	 color: #d1d5db;
   margin-bottom: 8px;
}

.footer-bottom {
	max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #374151;
   text-align :      center;
   color: #9ca3af;
    margin-top: 40px;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container, .cta-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-item, .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 24px;
    }
}.animate-in {
       animation: fadeInUp 0.6s ease forwards;
	}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.about-hero {
	  background: linear-gradient(120deg, #2563eb 0%, #1e40af 100%); 
   color: white; 
   padding:       100px 0 80px; 
    min-height: 500px; 
   display: flex; 
   align-items: center;
     }

.about-hero-container {
   max-width    :  1200px;
  margin: 0 auto;
    padding: 0 20px;
   display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-main-title {

   font-size: 3rem;
   font-weight :       700;
      line-height: 1.2;
  margin-bottom: 20px;

}

.about-hero-text {
  font-size: 1.15rem;
	 opacity: 0.92;
   line-height: 1.7;
}

.about-hero-img
	{
	width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.company-story {
	padding     :      90px 0;
   background: #f8fafc;
}

.story-wrapper {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.story-heading {

		 font-size: 2.8rem;
	 font-weight: 700;
   color: #1f2937;
  margin-bottom: 50px;
  text-align   :     center;

}

.story-content 
 {
   display: grid;
    grid-template-columns: 1.3fr 1fr;
  gap    :  60px;
    align-items: center;
}

.story-paragraph
	{
   font-size: 1.1rem;
   color: #4b5563;
 line-height: 1.8;
    margin-bottom: 24px;
}

.story-image {
    width  :100%;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.team-section		{
   padding: 90px 0;
  background: white;
}

.team-container {
	max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto; 

}

.team-title {
   font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
               text-align: center;
  margin-bottom: 60px;
}

.team-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;}

.team-member{
    background: #f9fafb;
    padding: 35px 28px;
   border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.member-name {
    font-size     : 1.4rem;
   font-weight: 600;
  color: #2563eb;
   margin-bottom: 8px;
}

.member-role {
  color: #6b7280;
  font-weight: 500;
  display: block;
   margin-bottom: 16px;
}

.member-bio {
    color: #374151;
  line-height: 1.6;
   font-size: 0.95rem; 
	
}

.values-section {
    padding: 90px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.values-wrapper {
  max-width: 1200px;
    margin: 0 auto;
       padding: 0 20px;
}

.values-heading {
   font-size: 2.8rem;
    font-weight: 700;
  color: #1f2937;
	 text-align :      center;
    margin-bottom: 60px;
}

.values-layout {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
}

.value-card {
                    background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #f59e0b;
}

.value-title

{
    font-size: 1.5rem;
  font-weight: 600;
         color: #1f2937;
   margin-bottom: 18px;
}

.value-description {
	color: #6b7280;
    line-height: 1.7;
   font-size: 1rem;
	}

.methodology-section {
         padding: 90px 0;
          background: white;
}

.methodology-container {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
} 

.methodology-title {
    font-size: 2.8rem;
  font-weight: 700;
   color: #1f2937;
    text-align: center;
  margin-bottom: 60px;
}

.methodology-content {
  display: grid;
  grid-template-columns   : 1.4fr 1fr;
  gap: 70px;
    align-items: start;
}

.method-subtitle {

   font-size: 1.8rem; 
	   font-weight: 600; 
	  color: #2563eb; 
	  margin-bottom: 20px;}

.method-description {
	  color    :     #6b7280;
  font-size:     1.1rem;
    line-height: 1.7;
  margin-bottom: 40px;}

.phases-list {
  display  :       flex;

	    flex-direction   : column;

	   gap: 30px;
}

.phase-item {
    display: flex;
                    align-items: flex-start;
    gap: 20px;
}

.phase-number {
   background: #2563eb; 
	   color: white; 
	  width: 45px; 
	          height: 45px; 
	  border-radius :  50%; 
	    display: flex; 
	   align-items: center; 
	    justify-content:      center; 
	  font-weight: 600; 
	  font-size: 1.1rem; 
	  flex-shrink: 0;
}

.phase-title {
  font-size: 1.2rem;
		 font-weight: 600;
  color    :      #1f2937;
   margin-bottom: 8px;
}

.phase-text {


  color: #6b7280;
   line-height: 1.6;


}

.methodology-img {
   width: 100%;
    border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.success-section {
   padding: 90px 0;
  background: #1f2937;
    color: white;
}

.success-wrapper {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.success-heading {
  font-size: 2.8rem;
    font-weight     :    700;
    text-align     :    center;
    margin-bottom: 60px;
}

.stats-grid {
   	display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 60px;
	


}

.stat-card {
  text-align: center;
   padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
   display: block;
   font-size: 3rem;
    font-weight: 700;
   color: #f59e0b;
   margin-bottom: 12px; 

	}

.stat-label {
    color    : #d1d5db;
  font-size: 1rem;
   font-weight:        500;
}

.success-image-container     {
  text-align: center;
}

.success-image {
	max-width  : 600px;
    width: 100%;
	 border-radius    :16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
   padding: 100px 0 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    min-height: 70vh;
   display   :     flex;
  align-items: center; 
	
}

.thankyou-container     {
          max-width     :      1200px;
  margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns :        1.2fr 1fr;
  gap: 60px;
   align-items: center;
}

.success-icon {
  text-align: center;
	margin-bottom :     30px;
}

.checkmark-circle {
   width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
    display     : inline-flex;
	align-items     :    center;
   justify-content: center;
	margin: 0 auto;
}

.checkmark {
	   width: 30px;
	height: 30px;
    border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);
   margin-top: -8px;
	}

.thankyou-title {
   font-size:    3rem;
    font-weight: 700;
   margin-bottom: 24px;
    text-align: center;
}

.thankyou-description    {
  font-size: 1.2rem;
  opacity   :        0.9;
   line-height:    1.7;
    text-align: center;
    margin-bottom: 40px;
}

.next-steps {
    margin-bottom: 40px;
}

.steps-title {
   	 font-size  :    1.8rem;
	font-weight: 600;
   margin-bottom: 30px;
   text-align: center;

}

.steps-list {
   display :flex;
  flex-direction: column;
   gap: 25px;
}

.step-item {
    display: flex;
	align-items: flex-start;
   gap: 20px;
  background: rgba(255, 255, 255, 0.1);
   padding: 20px;
  border-radius: 12px;
}

.step-number {
   background: white;
         color: #10b981;
    width     :     35px;
	height: 35px;
    border-radius: 50%;
   display: flex;
	 align-items: center;
  justify-content: center;
   font-weight:      600;
  flex-shrink: 0;
}

.step-title {
    font-size: 1.1rem;
      font-weight: 600;
   margin-bottom: 6px;

}

.step-text {
    opacity: 0.9;
  line-height: 1.5;
    font-size   :     0.95rem;
}

.thankyou-actions {
  display: flex;
   gap: 20px;
   justify-content: center;
    flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
  padding: 14px 28px;

		text-decoration: none;

	 border-radius   :        8px;

	    font-weight: 600;

	    transition   :        all 0.3s ease;

	   display: inline-block;

	   font-size: 16px;
}

.primary-action-btn {

  background: white;
   border: 2px solid white;
   color   :  #10b981;

}

.primary-action-btn:hover
	{
	background: #f3f4f6;

	  transform: translateY(-2px);
}

.secondary-action-btn {
  color: white;
	background: transparent;
   border: 2px solid white;
}

.secondary-action-btn:hover {
   background: white;
   color: #10b981;
}

.thankyou-image {
   width: 100%;
  border-radius     :        16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-section    {
   padding  :       80px 0;
	background     : #f8fafc;
}

.info-wrapper {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;

}

.info-heading{
   font-size: 2.5rem;
	 font-weight: 700;
    color: #1f2937;
          text-align  :   center;
  margin-bottom: 50px;
	
}

.info-grid    {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.info-card {
  background: white;
   padding: 30px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #10b981;
}

.info-title {
    font-size: 1.3rem;
       font-weight: 600;
  color: #1f2937;
  margin-bottom     :  15px;
}

.info-text {
   color: #6b7280;
   line-height: 1.6;
}

.contact-reminder {
	padding: 60px 0;
   background: white;
}

.reminder-container {
    max-width: 800px;
    margin: 0 auto;
  padding: 0 20px;
   text-align: center;
}

.reminder-title {
    font-size: 2rem;
   font-weight: 700;
               color: #1f2937;
   margin-bottom: 20px;
}

.reminder-text


{
    color :        #6b7280;
  font-size: 1.1rem;
    line-height: 1.6;
   margin-bottom: 30px;
}

.contact-info-quick   {
  display: flex;
  justify-content: center;
   gap: 40px;
          flex-wrap: wrap;
}

.quick-contact-item    {
    display: flex;
   gap: 8px;
   align-items: center;}

.quick-contact-item strong {
   color :   #374151;
}

.quick-contact-item span {
   color: #6b7280; 

}@media (max-width: 768px) {
    .about-hero-container, .story-content, .methodology-content, .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-main-title, .thankyou-title {
        font-size: 2.2rem;
    }
    
    .story-heading, .team-title, .values-heading, .methodology-title, .success-heading {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-btn, .secondary-action-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 15px;
    }
    
    .phase-item, .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-main-title, .thankyou-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-member, .value-card, .info-card {
        padding: 25px 20px;
    }
}