*


{
     margin: 0;
    padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height    : 1.6;
    color: #2c3e50;
    background:#fff;
}


.main-nav-wrapper {
   position    :fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
    border-bottom: 1px solid #e8ecef;
}

.primary-navigation {
    display: flex;
   justify-content   : space-between;
  align-items: center;
    padding    :1rem 5%;
    max-width  :        1400px;
  margin: 0 auto;
}

.brand-logo-img    {
   height: 45px;
  width: auto;
}

.nav-menu-desktop  {
    display: flex;
    gap: 2.5rem;
}

.nav-link-item {
    text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link-item:hover {
   color: #e74c3c;
}

.nav-burger-icon {
    display  :   none;
  flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {

    width: 25px;
  height: 3px;
	background     :       #2c3e50;
    margin: 2px 0;
   transition: 0.3s;
}

.mobile-nav-overlay {
	position: absolute;
  top: 100%;
   left: 0;
                    width:       100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  transform: translateY(-100%);
         opacity: 0;
  visibility:  hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-overlay.active
	{
  transform: translateY(0); 
    opacity: 1; 
   visibility: visible;
}

.mobile-menu-content     {
  padding: 2rem 5%;

	  display: flex;

		 flex-direction: column;

	  gap: 1.5rem;
}

.mobile-nav-link {

 text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
	 font-weight: 500;
    padding: 0.5rem 0;
  border-bottom: 1px solid #ecf0f1;}

.page-content-wrapper {
    margin-top    :  80px;
}

.hero-banner-section {
   padding: 80px 5% 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-container {
    max-width: 1400px;
      margin: 0 auto;
       display: grid;
      grid-template-columns     :   1fr 1fr;
         gap  :   4rem;
      align-items: center;
}

.hero-main-title {
  font-weight: 700;
   color:  #2c3e50;
    font-size: 3.2rem;
  line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description-text     {
   font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-action-buttons		{
   display: flex;

  gap: 1.5rem;

  flex-wrap: wrap; 
	
}  

.primary-cta-button		{
   background: #e74c3c;
   color: white;
   padding: 14px 28px;
   text-decoration: none;
                    border-radius: 8px;
	 font-weight: 600;
   font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); 

}

.primary-cta-button:hover {
   background: #c0392b;

	  transform: translateY(-2px);

	  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.secondary-cta-button
{
	background: transparent;

    color: #2c3e50;

    padding: 14px 28px;

    text-decoration: none;

   border   :  2px solid #2c3e50;

      border-radius: 8px;

  font-weight    :       600;

   font-size :     16px;

    transition: all 0.3s ease;
}

.secondary-cta-button:hover {
  background    :       #2c3e50;
	 color     :      white;
  transform: translateY(-2px);
}

.hero-main-image {
        width  :     100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-overview-section {
   padding: 80px 5%;
   background: white;
}

.services-content-wrapper {
    max-width: 1400px;
  margin: 0 auto;
}

.section-main-heading {
    font-size: 2.8rem;
   font-weight: 700;
  text-align: center;
      color: #2c3e50;
   margin-bottom: 3rem;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap   :    2.5rem;
}

.service-card-item {
    background: #f8f9fa;
   padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-item:hover	{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-image {
					width: 100%;
  height :      200px;
   object-fit: cover;
  border-radius: 8px;
	margin-bottom: 1.5rem; 

}

.service-card-title {
   font-size: 1.5rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.service-card-description {
   color: #5a6c7d;
  line-height: 1.6;
	font-size: 1rem;
}

.expertise-showcase-section {
	padding: 80px 5%;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.expertise-content-container {
    max-width: 1400px;
  margin: 0 auto;
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}  

.expertise-section-title {
  font-size: 2.5rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
   line-height: 1.3;
}

.expertise-paragraph     {
   font-size:  1.1rem;
       line-height: 1.7;
  margin-bottom: 1.5rem;
	opacity: 0.9;
}

.expertise-stats-row

{
    display: flex;
  gap  :  2rem;
  margin-top :      2rem;
}

.stat-item {
   text-align: center;
}

.stat-number {
     display: block;
  font-size: 2.5rem;
    font-weight: 700;
	color: #fff;
}

.stat-label {
    font-size: 0.9rem;
       opacity: 0.8;
   	text-transform: uppercase;
       letter-spacing: 1px;
}

.expertise-showcase-image {
  width: 100%;
  height    :    auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.consultation-cta-section {
    padding:     80px 5%;
    background: #ecf0f1;
  text-align: center;
}

.cta-content-wrapper {

	  max-width: 800px;
   margin    :       0 auto;


}

.cta-main-title {


    font-size:      2.5rem;

    font-weight: 700;

    color: #2c3e50;

  margin-bottom: 1.5rem;

  line-height: 1.3;
}

.cta-description-text {
    font-size: 1.2rem;
    color: #5a6c7d;
					margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary-button {
	background: #27ae60;
    color: white;
	 padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
    font-size: 18px;
    transition  :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
   display: inline-block;
}  

.cta-primary-button:hover {
   background: #219a52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.contact-form-section {


	background: white;
  padding: 80px 5%;
	}

.contact-section-wrapper {
    max-width     :  900px;
   margin: 0 auto;
}

.contact-section-title {
   font-size: 2.5rem;
   font-weight:        700;
    text-align: center;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.contact-intro-text {

	   text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
  line-height  :   1.6;
}

.main-contact-form {

	    background     :    #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);}

.form-row-wrapper {
    display   :       grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
  margin-bottom   :     1.5rem;
}

.form-field-group {
          display: flex; 
     flex-direction: column;
}

.field-label-text {
   font-weight     :        600;

		font-size: 14px;

	    margin-bottom: 0.5rem;

	    color: #2c3e50;
}

.text-input-field,
.select-input-field,
.textarea-input-field {
   padding: 12px 15px;
       border: 2px solid #e8ecef;
       border-radius: 8px;
      font-size: 16px;
           transition: border-color 0.3s ease;
     background: white;
}

.text-input-field:focus,
.select-input-field:focus,
.textarea-input-field:focus {
   outline :  none;
    border-color: #3498db;
}

.form-submit-button {
       font-weight: 600;
   padding    :      15px 30px;
     margin-top: 1rem;
  border-radius:8px;
   border: none;
    cursor: pointer;
    width: 100%;
    background: #e74c3c;
       transition: all 0.3s ease;
  color   :      white;
        font-size: 16px;
}

.form-submit-button:hover {
                    background: #c0392b; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);

}

.main-footer-section {
   background: #2c3e50;
   color: white;
    padding: 60px 5% 20px;
}

.footer-content-container {
	   max-width:   1400px;
    margin: 0 auto;
					display  :  grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
     margin-bottom     :   2rem;


}

.footer-logo-image {
    height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-company-description     {
    color  :        #bdc3c7;
  line-height: 1.6;
    font-size: 14px;


}

.footer-column-title {
   font-size: 16px;
	   font-weight: 600;
	    margin-bottom: 1rem;
	  color: white; 
	
}

.footer-nav-link {
         display: block;

    color: #bdc3c7;

 text-decoration: none;

  margin-bottom: 0.5rem;

  font-size: 14px;

  transition: color 0.3s ease;
}

.footer-nav-link:hover


{
  color: #e74c3c;
}

.footer-contact-item {
   color: #bdc3c7;
     margin-bottom: 0.5rem;
       font-size: 14px;
      line-height: 1.5;
}

.footer-bottom-bar {
   border-top: 1px solid #34495e; 
	  padding-top: 1.5rem; 
		text-align: center;
}

.footer-copyright-text {
   color: #95a5a6;
   font-size: 13px;
}@media (max-width: 768px) {
    .nav-menu-desktop {
        display: none;
    }
    
    .nav-burger-icon {
        display: flex;
    }
    
    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-action-buttons {
        justify-content: center;
    }
    
    .expertise-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .expertise-stats-row {
        justify-content: center;
    }
    
    .form-row-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        padding: 40px 5% 30px;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .section-main-heading {
        font-size: 2rem;
    }
    
    .expertise-section-title {
        font-size: 1.8rem;
    }
    
    .cta-main-title {
        font-size: 1.8rem;
    }
    
    .contact-section-title {
        font-size: 1.8rem;
    }
    
    .main-contact-form {
        padding: 1.5rem;
    }
    
    .services-overview-section,
    .expertise-showcase-section,
    .consultation-cta-section,
    .contact-form-section {
        padding: 50px 5%;
    }
}.nav-link-item.active {
   color  :  #e74c3c;
  font-weight: 600;
}

.about-hero-section {
    padding: 100px 5% 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
	 text-align: center;
}

.about-hero-container {
         max-width: 1000px;
   margin: 0 auto;
}

.about-page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.about-hero-subtitle {
               font-size :  1.3rem;
    opacity  :0.9;
  line-height: 1.6;
    max-width: 700px;
   margin: 0 auto;
}

.company-story-section {
   padding: 80px 5%;
  background: white;
}

.story-content-wrapper {
   max-width: 1400px;
    margin    :   0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
         align-items: center; 

}

.story-section-heading


{
   font-size: 2.5rem;
   font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-paragraph {
  margin-bottom  :1.5rem;
	font-size: 1.1rem;
  color: #5a6c7d;
   line-height: 1.7;}

.company-achievements

{
    display: flex;
    gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap:wrap;
}

.achievement-item     {


                    text-align: center;}

.achievement-number {
    margin-bottom: 0.5rem;
   color: #e74c3c;
  font-weight: 700;
    display   :  block;
  font-size: 2.2rem;
}

.achievement-label {
	  font-size: 0.9rem;

	   color: #7f8c8d;

	  text-transform: uppercase;

	    letter-spacing: 0.5px;
     }

.story-main-image {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-expertise-section {
       background: #f8f9fa;
    padding: 80px 5%;
}

.expertise-wrapper
	{
   max-width     :1400px;
    margin: 0 auto;
}

.team-section-title {
  font-size     :2.8rem;
    text-align    :center;
    margin-bottom: 3rem;
    font-weight  :  700;
    color: #2c3e50;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.expertise-card {
		background: white;
   padding: 2.5rem;
    border-radius: 15px;
 text-align  :center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	}


.expertise-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	}

.expertise-card-img 
 {
  width: 100%;
    height: 220px;
   object-fit: cover;
      border-radius: 10px;
   margin-bottom: 1.5rem; 

}

.expertise-card-title {


   font-size :  1.6rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 1rem;
	}

.expertise-card-text {
   color   :  #5a6c7d;
  line-height: 1.6;
  font-size: 1rem;
}

.methodology-section  
  {
  padding   :      80px 5%;
	background: white; 

}

.method-content-container {
     max-width: 1400px;
   margin: 0 auto;
  display:grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items     :  center;
}

.methodology-showcase-img {
	               width: 100%;
	height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.methodology-heading {
   font-size: 2.3rem;
    font-weight    :    700;
  color: #2c3e50;
    margin-bottom: 1.5rem;
}

.methodology-description   {
    font-size: 1.1rem;
	line-height: 1.7;
   color: #5a6c7d;
    margin-bottom: 2rem;
}

.methodology-steps {
   display    : flex;
    flex-direction: column;
	 gap: 1.5rem;
}

.method-step {
                    display: flex;
    align-items: flex-start;
  gap     :    1rem; 

}

.step-number {
                    display: flex;
    flex-shrink: 0;
   color: white;
	 background: #3498db;
    align-items: center;
    border-radius: 50%;
    width: 40px;
	 font-size: 18px;
    justify-content: center;
   height  :       40px;
    font-weight: 700;
}

.step-title {
	 font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;

}

.step-description {
   color:   #5a6c7d;
  line-height: 1.5;
   font-size: 0.95rem;
}

.values-section {
	padding: 80px 5%;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.values-container {
 max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.values-main-title {


	font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
    margin-bottom: 3rem;}

.values-grid     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem; 
	
}

.value-item {
  background: rgba(255, 255, 255, 0.9);
	padding: 2rem;
        border-radius  : 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-title {

	               font-size: 1.4rem;
	 font-weight: 600;
  color: #2c3e50;
    margin-bottom: 1rem;
     }

.value-text {
   color: #5a6c7d;
  font-size: 0.95rem;
    line-height:1.6;
}

.thankyou-hero-section {
    padding: 100px 5% 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    min-height    :        70vh;
  display: flex;
   align-items: center;
}

.thankyou-content-wrapper   {
    max-width: 1400px;
        margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items :       center;
}

.success-icon-wrapper {
  text-align  :center;
	  margin-bottom: 2rem;
}

.success-checkmark {
   position: relative;

  width     :       80px;

   height: 80px;

    margin: 0 auto;
}

.checkmark-circle {
         stroke-dasharray: 166;
   stroke-dashoffset: 166;
    stroke-width: 4;
   stroke: white;
  fill: none;
   width: 80px;
	height: 80px;
   border-radius: 50%;
    border: 4px solid white;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;


}

.checkmark-stem {
    position: absolute;
  width: 3px;
  height: 20px;
	 background: white;
    left: 35px;
        top: 30px;
  transform: rotate(45deg);
    animation: checkmark-stem 0.3s ease-in-out 0.6s forwards;
    transform-origin: bottom;
  opacity  :       0;
}

.checkmark-kick {
  position: absolute;
	  width   :  3px;
	  height: 12px;
	    background: white;
	  left: 27px;
	  top: 38px;
	  transform: rotate(-45deg);
	    animation    :     checkmark-kick 0.3s ease-in-out 0.9s forwards;
	   transform-origin: bottom;
	    opacity: 0;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-stem {
    100% {
        opacity: 1;
    }
}

@keyframes checkmark-kick {
    100% {
        opacity: 1;
    }
}.thankyou-main-title {
  font-size     : 2.8rem;
    font-weight: 700;
    color :  white;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.thankyou-subtitle {


          font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.6;
   margin-bottom: 3rem;

}

.next-steps-section {
    margin: 3rem 0;
}

.next-steps-title {
  font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;


}

.steps-timeline {
  display: flex;
    flex-direction:     column;
   gap: 1.5rem;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
   gap: 1rem;


}

.step-number-circle {
    background: white;
	  color: #27ae60;
	  width     :  35px;
		height: 35px;
	      border-radius: 50%;
	  display: flex;
		 align-items: center;
	   justify-content: center;
	  font-weight :    700;
	   font-size: 16px;
	    flex-shrink: 0;
}  

.step-heading {
   font-size: 1.1rem;
    font-weight: 600;
  color: white;
    margin-bottom: 0.5rem;
} 

.step-text {
  color: rgba(255, 255, 255, 0.85);
   line-height: 1.5;
   font-size: 0.95rem;}

.thankyou-actions {
    display: flex;
  gap   :  1.5rem;
  flex-wrap: wrap;
    margin-top  :       2rem;
}

.return-home-btn
{
   background: white;
    color: #27ae60;
  padding    :       12px 24px;
	 text-decoration: none;
    border-radius    :       8px;
	font-weight: 600;
    transition: all 0.3s ease;
}

.return-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.learn-more-btn {
   background     :      transparent;
  color     :      white;
    padding: 12px 24px;
   text-decoration:none;
   border: 2px solid white;
    border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover	{
    background: white; 
	   color: #27ae60; 
	  transform: translateY(-2px);
}

.thankyou-showcase-img {
  width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom     :      2rem;
}

.contact-reminder-card    {

	  background: rgba(255, 255, 255, 0.95);
   padding: 1.5rem;
    border-radius: 12px;
  backdrop-filter: blur(10px);
	}

.reminder-card-title {
   font-size: 1.3rem;
      font-weight: 600;
   color: #2c3e50;
  margin-bottom   :0.5rem;
}

.reminder-card-text {
    color: #5a6c7d;
   margin-bottom  : 1rem;
    line-height :        1.5;
}

.direct-contact-info {
  display: flex;
    flex-direction: column;
  gap: 0.5rem;
}

.contact-phone,
.contact-address {
   color :    #2c3e50; 
	    font-weight: 500; 
	   margin: 0;
}

.additional-resources-section {
    padding: 80px 5%;
   background: #f8f9fa;
}

.resources-container {
  margin: 0 auto;
    max-width: 1200px;
}

.resources-section-title {
    font-size: 2.5rem;
    font-weight: 700;
   text-align: center;
  color: #2c3e50;
	margin-bottom: 1rem;
}

.resources-intro {
	   font-size: 1.1rem;
	line-height: 1.6;
     margin-bottom: 3rem;
  color: #5a6c7d;
    text-align: center;
     }

.preparation-grid 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;

}

.preparation-card {
    background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.prep-card-title {
    font-size: 1.4rem;
    font-weight    :       600;
	color: #2c3e50;
  margin-bottom: 1rem;
}

.prep-question-list


{


  list-style: none;
   padding   :       0;
         margin: 0;

}

.prep-question-list li 
 {
   color: #5a6c7d;
  padding   :      0.5rem 0;
  border-bottom: 1px solid #ecf0f1;
	position     :        relative;
    padding-left: 1.5rem; 

}

.prep-question-list li:before    {
  content: "•";
   color: #3498db;
  font-weight: 700;
   position: absolute;
        left   :    0;
}

.prep-question-list li:last-child {
  border-bottom: none; 
	
}@media (max-width: 768px) {
    .about-page-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .company-achievements {
        justify-content: center;
    }
    
    .method-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thankyou-main-title {
        font-size: 2.2rem;
    }
    
    .thankyou-actions {
        justify-content: center;
    }
    
    .steps-timeline {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 5% 40px;
    }
    
    .about-page-title {
        font-size: 1.8rem;
    }
    
    .story-section-heading {
        font-size: 2rem;
    }
    
    .team-section-title {
        font-size: 2rem;
    }
    
    .methodology-heading {
        font-size: 1.8rem;
    }
    
    .values-main-title {
        font-size: 2rem;
    }
    
    .thankyou-main-title {
        font-size: 1.8rem;
    }
    
    .resources-section-title {
        font-size: 1.8rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-grid {
        grid-template-columns: 1fr;
    }
}