* {
  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: #fafbfc;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: fixed;
   width: 100%;
  top: 0;
    z-index: 1000;
   transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-header.scrolled {
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {

    max-width: 1200px;
   margin: 0 auto;
    padding:       0 20px;
   display: flex;
  justify-content     :space-between;
   align-items    :center;
   height: 70px;
	}

.logo-section .site-logo {
    height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
     }

.nav-menu
{
  display: flex;
   list-style  :     none;
    gap: 35px;
}

.nav-menu li a {
        color: #fff;
    text-decoration: none;
	font-weight: 500;
  font-size: 16px;
   transition: opacity 0.3s;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

.menu-toggle {
  display   :none;
  flex-direction: column;
	cursor     :   pointer;
   gap: 5px;
}

.menu-toggle span     {
               width: 25px;
    height: 3px;
   background: #fff;
    transition   : all 0.3s;
   border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
   opacity:      0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 180px 20px 120px;
  text-align: center;
   margin-top: 70px;
}

.hero-content h1

{
  font-size   :       48px;
   color     :      #fff;
   margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
   font-size: 20px;
  color: rgba(255,255,255,0.9);
	max-width: 700px;
    margin: 0 auto 40px;
}

.primary-btn {
	display: inline-block;
	 padding: 15px 40px;
	 background: #fff;
    color: #667eea;
	text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
        transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.primary-btn:hover {
  transform: translateY(-2px); 
	  box-shadow: 0 6px 20px rgba(0,0,0,0.3);


}

.content-wrapper {
  max-width     :      1200px;
   margin: 0 auto;
   padding: 80px 20px;
}

.philosophy-section {
	background: #fff;
}

.philosophy-section .content-wrapper {
	display: flex;
               gap: 60px;
     align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
   font-size: 36px;
  color: #2c3e50;
  margin-bottom: 25px;
          font-weight:700;
}

.text-block p {
   font-size: 17px;
   color: #555;
    margin-bottom    :        20px;
  line-height: 1.8;

	}

.image-block {
   flex: 1;
}

.image-block img {
  width: 100%;
         height: auto;
 border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.approach-section {
  background: #f8f9fa;
}

.approach-section h2		{


    text-align: center;
   font-size   :  38px;
 color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;

}

.approach-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     :     40px;
}

.approach-item {
    background: #fff;
   padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.approach-item:hover {
     transform: translateY(-5px);
}

.approach-item .icon-wrapper {
    margin-bottom: 20px; 

}

.approach-item .icon-wrapper img {
	width: 50px;
      height     :       50px;
}

.approach-item h3 {
   font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.approach-item p {
   color     :       #666;
  font-size: 16px;
    line-height: 1.7;
}

.transformation-section {
  background: #fff;
}

.transformation-section .content-wrapper{
  display: flex;
      gap: 60px;
      align-items     :        center;
  flex-direction: row-reverse;

}

.benefits-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.benefits-section h2 {
  text-align: center;
    font-size: 38px;
  margin-bottom: 60px;
  color: #fff;


}



.benefits-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 30px;
}

.benefit-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.benefit-card h3 {
  font-size: 22px;
    margin-bottom     :     15px;
   color: #fff;


}

.benefit-card p {
	font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.cta-section {
   background: #2c3e50;
          color:   #fff;
    text-align: center;
        padding: 100px 20px;
}

.cta-content h2 {
   font-size: 40px;
       margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
  max-width: 700px;
   margin: 0 auto 40px;
   line-height: 1.8;
}

.cta-button {
	  display: inline-block;
    padding: 18px 45px;
   background: #667eea;
   color:       #fff;
  text-decoration: none;
	 border-radius    :      50px;
   font-weight: 600;
   font-size :   17px;
    transition: all 0.3s;


}

.cta-button:hover {
  background     :        #764ba2;
  transform: translateY(-2px);
}


.services-preview {
	 background: #f8f9fa;
}

.services-preview h2 {
  text-align  :    center;
       font-size  :        38px;
   color: #2c3e50;
   margin-bottom: 60px;
}

.services-grid {
     display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.service-card
{
          background:    #fff;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
         object-fit: cover;
   width :       100%;
	 height: 220px;
}

.service-card h3
	{
   font-size: 24px;
  color    :#2c3e50;
    padding: 25px 25px 15px;
}

.service-card p {
    padding: 0 25px 25px;
  color: #666;
  font-size: 16px;
	 line-height: 1.7;
}

.services-link {
	  text-align: center;
	}

.services-link a {
   display    :        inline-block;
  padding    :       15px 35px;
   background: #667eea;
	color: #fff;
   text-decoration    :       none;
    border-radius: 50px;
	font-weight: 600;
   transition: background 0.3s;
}

.services-link a:hover {
   background: #764ba2;
}

.contact-section {
     background: #fff;


}

.contact-section .content-wrapper {
    display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 60px;
}

.contact-info h2     {
   font-size: 36px;
    color  :       #2c3e50;
       margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
  font-size: 17px;
   color: #666;
    line-height   :    1.7;
}

.info-details {
   display: flex;
  flex-direction: column;
   gap: 25px;


}

.info-item {
  display: flex;
   align-items: flex-start;
    gap: 15px;
}

.info-item .icon-wrapper img {
      width: 28px;
    height: 28px;
}

.info-item p {
  margin: 0;
  font-size: 16px;
		color:  #555;

}

.contact-form {

   background: #f8f9fa;
   padding: 40px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	

}

.form-group {
         margin-bottom   :   25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {

  width :100%;
   padding: 12px 15px;
   border: 1px solid #ddd;
  border-radius: 6px;
   font-size   :     15px;
   font-family:    inherit;
   transition: border-color 0.3s;
  background: #fff;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #667eea;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
	width   :    100%;
   padding: 15px;
  background: #667eea;
  color: #fff;
  border: none;
   border-radius: 6px;
  font-size: 16px;
          font-weight: 600;
   cursor: pointer;
  transition: background 0.3s; 

}

.submit-btn:hover {
       background     :       #764ba2;
}  

.site-footer {
  background: #1a1a2e;
   color: #fff;
  padding: 60px 20px 20px;
}  

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 40px;
  margin-bottom: 40px; 
	
}

.footer-section h4 {
   font-size: 18px;
  margin-bottom     :20px;
    color: #fff; 
	
}

.footer-section p {
   	 font-size: 15px;
  color: rgba(255,255,255,0.7);
   line-height: 1.8;

	}

.footer-section ul {

	  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
    transition: color 0.3s;
}  

.footer-section ul li a:hover {
  color: #fff; 

}

.footer-logo {
    height: 40px;

		margin-bottom: 15px;

	  filter: brightness(0) invert(1);
}

.footer-bottom		{

	   max-width: 1200px;
   margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;

}

.footer-bottom p {
    font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.icon-wrapper img {
  stroke: #667eea;
    fill: none;
   stroke-width: 2;
   stroke-linecap    :    round;
          stroke-linejoin: round;
   transition: all 0.3s ease;
}

.icon-wrapper:hover img {
  stroke: #764ba2;
  transform: scale(1.1);
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .philosophy-section .content-wrapper,
    .transformation-section .content-wrapper {
        flex-direction: column;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .text-block h2,
    .approach-section h2,
    .benefits-section h2,
    .services-preview h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}.policySection  
  {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
	 max-width: 800px;
   margin: 0 auto;
	text-align: left;
}

.policyContainer h2 {
  font-weight: 700;
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
}

.policyContainer p {
    color: #7f8c8d;
    margin-bottom    :        1.5rem;
  line-height: 1.7;
  font-size    :    1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 160px 20px 100px;
  text-align: center;
  margin-top: 70px;
}

.page-hero .hero-content h1

{
  font-size: 42px;

   color     :    #fff;

    margin-bottom: 15px;

  font-weight     :      700; 
	
}

.hero-description {
         font-size: 19px;
  color: rgba(255,255,255,0.9);
    max-width: 650px;
       margin: 0 auto;
}

.services-intro {

    padding: 70px 20px;
  background    :     #fff;
     }

.intro-text h2 {
  font-size: 34px;
    color:#2c3e50;
   margin-bottom: 25px;
  font-weight: 700; 
	
}

.intro-text p {
    font-size: 17px;
   color: #555;
	line-height: 1.8;
    margin-bottom: 20px;
}

.services-detailed {
   background: #f8f9fa;
    padding: 40px 20px 80px;
}

.service-detail {
  display: flex;
  gap: 50px;
 align-items: center;
   margin-bottom   :  80px;
    background:     #fff;
	 padding: 50px;
  border-radius    :      12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.service-detail.reverse {
    flex-direction    :     row-reverse;
}

.service-image {
    flex     :       1;
}

.service-image img {
         width: 100%; 
	   height: auto; 
	    border-radius: 10px; 
	  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-content {
    flex: 1.2;
}

.service-content h2   {
   color    : #2c3e50;
   font-size: 32px;
  font-weight: 700;
   margin-bottom: 20px;
}

.service-content > p
{
    font-size: 17px;
    color: #555;
   line-height: 1.8;
   margin-bottom: 30px;
}

.service-features

{
  margin-bottom: 30px;
}

.feature-item {
	     display    :        flex;
   gap: 15px;
  margin-bottom: 25px;
   align-items: flex-start;
}

.feature-item .icon-wrapper {
    flex-shrink: 0;

}

.feature-item .icon-wrapper img {
	 width: 35px;
  height: 35px;

}

.feature-item h4 {

	    font-size   :    18px;
      color: #2c3e50;
      margin-bottom   :  5px;
     font-weight     :  600;
}

.feature-item p {
  font-size: 15px;
    color: #666;
   line-height: 1.6;
   margin: 0;
	}


.service-details-info {
  background: #f8f9fa;
         padding: 20px;
         border-radius: 8px;
       border-left: 4px solid #667eea;
}

.service-details-info p {


    font-size: 15px;
  color: #555;
		margin-bottom: 8px;

}

.service-details-info p:last-child {
    margin-bottom: 0;
}

.process-section    {
    background: #fff;
   padding: 80px 20px;
}  

.process-section h2		{
      text-align: center;
  font-size  :      36px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
   font-size: 18px;
    color: #666;
   margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
} 

.timeline-item {
    text-align:      center;
	padding: 30px 20px;
	background   :  #f8f9fa;
	 border-radius    : 10px;
   transition: transform 0.3s;
}

.timeline-item:hover


{
  transform: translateY(-5px);
}

.timeline-number {
         display: inline-block;
   width: 60px;
  height :        60px;
   line-height  :      60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color : #fff;
   border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
   margin-bottom: 20px;
}

.timeline-item h3 {
        font-weight   :  600;

		margin-bottom: 15px;

	    color: #2c3e50;

	   font-size  :        20px;
     }

.timeline-item p{
    font-size: 15px;
   line-height: 1.7;
    color: #666;
}

.testimonials-section {
   background: #f8f9fa;
   padding: 80px 20px;
}

.testimonials-section h2 {


  text-align: center;
    font-size: 36px;
    color: #2c3e50;
   margin-bottom: 60px;
  font-weight: 700;
	}

.testimonials-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
   gap: 35px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-text {
     font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
   font-style  :      italic;
	}

.testimonial-author {


    border-top: 2px solid #f0f0f0;
   padding-top: 20px;
	}

.author-name	{

	   font-size: 17px;
    color: #2c3e50;
   font-weight: 600;
    margin-bottom: 5px;

}

.author-role {

	    font-size    : 14px;
  color: #888;}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: #fff; 
    text-align: center; 
  padding   :      90px 20px;
}

.cta-services .cta-content h2  {
   font-size :    38px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-services .cta-content p {
       font-size: 18px;
   max-width: 700px;
	margin: 0 auto 40px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);

}

.thankyou-hero {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 150px 20px 100px;
  text-align: center;
  margin-top: 70px;
  min-height: 60vh;
	display: flex;
  align-items: center;
    justify-content: center;}

.thankyou-container {
  max-width: 700px;
   margin: 0 auto;
}

.success-icon {
  width: 100px; 
	height: 100px; 
  margin: 0 auto 30px; 
  background: rgba(255,255,255,0.2); 
  border-radius    :       50%; 
    display: flex; 
    align-items: center; 
	 justify-content    :  center;
}

.success-icon img {
   width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.thankyou-hero h1 {
  font-size: 44px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.thankyou-message {
    font-size: 20px;
  color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.thankyou-details 
 {
  background: rgba(255,255,255,0.15);
  padding: 25px;
  border-radius: 10px;
   margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.thankyou-details p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin  :       0;
}

.thankyou-actions {

	  display: flex;
   gap: 20px;
               justify-content: center;
    flex-wrap: wrap;
	}

.primary-action {
	display :      inline-block;
          padding: 15px 35px;
   background :  #fff;
   color: #667eea;
	text-decoration: none;
  border-radius   : 50px;
	 font-weight:    600;
  transition: transform 0.3s;

}

.primary-action:hover {
  transform: translateY(-2px);
}

.secondary-action {
      display: inline-block;
   padding: 15px 35px;
    background: transparent;
   color    :#fff;
          text-decoration: none;
  border-radius: 50px;
  font-weight     :     600;
  border     :       2px solid #fff;
  transition:      all 0.3s;

}

.secondary-action:hover {
	background    :      #fff;
      color: #667eea;
}

.next-steps {
    background: #fff;
		 padding: 80px 20px;
}

.next-steps h2 {
   text-align: center;
    font-size: 36px;
   color: #2c3e50;
	margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid


{
  display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;


}

.step-card {
  text-align: center;
   padding: 35px 25px;
  background   :    #f8f9fa;
   border-radius   :10px;
}



.step-icon {
   width: 70px;
          height: 70px;
   margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display  :  flex;
          align-items    :      center;
   justify-content: center;
}

.step-icon img 
 {

	  width: 35px;
   height: 35px;
  filter: brightness(0) invert(1);}  

.step-card h3 {
   font-size: 22px;
	  color: #2c3e50;
	  margin-bottom    :       15px;
	   font-weight: 600;
}

.step-card p
{
   font-size: 16px;
    color: #666;
   line-height: 1.7;
}

.explore-more {
               background: #f8f9fa;

                    padding: 80px 20px;
}



.explore-more h2   {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

.explore-grid  {


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px;
}

.explore-card {
   background: #fff;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	
}

.explore-card img {
    width: 100%;
                    height: 200px;
  object-fit: cover;
}



.explore-card h3 {
   font-size: 24px;
    color: #2c3e50;
   padding: 25px 25px 15px;
	font-weight: 600;
}

.explore-card p {
    padding: 0 25px 20px;
    color :  #666;
    font-size: 16px;
    line-height: 1.7;
}

.explore-card a {
    display: inline-block;
   padding: 12px 25px;
  margin: 0 25px 25px;
        background: #667eea;
    color: #fff;
   text-decoration: none;
    border-radius: 6px;
     font-weight: 600;
    transition: background 0.3s;
}

.explore-card a:hover {
    background: #764ba2;
}

.contact-info-section {
	  background: #fff;
  padding:80px 20px;
   text-align: center;


}

.contact-info-section h2 {
  font-size: 36px;
  color: #2c3e50;
    margin-bottom: 15px;
   font-weight: 700;
}

.info-text {
          font-size: 18px;
  color    :       #666;
  margin-bottom: 50px;

}

.contact-methods


{
   display: flex;
    justify-content: center;
   gap: 60px;
  flex-wrap   :    wrap;
}

.contact-method {
            display: flex;
    gap: 20px;
   align-items: center;
   text-align    :left;


     }

.method-icon {
	 width: 60px;
  height     :        60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
	align-items     :center;
  justify-content: center;
   flex-shrink: 0;
}

.method-icon img {
  width: 30px;
	height: 30px;
  filter: brightness(0) invert(1);
}

.method-details h4 {
   font-size: 18px;
    margin-bottom: 5px;
	color: #2c3e50;
   font-weight: 600;
}



.method-details p {
	 font-size: 16px;
     color: #666;
   line-height: 1.6;
         margin: 0;
}@media (max-width: 768px) {
    .page-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        padding: 30px 25px;
    }
    
    .service-content h2 {
        font-size: 26px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-hero h1 {
        font-size: 32px;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .thankyou-actions a {
        width: 100%;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}