*    {
	margin   :       0;
	 padding   :   0;
    box-sizing     :       border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #333;
    background-color: #ffffff;
}

.main-navbar {
  background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 1rem 0;
    position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   display: flex;
  justify-content: space-between;
   align-items: center;
    padding: 0 2rem;
}

.brand-logo
{
	   height: 45px;
  filter: brightness(0) invert(1);
     }

.nav-links {
	  gap: 2rem;
    display: flex;
    list-style: none;}

.nav-item {
    color: white;

   text-decoration: none;

	 font-weight: 500;

  transition: color 0.3s ease;

   padding: 0.5rem 1rem;
}

.nav-item:hover {

	  color: #3498db;
  background: rgba(255,255,255,0.1);
	border-radius: 5px;
     }

.burger-menu {
  display: none;
	   flex-direction: column;
	         cursor: pointer;
		gap: 4px;
}

.burger-menu span {
       width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;


}

.hero-section {
   display :flex;
   align-items: center;
    min-height: 100vh;
   padding: 120px 2rem 60px;
  max-width: 1200px;
					margin  :    0 auto;
  gap: 3rem;
}

.hero-content {


  flex   :1;
    -webkit-flex: 1;
    -ms-flex: 1;


}

.hero-content h1 {
    font-size     :  3.2rem;
    font-weight: bold;
    color: #2c3e50;
		 margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size    :  1.2rem;
   color: #666;
  margin-bottom: 2rem;
   line-height     :1.6;
}

.hero-buttons   {
  display: flex;
   gap: 1rem;
   flex-wrap: wrap;

}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.primary-btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
     border: 2px solid #3498db;
                    color: #3498db;
    background: transparent;
}

.secondary-btn:hover {
  background    :      #3498db;
    color: white;
}

.hero-image {
	flex: 1;
     }

.hero-image img {
    width: 100%; 
	    height: auto; 
	   border-radius: 15px; 
	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-section {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.container {
  max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
  text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem; 
	
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
  background    :  white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {


  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}

.feature-img     {
    margin-bottom: 1.5rem;
}

.feature-img img {

	  width: 100%;
    height: 200px;
	 object-fit: cover;
   border-radius: 8px;}

.feature-card h3 {
  font-size: 1.4rem;
    color: #2c3e50;
  margin-bottom: 1rem;

}

.feature-card p {
  color: #666;
	line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
   text-align: center;
    padding: 80px 2rem;
}


.cta-content h2 {
   font-size: 2.5rem; 
  margin-bottom: 1rem;
}

.cta-content p {
   font-size   : 1.1rem;
    margin-bottom: 2rem;
  max-width  :   600px;
  margin-left: auto;
  margin-right: auto;


}

.cta-button 
 {


       background: #e74c3c;
   color: white;
  padding: 18px 35px;
   border-radius   :   8px;
  text-decoration: none;
    font-weight: 600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
	display: inline-block;

}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.services-detailed {
   padding: 80px 2rem;
}

.services-detailed h2{
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;}

.services-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
   transition: all 0.3s ease;
  padding: 2rem;
   background: #f8f9fa;
   border-radius: 8px;
  border-left    :     4px solid #3498db;
}

.service-item:hover {
   background: white;

  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
  color: #2c3e50;
    font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-item p {
			color: #666;
   line-height   :       1.6;
}

.about-preview    {
  padding: 80px 2rem;
	background: white;
}

.about-content {
	    max-width: 1200px;
    margin: 0 auto;
    display  :     flex;
  align-items: center;
  gap: 3rem;


}

.about-text {
   -ms-flex: 1;
   -webkit-flex: 1;
  flex: 1;
}

.about-text h2
	{
  font-size: 2.5rem;
		 color: #2c3e50;
  margin-bottom: 2rem;
}

.about-text p {
   font-size: 1.1rem;
    color: #666;
  line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;


}

.about-image img {
    width    : 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	
}

.contact-section {
   background: #f8f9fa;
  padding: 80px 2rem;
}

.contact-section h2  {
  text-align: center; 
	  font-size: 2.5rem; 
	 color: #2c3e50; 
	  margin-bottom: 3rem;
}

.contact-layout {
  display: grid;
    grid-template-columns: 1fr 2fr;
	gap   :   3rem;
   max-width: 1000px;
  margin     : 0 auto;
}

.contact-info h3    {

	    color    :#2c3e50;
   	 font-size: 1.5rem;
     margin-bottom: 2rem;

}

.contact-item {
				 margin-bottom: 2rem;
}

.contact-item strong {
  color: #2c3e50;
    display: block;
  margin-bottom     :     0.5rem; 
	
}

.contact-item p {
  color: #666;
  margin   :      0;
}

.contact-form {
	  background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
	 margin-bottom: 1.5rem;
}

.form-group label {
         display: block;
  margin-bottom: 0.5rem;
   color: #2c3e50;
	 font-weight:     500;
}

.form-group input,
.form-group select,
.form-group textarea {
     width   : 100%;
    padding: 12px 15px;
   border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size  : 1rem;
	 transition :  border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #3498db;
}

.submit-btn {


  background: linear-gradient(135deg, #3498db, #2980b9);
	 color: white;
	   padding: 15px 30px;
		border: none;
	  border-radius: 6px;
	    font-size: 1rem;
	  font-weight: 600;
	   cursor     : pointer;
	  transition: all 0.3s ease;
	         width: 100%;}

.submit-btn:hover {
  background: linear-gradient(135deg, #2980b9, #21618c);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.main-footer {
    background: #2c3e50;
  color :    white;
    padding   :3rem 2rem 1rem;}

.footer-content  
  {
     max-width :      1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
	height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #3498db;
   margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
     color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;

}

.footer-section ul {
  list-style: none;
}

.footer-section ul li  
  {

  margin-bottom: 0.5rem;
	}

.footer-section ul li a {
  color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover     {
  color: #3498db;
}

.footer-bottom {
	text-align :  center;
  margin-top: 2rem;
    padding-top     :  2rem;
    border-top: 1px solid #34495e;
  color: #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .features-section h2,
    .services-detailed h2,
    .about-text h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}.nav-item.active{
  color: #3498db;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
}

.page-header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
   color  :  white;
  text-align: center;
   padding: 120px 2rem 80px;
   margin-top: 70px;
}

.header-content h1 {
 font-size: 3rem;
    margin-bottom: 1rem;
    font-weight     :bold; 
	
}

.header-subtitle {
  font-size: 1.2rem;
	 opacity   :0.9;
    max-width :  600px;
	margin: 0 auto;
          line-height: 1.6; 

}

.company-story {
     padding: 80px 2rem;
	background: white;
}

.story-layout {
   display: flex;
  align-items: center;
    gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {

  flex: 1;}

.story-text h2  
  {
  font-size: 2.5rem; 
	  color    :  #2c3e50; 
	   margin-bottom: 2rem;
}

.story-text p {
  font-size    :        1.1rem;
  color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;


}

.story-image
	{

		flex: 1;
	}

.story-image img {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-section {
   padding: 80px 2rem;
    background: #f8f9fa;
}

.expertise-section h2    {
  text-align: center;
   font-size  :    2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.expertise-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	max-width: 1000px;
    margin: 0 auto;
}

.expertise-card {
   background   :     white;
     padding: 2.5rem 2rem;
	text-align: center;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.expertise-number {
          font-size: 3rem;
    font-weight     :       bold;
	color: #3498db;
   margin-bottom: 1rem;
}

.expertise-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
   color:       #2c3e50;
}


.expertise-card p {
   color: #666;
   line-height: 1.6;
}

.methodology-section {

   padding   :    80px 2rem;
  background: white;
}

.methodology-section h2 {
	          font-size   : 2.5rem;
  text-align: center;
   color: #2c3e50;
  margin-bottom :        3rem;}

.methodology-content {
   display: flex;
    margin: 0 auto;
  align-items: flex-start;
  max-width: 1200px;
    gap    :  3rem;
}

.methodology-image   {
    flex: 1;
}

.methodology-image img {

	  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.methodology-text {

    flex: 1;}

.methodology-text h3 {
    font-size    :    2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.methodology-text h4 {
    font-size: 1.4rem;
    color   :       #3498db;
         margin: 2rem 0 1rem 0;
}

.methodology-text p {
  font-size: 1.1rem;
    color: #666;
  line-height: 1.7;
                    margin-bottom: 1.5rem;
}

.methodology-list {
    list-style: none;
    padding: 0;
}

.methodology-list li {
    padding   :   0.8rem 0;
      border-bottom: 1px solid #eee;
  color: #555;
  line-height: 1.6;
}

.methodology-list li:last-child {
	border-bottom   :none;
}

.methodology-list strong {
    color: #2c3e50;


}

.values-section {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.values-section h2     {
    text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.values-grid {
     display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {

  background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
  transition: all 0.3s ease;
	}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-item h3		{
   font-size  :1.4rem;
    color: #2c3e50;
   margin-bottom: 1rem;

}

.value-item p  
  {
      color: #666;
  line-height: 1.6;
     }

.team-preview {
  padding: 80px 2rem;
    background     :white; 
	
}

.team-preview h2 {
    text-align    :    center;
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom   :3rem;
}

.team-content


{

  max-width: 1200px;
  display: flex;
   margin: 0 auto;
  gap: 3rem;
   align-items: center;
     } 

.team-text {
   flex: 1;
}

.team-text p


{
		font-size: 1.1rem;
  color: #666;
   line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-image {
   	flex: 1;

}

.team-image img {
    width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.clients-section {
    padding: 80px 2rem;
	background: #f8f9fa;
}

.clients-section h2 {
   text-align: center;
  font-size: 2.5rem;
   color   :#2c3e50;
   margin-bottom: 3rem;
}

.clients-content {
    max-width: 1000px;
   margin    :0 auto;
}



.clients-intro {
   font-size: 1.2rem;
	color: #666;
      text-align: center;
    line-height: 1.7;
   margin-bottom: 3rem;


}

.industries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
}

.industry-item {
   background: white;
   padding: 2rem;
    border-radius: 12px;
   text-align   :      center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
} 

.industry-item:hover {
  transform: translateY(-3px);
}

.industry-item h4 {
  font-size: 1.3rem;
    color: #2c3e50;
         margin-bottom: 1rem;
}

.industry-item p {
   color: #666;
   line-height: 1.6;
}

.contact-cta {
  background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
   padding: 80px 2rem;
	
}

.contact-cta .cta-content h2 {
   font-size: 2.5rem;
      margin-bottom: 1rem;
}

.contact-cta .cta-content p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   max-width  :       600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-btn {
    background: #e74c3c;
   color: white;
                    padding: 18px 35px;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
  font-size:      1.1rem;
   transition   :      all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.thankyou-main {
  min-height: calc(100vh - 140px);
    padding: 120px 2rem 40px;
   background: #f8f9fa;
}


.thankyou-container {
	max-width: 1200px;
  margin: 0 auto;
    display: flex;
  align-items: center;
    gap: 3rem;
}

.thankyou-content {
    flex: 1;
   text-align: center;
}

.thankyou-image		{
    flex: 1;
}

.thankyou-image img {
       width: 100%;
  height:       auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark
{
  width: 80px;
   height: 80px;
  border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
  margin: 0 auto 2rem;
   box-shadow: inset 0 0 0 #4CAF50;
   animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative; 
	
}

.checkmark-circle {
	   stroke-dasharray: 166; 
	  stroke-dashoffset: 166; 
	    stroke-width: 2; 
	   stroke-miterlimit: 10; 
	  stroke: #4CAF50; 
	  fill: none; 
	  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; 
	    position: absolute; 
	    top: 0; 
	          left  :   0; 
		width: 80px; 
	  height: 80px; 
	   border-radius:        50%; 
	   border: 2px solid #4CAF50; 
	    box-sizing    :        border-box;

}

.checkmark-stem {
    background: #4CAF50;
    width: 2px;
 height: 20px;
    position: absolute;
   left: 32px;
   top: 45px;
  transform: rotate(45deg);
   border-radius: 2px;
   animation: checkmark-stem 0.3s ease-in-out 0.9s forwards;
         transform-origin: bottom;
  opacity: 0;
}

.checkmark-kick {
	   background: #4CAF50;
   width: 2px;
   height: 10px;
   position: absolute;
   left: 28px;
    top: 50px;
  transform: rotate(-45deg);
  border-radius: 2px;
  animation: checkmark-kick 0.3s ease-in-out 1.1s forwards;
    transform-origin: bottom;
				 opacity: 0;

}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-stem {
    100% {
        opacity: 1;
        transform: rotate(45deg) scaleY(1);
    }
}

@keyframes checkmark-kick {
    100% {
        opacity: 1;
        transform: rotate(-45deg) scaleY(1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 40px #4CAF50;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}.thankyou-content h1 {
	font-size   :  3rem;
   color:       #2c3e50;
  margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.2rem;
   color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
   max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
   background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.next-steps h2 {
    color: #2c3e50;
    font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap   :      2rem;
}

.step-item {
   text-align: center;
   padding: 1.5rem; 

}

.step-number {
       width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
   justify-content: center;
	font-size: 1.5rem;
        font-weight: bold;
  margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 1rem;
}

.step-item p {
      color: #666;
  line-height: 1.6;

}

.additional-info  
  {
  margin-bottom: 3rem; 
  border-left: 4px solid #3498db; 
   padding: 2rem; 
   border-radius: 12px; 
   background: #e8f4fd; 

}

.additional-info h2 
 {

	   font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom: 1rem;

}

.additional-info p {
    color: #666;
  line-height: 1.7;
       margin: 0;
}

.action-buttons {
   display: flex;
   gap: 1rem;
 justify-content     :center;
    flex-wrap: wrap;
	margin-bottom :      3rem;
}

.contact-reminder {
   background: white;
    padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 0 auto;

}

.contact-reminder h3 {
	text-align: center;
    color  :  #2c3e50;
  margin-bottom     :     1rem;
    font-size: 1.4rem;
}

.contact-reminder p {
   color: #666;
    text-align: center;
	margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .page-header {
        padding: 100px 1rem 60px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .story-layout,
    .methodology-content,
    .team-content,
    .thankyou-container {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .methodology-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .story-text h2,
    .expertise-section h2,
    .methodology-section h2,
    .values-section h2,
    .team-preview h2,
    .clients-section h2,
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .next-steps {
        padding: 2rem 1.5rem;
    }
    
    .action-buttons .primary-btn,
    .action-buttons .secondary-btn {
        width: 100%;
        max-width: 280px;
    }
}