* {
    margin: 0;
  padding  :   0;
   box-sizing: border-box;
	

}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
	color   :   #2c3e50;
  background: #fafbfc;


}

.hauptnavigation {
    background: #1a1d29; 
	   padding  :        1.2rem 0; 
	    position: sticky; 
	    top: 0; 
	    z-index: 1000; 
	  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {
   max-width: 1280px;
  margin   :     0 auto;
   padding: 0 2rem;
    display: flex;
    justify-content: space-between;
   align-items: center;
}

.brand-logo .logo-img {
    height: 42px;

  width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}  

.nav-links a {
   font-size: 1.05rem;
   text-decoration: none;
   color: #ecf0f1;
       transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {

	color:   #3498db;

}

.burger-toggle {
	gap     :       5px;
    cursor: pointer;
    background: none;
  display: none;
   border: none;
    flex-direction: column;
}

.burger-line {
                    background: #ecf0f1;
   width: 28px;
    height: 3px;
  transition: 0.3s;
}

.hero-bereich {
  max-width: 1320px;
    margin: 4rem auto;
  padding: 0 2rem;
    display    : grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
          align-items: center;
}

.hero-content h1 {
   color   :   #1a1d29;
         line-height    :  1.2;
   margin-bottom: 1.5rem;
   font-weight: 700;
  font-size: 3.2rem;
}

.hero-subtitle 
 {


    font-size: 1.25rem;
 color: #5a6c7d;
    margin-bottom: 2.5rem;
     }

.hero-actions {
   display: flex;
  gap: 1.5rem;
}

.btn-primary, .btn-secondary {
       padding: 0.9rem 2rem;
    text-decoration: none;
       border-radius: 6px;
   font-weight   :     600;
    transition: all 0.3s;
   display: inline-block;
}

.btn-primary {
     background: #2980b9;
    color: white;

} 

.btn-primary:hover {
   background: #1f6391;
  transform: translateY(-2px);
} 

.btn-secondary  {
   background: transparent;
	color: #2980b9;
    border :    2px solid #2980b9;
}

.btn-secondary:hover {
    color: white;
  background: #2980b9;
}

.hero-visual img  {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding:     5rem 2rem;
  color:     white;
    text-align: center;
}

.container-fluid

{


   max-width  : 1280px;
	 margin: 0 auto;


}

.intro-section h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.lead-text {
                       font-size :      1.2rem;
  max-width: 850px;
  margin: 0 auto 3rem;
   opacity: 0.95;
	

}

.stats-wrapper  {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.stat-box {
	display: flex;
  flex-direction: column;
  gap: 0.5rem; 

}

.stat-number {
  font-size: 3rem; 
	   font-weight: 700;
}

.stat-label {
	  font-size     :     1.1rem;
   opacity:        0.9; 
	
	} 

.methoden-bereich {

    padding: 5rem 2rem;
	}

.methoden-bereich h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom   :3.5rem;
    color: #1a1d29;
}

.methoden-grid {
      display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.methode-card {
    background: white;
   padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.methode-card:hover {
  transform: translateY(-8px); 

}

.icon-holder {
    width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
	
	}

.icon-holder img {
   width     :     100%;
    height: 100%;
  stroke: #3498db;
	fill: none;
    stroke-width: 2;
  filter: drop-shadow(3px 3px 5px rgba(52, 152, 219, 0.3));
}

.methode-card h3		{
  font-size: 1.4rem;

                    margin-bottom: 1rem;

   color: #2c3e50;
}

.methode-card p {
    color: #5a6c7d;
   line-height: 1.7;
}

.cta-bereich{
     background: #1a1d29;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
     }

.cta-content h2	{
   font-size: 2.8rem;
         margin-bottom: 1.5rem; 
	
}

.cta-content p {
   font-size: 1.2rem; 
	  margin-bottom :        2.5rem; 
	  max-width: 700px; 
	   margin-left: auto; 
	    margin-right: auto;
}

.btn-cta   {
   -moz-border-radius  :    6px;
    border-radius: 6px;
    -o-transition  :     all 0.3s;
  -webkit-border-radius: 6px;
   background: #e74c3c;
    display: inline-block;
  font-weight     :        600;
   text-decoration  :   none;
    transition: all 0.3s;
	 color: white;
    font-size: 1.1rem;
   padding: 1.1rem 2.5rem;
}

.btn-cta:hover {
    background: #c0392b;

  transform: scale(1.05);
}

.programm-ubersicht {


    padding: 5rem 2rem;
    background: #f8f9fa;
	}

.programm-ubersicht h2 {
 text-align: center;
	    font-size: 2.5rem;
		 margin-bottom: 3.5rem;


}

.programme-wrapper {
    display: flex;
    flex-direction: column;
   gap: 4rem;
}

.programm-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
    background: white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
	
}

.programm-item.reverse {
   grid-template-columns: 1fr 1fr;
}

.programm-item.reverse .programm-img {


    order: 2;
} 

.programm-img {
 width: 100%;
      border-radius: 10px;
}

.programm-details h3 {
   font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.programm-details p {
   color: #5a6c7d;
    margin-bottom: 1.5rem;
  line-height: 1.7; 

}

.programm-features {
   list-style: none;
    display: flex;
  flex-direction :column;
                    gap: 0.8rem;
}

.programm-features li {

	   padding-left: 1.5rem;
   position: relative;
   color: #34495e;
}

.programm-features li:before {
  content: "✓";
    position: absolute;
    left: 0;
   color:#27ae60;
     font-weight: bold;
}



.testimonials-bereich {

	   padding: 5rem 2rem; 
	

}

.testimonials-bereich h2 {
    text-align: center;
  font-size: 2.5rem;
    margin-bottom:3.5rem;

}

.testimonials-grid {
	 display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap :  2.5rem;
}

.testimonial-card {

  background: white;
    padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   border-left: 4px solid #3498db;
     }

.testimonial-text {
    font-size: 1.1rem;
	 line-height: 1.7;
	color: #34495e;
  margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong  {

	 margin-bottom    :     0.3rem;
   display: block;
   color: #2c3e50;


}


.testimonial-author span {
     color: #7f8c8d;
  font-size: 0.95rem;
}

.zusatz-info


{


    padding: 5rem 2rem;
    background: #ecf0f1;

}

.info-split {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.info-text h2 {
    font-size  :    2.3rem;
   margin-bottom: 1.5rem;
  color: #1a1d29;
}

.info-text p {
      color    :    #5a6c7d;
    line-height: 1.8;
   margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.info-visual img {
	    width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);}

.kontakt-bereich {
    padding: 5rem 2rem;
  background  :      white;
}

.kontakt-bereich h2 {
	text-align: center;
  font-size: 2.5rem;
   margin-bottom: 1rem;
}


.section-intro{
  text-align: center;
  color: #5a6c7d;
         max-width  :       700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.kontakt-formular {
	   max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
   padding: 3rem;
  border-radius   :  12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
	 gap  :        1.5rem;
   margin-bottom :  1.5rem;
}

.form-group {

        display: flex;
   flex-direction: column;
  gap: 0.5rem;


}

.form-group.full-width {
	  margin-bottom: 1.5rem;


}

.form-group label {
    font-weight: 600;
    color: #2c3e50; 

}

.form-group input,
.form-group select,
.form-group textarea {
                    padding :        0.9rem;
   border: 2px solid #dfe4ea;
   border-radius: 6px;
   font-size: 1rem;
       transition :     border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color    :    #3498db;
	
}

.btn-submit {
  border-radius    :     6px;
   padding: 1rem 3rem;
  color    :white;
    transition: all 0.3s;
    border: none;
  width: 100%;
   font-size: 1.1rem;
  background: #27ae60;
   cursor: pointer;
   font-weight: 600;
}

.btn-submit:hover {
     background: #229954;
  transform: translateY(-2px);
	
}

.footer-bereich {
  padding: 4rem 2rem 2rem;
    background    :       #1a1d29;
    color: #ecf0f1;
}

.footer-content {
  max-width: 1280px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
   margin-bottom: 3rem;
}

.footer-logo {
     height: 45px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
     }

.footer-desc {
   color: #95a5a6;
  line-height: 1.6;
}

.footer-column h4 {
  margin-bottom: 1.2rem;

    color: #ecf0f1;

    font-size: 1.1rem;
}

.footer-links {
   list-style :none;
   display: flex;
  flex-direction     : column;
    gap  :        0.8rem;
}

.footer-links a {

	  color: #95a5a6;
       text-decoration  :  none;
     transition     :     color 0.3s;

}

.footer-links a:hover {
    color: #3498db;
}



.footer-column p {

	   color: #95a5a6;
   line-height: 1.7;
    margin-bottom: 0.5rem;



}

.footer-phone {
   font-weight: 600;
               color:       #ecf0f1;
}

.footer-bottom {
	text-align: center;
   padding-top: 2rem;
          border-top: 1px solid #34495e;
  color: #95a5a6;
}@media (max-width: 968px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1d29;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .hero-bereich {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programm-item,
    .programm-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .programm-item.reverse .programm-img {
        order: 0;
    }
    
    .info-split {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .intro-section h2,
    .methoden-bereich h2,
    .programm-ubersicht h2 {
        font-size: 1.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.policySection {
   padding:      80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
   margin: 0 auto;
               text-align: left;
	}

.policyContainer h2 {


    font-size  : 2.5rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;

	}

.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

	         padding: 6rem 2rem 4rem;

		text-align: center;

		color: white;
}

.services-hero-content h1 {
  font-size: 3rem;

  margin-bottom: 1rem;

   font-weight: 700;
}



.services-hero-content p {
        font-size: 1.3rem;
  opacity: 0.9;
}

.services-overview {
   padding: 4rem 2rem;
    background: white;
}

.intro-block {
   max-width: 900px;
   margin: 0 auto;
  text-align: center;
}

.intro-block h2 {
    color:   #1a1d29;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.intro-block p {
	  font-size: 1.1rem;
    line-height: 1.8;
   color: #5a6c7d;}

.service-details {
  padding: 3rem 2rem 5rem;
               background: #f8f9fa;
} 

.service-card {
         background: white;
   border-radius: 12px;
			margin-bottom: 3rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   overflow  :  hidden;
}

.service-card.premium {

	    border: 3px solid #e67e22;}

.service-card.highlight {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);

  color: white;

}

.service-header {

  padding: 2rem 2.5rem 1.5rem;
   position: relative;
     }

.service-badge {
   display: inline-block;
	  background: #e67e22;
	  color   :    white;
	  padding   :       0.4rem 1rem;
	  border-radius     :    20px;
	   font-size: 0.85rem;
	  font-weight: 600;
	  margin-bottom:1rem;
}

.service-header h3 {
   font-size     :   2rem;

  margin-bottom: 0.5rem;

   color     :   #1a1d29;
}

.service-card.highlight .service-header h3  
  {
    color: white;

}

.service-tagline {
   font-size: 1.1rem;
  color    :   #5a6c7d;
}

.service-card.highlight .service-tagline	{
  color: rgba(255,255,255,0.95);
}

.service-body {
    padding: 0 2.5rem 2.5rem;
 display  :  grid;
   grid-template-columns: 400px 1fr;
     gap: 3rem;
   align-items: start;

}

.service-body.single-column {
        grid-template-columns: 1fr;
}

.service-image img {
   border-radius: 8px;
   width: 100%;
}

.service-duration {
   display  :       flex;
  align-items: center;
   gap: 1rem;
  margin-bottom: 1.5rem;
               padding: 1rem;
    background: #ecf0f1;
	border-radius: 8px; 
	
}


.service-card.highlight .service-duration {
  background: rgba(255,255,255,0.2);
}

.service-duration .icon-wrapper		{
  width   :       40px;
  height: 40px;
}

.service-duration .icon-wrapper img


{
   width: 100%;

    stroke: #3498db;

  fill: none;

  stroke-width: 2;
}

.service-duration span	{
   font-size: 1.05rem;
   font-weight: 600;
}

.service-description  
  {
	line-height :    1.8;
   margin-bottom: 2rem;
   color: #34495e;
}

.service-card.highlight .service-description {
   color: white;
}  

.service-info h4 {
        font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #2c3e50;
}

.service-card.highlight .service-info h4 {


   color: white;

}

.features-list {

	    list-style: none;
    display: flex;
   flex-direction: column;
  gap: 0.9rem;
         margin-bottom: 2rem;
}

.features-list li {
   padding-left: 1.8rem;
  position: relative;
	line-height: 1.6;
 color: #34495e;
}

.service-card.highlight .features-list li  
  {
	 color:     white;
}

.features-list li:before {
  content: "✓"; 
	  position: absolute; 
	   left: 0; 
		 color     :    #27ae60; 
	   font-weight: bold; 
			font-size   :     1.2rem;
}

.service-card.highlight .features-list li:before {
    color  :   #fff;
}

.consultation-benefits {
		display :        flex;
         flex-direction: column;
     gap: 1.5rem;
     margin:    2rem 0;
}

.benefit-item	{
  gap: 1.5rem;
	  display: flex;
	    align-items: start;

}

.benefit-item .icon-wrapper {
  height: 50px;
  flex-shrink: 0;
    width: 50px;
}

.benefit-item .icon-wrapper img {


    width: 100%;
    stroke: white;
  fill: none;
  stroke-width: 2;
     }


.benefit-item strong {
   display: block;
    font-size: 1.1rem;
  margin-bottom   :0.3rem;
}

.benefit-item p	{
    margin: 0;
      opacity:        0.9;
}

.cta-box {
   text-align   :center;
  margin-top: 2.5rem;
}

.process-section {
   padding:    5rem 2rem;
	   background: white;
}

.process-section h2 {
    text-align: center;
   font-size:  2.5rem;
    margin-bottom: 3.5rem;
         color: #1a1d29;
}

.process-timeline
	{
   max-width: 900px;
  margin: 0 auto;
   display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-item{
    display: grid;
    grid-template-columns: 80px 1fr;
   gap: 2rem;
    align-items: start;
}

.timeline-number {
   width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :    white;
   border-radius: 50%;
      display  :       flex;
   align-items     :       center;
    justify-content: center;
    font-size: 1.8rem;
  font-weight:       700;
   flex-shrink: 0;
	
}

.timeline-content h3  
  {
  font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color :#2c3e50;
	
}

.timeline-content p {
  color: #5a6c7d; 
	line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.faq-section h2 {
   text-align: center;
	font-size  :      2.5rem;
    margin-bottom: 3.5rem;
                    color: #1a1d29;
}

.faq-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  max-width  :        1200px;
   margin: 0 auto;
     }

.faq-item {
  background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
   font-size: 1.2rem;
   margin-bottom   : 1rem;
  color    :      #2c3e50;
}

.faq-item p {
	   color :     #5a6c7d;
    line-height: 1.7; 
	
	}

.final-cta 
 {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
    text-align: center;
  color: white;

}

.final-cta-content h2 {

  font-size: 2.8rem;
   margin-bottom: 1.5rem;}

.final-cta-content p {
   font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-large{
  background: white;
   color: #2980b9;
   padding     :  1.2rem 3rem;
  text-decoration: none;
   border-radius: 6px;
  font-weight: 700;
   display: inline-block;
    transition: all 0.3s;
   font-size :      1.15rem; 

     }

.btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-hero {

	  min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
     }

.thankyou-container {
    max-width: 900px;
    text-align   :   center;
}

.success-icon {
	 width: 120px;
         height: 120px;
  margin: 0 auto 2rem; 
	
}

.success-icon img {
  width: 100%;
  stroke: white;
    fill: white;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2)); 
	
}

.thankyou-hero h1	{
    font-size: 3rem;
  margin-bottom: 1.5rem;
   font-weight: 700;

}

.thankyou-message {
    font-size: 1.3rem;
        margin-bottom: 3rem;
  opacity: 0.95;
}

.next-steps   {
  background: white;
   color: #2c3e50;
    padding: 3rem;
    border-radius: 12px;
   margin   :     3rem 0;
}

.next-steps h2 {
  margin-bottom: 2.5rem; 
	       font-size   :       2rem; 
	  color: #1a1d29;
}

.steps-grid {
      display    :     grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.step-card {
   text-align: center;
}

.step-number {
  width: 60px; 
		 height: 60px; 
	    background: #27ae60; 
	    color: white; 
	   border-radius: 50%; 
	  display    :flex; 
	   align-items: center; 
		 justify-content: center; 
	      font-size: 1.5rem; 
	  font-weight: 700; 
	  margin:0 auto 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
	margin-bottom: 0.8rem;
}

.step-card p{
   color: #5a6c7d;
   line-height    :   1.6;
}

.thankyou-info

{
  background: rgba(255,255,255,0.1); 
	 padding: 2rem; 
   border-radius    :        10px; 
   margin: 2rem 0;
}

.thankyou-info h2 {
					font-size:  1.8rem;
	  margin-bottom: 1rem;
}  

.thankyou-info p {

    font-size: 1.05rem;
    line-height    :    1.7;
}


.thankyou-actions {
   display: flex;
          gap :  1.5rem;
   justify-content: center;
  margin  :   3rem 0;


}



.contact-reminder {
	  background: rgba(255,255,255,0.15);

	    padding :     2rem;

	               border-radius: 10px;

		margin-top: 3rem;
}

.contact-reminder h3 {
    font-size     :    1.5rem;
   margin-bottom: 1rem;
}

.phone-highlight {

	  font-size: 1.8rem; 
   font-weight: 700; 
    margin: 1rem 0;
	}

.availability {
   font-size: 1rem; 
	    opacity    :    0.9;
}

.additional-resources {
  padding   :        5rem 2rem;
    background:white;
}

.additional-resources h2
{
   text-align   : center;
  font-size: 2.3rem;
    color:      #1a1d29;
    margin-bottom: 3rem;
}

.resources-grid


{
   display: grid;

  grid-template-columns: repeat(3, 1fr);

	gap: 2.5rem;

}

.resource-card {
  text-align: center;
         padding: 2rem;
  border-radius:  10px;
   background   : #f8f9fa;
}

.resource-icon {
	 width: 70px;
  height   :   70px;
   margin: 0 auto 1.5rem;
}

.resource-icon img
{


  width: 100%;
  stroke: #3498db;
   fill: none;
         stroke-width: 2;}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.resource-card p
{
   color: #5a6c7d;
  line-height: 1.6;
}@media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-body {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        gap: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
    
    .next-steps {
        padding: 2rem 1.5rem;
    }
}