*		{
  margin: 0;
      padding: 0;
     box-sizing: border-box;
}

html {

	   scroll-behavior: smooth;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
	color: #2c3e50;
    background-color: #f8f9fa;
}

.nav-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%); 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
   position: sticky; 
   top: 0; 
	z-index: 1000;
}

.nav-container {
  max-width:      1200px;
        margin     :    0 auto;
   padding: 1rem 2rem;
	 display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
  flex    :0 0 auto;
}

.logo-img
{
  height :   45px;
	 width: auto;
  filter: brightness(0) invert(0);
}

.nav-links {
  display: flex;
    list-style: none;
    gap :2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none; 
	    color: #2c3e50; 
	  font-weight: 500; 
	  font-size: 0.95rem; 
	    transition: color 0.3s ease; 
	   position: relative;

}

.nav-link:hover  {
   color: #667eea;
}

.nav-link::after {
  content: '';

   position: absolute;

  bottom: -5px;

   left: 0;

  width: 0;

   height: 2px;

  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);

	transition: width 0.3s ease;
}  

.nav-link:hover::after {
    width: 100%;
}


.nav-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 0.6rem 1.5rem;
   border-radius:  25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover     {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color     :        white;
}

.nav-cta::after {
      display: none;
}

.hamburger-toggle {
	 display: none;
    cursor   : pointer;
	background:        none;
                    border: none;
    padding:    0.5rem;
} 

.burger-icon {
      width: 28px;
	height: 28px;
   stroke: #2c3e50;
	transition:     all 0.3s ease;
}

.hero-section {
    max-width: 1200px;
  margin: 0 auto;
    padding:     6rem 2rem;
	 display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items     :        center;
}

.hero-content h1 {
   font-size: 3rem;
    line-height: 1.2;
        color: #1a252f;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
   font-size: 1.15rem;
   color: #546e7a;
  margin-bottom: 2.5rem;
   line-height: 1.7;
}


.btn-primary {
	display: inline-block; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
		 color: white; 
	    padding :  1rem 2.5rem; 
	  border-radius :       30px; 
	 text-decoration    :        none; 
	    font-weight    :      600; 
	  transition: all 0.3s ease; 
	   border: 2px solid transparent; 
	  font-size: 1rem; 
	  cursor: pointer;
	
}

.btn-primary:hover {
	  transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
	}

.hero-image img {
   width: 100%;
		height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-benefits {

  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
   padding: 5rem 2rem;


}

.benefits-container {
	max-width: 1200px;
  margin: 0 auto;


}

.benefits-container h2 {
  text-align: center; 
          font-size: 2.5rem; 
    margin-bottom: 3.5rem; 
   color: #1a252f; 
    font-weight: 700; 

}

.benefits-grid {
   gap: 2.5rem;
	 display:    grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-item   {
  background: white;
  padding: 2.5rem;
          border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; 

}

.benefit-item:hover     {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.benefit-number {
   font-size   : 2.5rem;
    font-weight  :   700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.35rem;
    margin-bottom: 1rem;
	color: #2c3e50;
   font-weight: 600;
}

.benefit-item p {
    color  :        #546e7a;
  line-height: 1.7;
   font-size: 0.95rem;
}

.featured-approaches {
    max-width: 1200px;
    margin: 0 auto;
    padding    :      5rem 2rem;
}

.featured-approaches h2 {

         text-align: center; 
	  font-size  :2.5rem; 
	    margin-bottom     : 3.5rem; 
	   color: #1a252f; 
		font-weight   :      700;
}

.approaches-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem; 
	
}

.approach-card {
  background    :        white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);


}

.approach-card img   {
   transition: transform 0.3s ease;
  object-fit: cover;
   height: 250px;
     width: 100%;
}  

.approach-card:hover img {
  transform: scale(1.05);
}  

.approach-card h3 {
    font-size: 1.3rem;
  margin: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.approach-card p {
   margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
	line-height: 1.6;
	 color: #546e7a;
}

.training-section {


  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding   :    5rem 2rem;
     }

.training-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; 

}

.training-content h2 {
	                    font-size: 2.3rem;
         margin-bottom: 1.5rem;
   color: #1a252f;
   font-weight: 700;
  line-height: 1.3; 

     }

.training-content > p {
	 color   :      #546e7a;
    font-size: 1.1rem;
  margin-bottom: 2.5rem;
    line-height: 1.7;
}

.training-list {
    list-style    :    none;
}

.training-list li {
  color: #2c3e50;
	margin-bottom     :1.2rem;
         padding-left: 1.8rem;
   position: relative;
   font-size: 1rem;
  line-height: 1.6;
}

.training-list li::before {

  content: '';
  position: absolute;
  left: 0;
               top: 0.5rem;
	width: 8px;
	height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;


	}

.training-image img {
    width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-booking
	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  padding: 4rem 2rem;

    text-align: center;
}

.cta-container {


  max-width: 700px;
  margin: 0 auto; 
	}

.cta-booking h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-booking p {
  color: rgba(255, 255, 255, 0.9);
   font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-secondary
{
   display: inline-block;
  background: white;
    color: #667eea;
  padding  : 1rem 2.5rem;
   border-radius: 30px;
   text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
    border: 2px solid white;
   font-size: 1rem;
    cursor: pointer; 

}  

.btn-secondary:hover {

	  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);}

.contact-section 
 {
   max-width: 1200px;
	margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-wrapper {
   max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    color: #1a252f;
  margin-bottom: 3rem;
   text-align: center;
   font-size: 2.3rem;
   font-weight: 700;
}

.contact-form {
   background: white;
  padding: 2.5rem;
	border-radius  :15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); 

     }

.form-group {
   margin-bottom: 1.8rem;
     }

.form-group label {
	display  :block;
   margin-bottom  :        0.6rem;
		color: #2c3e50;
  font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding  :     0.9rem 1rem;
   -webkit-transition: all 0.3s ease;
        -webkit-border-radius: 8px;
   border:        1.5px solid #e0e6ed;
       border-radius:        8px;
	-moz-transition: all 0.3s ease;
    font-family: inherit;
       font-size: 0.95rem;
   color: #2c3e50;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea     {
   resize: vertical;
  min-height: 130px; 
	
}

.btn-submit {
                    width   :  100%;
  padding:    1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border: none;
    border-radius: 8px;
   font-weight: 600;
    font-size    :        1rem;
	cursor: pointer;
   transition: all 0.3s ease;
}

.btn-submit:hover	{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-section
{
    background: #1a252f;
  color     :#ecf0f1;
               padding :      4rem 2rem 2rem;
   margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
	 margin: 0 auto;
	display  :      grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
   margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-info h3,
.footer-navigation h3 {
   font-size: 1.1rem;
   margin-bottom: 1rem;
    font-weight :        600;
   color: #ffffff;
}

.footer-address {
    font-size: 0.95rem;
   margin-bottom: 1rem;
               color: #bdc3c7;
  line-height: 1.8;
}

.footer-phone   {

		font-weight: 500;
   color: #ecf0f1;
	font-size: 1rem;


}

.footer-navigation ul		{
    list-style: none;
} 

.footer-navigation li
	{
   margin-bottom  :    0.8rem;
}

.footer-navigation a {
   transition: color 0.3s ease;
	 color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-navigation a:hover {
    color   :        #667eea;
}

.footer-bottom {
  text-align   :       center;

    padding-top    :        2rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #95a5a6;

  font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .approaches-grid {
        grid-template-columns: 1fr;
    }

    .training-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-approaches h2,
    .benefits-container h2,
    .training-content h2,
    .cta-booking h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .hero-section,
    .featured-approaches,
    .training-section,
    .contact-section {
        padding: 2.5rem 1rem;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
    max-width   :   800px;
   margin: 0 auto;
    text-align: left;
}

.policyContainer h1 {
    font-size: 2.8rem;
    color: #1a252f;
          margin-bottom: 2rem;
   font-weight: 700;
    text-align: center;
	
}

.policyContainer h2
{
   font-size: 2rem;
   color: #2c3e50;
          margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.policyContainer p


{
	    font-size :     1.1rem;
	margin-bottom: 1.5rem;
    color    :   #546e7a;
	 line-height    :   1.7;
	}

.policyContainer ul {
   margin: 1.5rem 0;
    padding-left: 2rem;
}

.policyContainer li {
		 color    :#2c3e50;
                    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.policyContainer em {
 color: #7f8c8d;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
	text-align: center;
  color: white;
}

.services-hero-content h1		{
	 font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.services-hero-content p {
   font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


.services-overview {
    background: white;
     padding: 4rem 2rem;
}

.services-container {
				 max-width: 1200px;

  margin: 0 auto;
}

.services-overview h2 {
    text-align: center;

		font-size: 2.5rem;

	   margin-bottom: 3rem;

	    color:#1a252f;

		 font-weight: 700;
}

.services-tabs {
    display: grid;
  grid-template-columns: repeat(5, 1fr);
   gap: 1.5rem;
}

.tab-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);

	    padding    :     2rem;

		border-radius: 12px;

	    text-align: center;

	    cursor: pointer;

		 transition: all 0.3s ease;

	    border: 2px solid transparent;
}

.tab-item:hover {
    border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.tab-item h3 {
   font-size: 1.1rem;
  color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight  :       600;
     }


.tab-item p

{
     color: #546e7a;
   font-size: 0.9rem; 
	
}

.services-detailed {
  background: #f8f9fa;
                    padding     :      4rem 2rem;
}

.service-block {
    background: white;
   border-radius: 15px;
	padding :        3rem;
   margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-block:hover {
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.15);
}

.service-header {
    align-items: center;
    display: flex;
    padding-bottom: 2rem;
  border-bottom: 2px solid #f0f4f8;
    margin-bottom  :      2rem;
        justify-content: space-between;
}

.service-header h2 {
   font-size: 2rem;
   color :   #1a252f;
    font-weight: 700;
}

.service-duration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding  :  0.6rem 1.5rem;
   border-radius   :        25px;
    font-size     :0.9rem;
  font-weight: 600;
}

.service-content {
  display: grid;
	    grid-template-columns: 1fr 1fr;
	    gap: 3rem;
	    align-items :        center;
}

.service-text {
   color: #2c3e50;
}

.service-text p {
   margin-bottom: 1.5rem;
		line-height: 1.7;
    font-size: 1rem;
}

.service-text h3 {
   font-size: 1.2rem; 
   margin-bottom: 1rem; 
    color: #1a252f; 
        font-weight: 600;
}

.service-list {
   list-style: none;
    margin-bottom: 2rem;
} 

.service-list li {
  padding     :    0.7rem 0;
   padding-left: 1.8rem;
   position: relative;
   color: #546e7a;
  line-height: 1.6;
}

.service-list li::before {
	  content: '';
  position: absolute;
   left: 0;
          top: 0.9rem;
   width: 6px;
      height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.service-price {


   font-size: 1.4rem;
	   font-weight: 700;
	    color: #667eea;
	   margin-top: 1.5rem;
	}

.service-image img {


         width     :        100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-comparison {
	 background: white;
  padding  :        4rem 2rem;
}

.services-comparison h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom     :        3rem;
     color: #1a252f;
    font-weight: 700;


}

.comparison-table {
       overflow-x  :        auto;
     }

table


{
      width  :      100%;
    border-collapse: collapse;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow     :       hidden;
}

table thead {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :white;


}

table th
	{
     padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size    :     0.95rem;

}

table td	{
   padding: 1.2rem 1.5rem;
	 border-bottom     :        1px solid #f0f4f8;
	color: #2c3e50;
	 font-size: 0.95rem;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:hover {
       background: #f8f9fa;
}

table td.feature-name  
  {
   font-weight:   600;
  color: #1a252f;
}

table td.check {
  color: #2ecc71;
   font-weight: 700;
    text-align: center;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
	text-align: center;
}



.services-cta h2	{
    font-size: 2.2rem;
   color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-cta p	{
  color: rgba(255, 255, 255, 0.9);
	 font-size: 1.1rem;
   margin-bottom  :   2rem;
}

.thankyou-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding :5rem 2rem;
  min-height: calc(100vh - 200px);
}

.thankyou-container {
    max-width: 700px;
   margin     :     0 auto;
}

.thankyou-card

{
   background :  white;
    border-radius:        15px;
    padding   :   3.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
}


.success-icon {
    display: flex;
    justify-content: center;
  margin-bottom: 2rem;
}

.success-icon img {
     width: 80px;
   height: 80px;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
    animation: iconBounce 0.6s ease-out;


}@keyframes iconBounce {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}.thankyou-card h1 {
	 font-size: 2.5rem;
    color: #1a252f;
          margin-bottom     :     0.5rem;
  font-weight: 700;
}

.thank-subtitle {
  font-size: 1.2rem;
       color: #546e7a;
   	margin-bottom: 2rem;
}

.thank-message {
   background: #f8f9fa;
   padding : 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
    text-align: left;
  line-height: 1.8;
	
}

.thank-message p {
   color: #2c3e50;
                    font-size: 1rem;
    margin-bottom: 1rem; 

} 

.thank-message p:last-child {
   margin-bottom: 0;
}

.thank-info {
     margin-bottom: 3rem;
  text-align: left;
}

.thank-info h2 {
    font-size: 1.5rem;
   color:    #1a252f;
      margin-bottom: 2rem;
	 text-align: center;
  font-weight: 600;
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-step	{
 background     :       #f8f9fa; 
	   padding: 1.5rem; 
	   border-radius   :      12px; 
	  text-align: center;
}

.step-number	{
	display :      inline-flex;
    align-items   :        center;
  justify-content   :        center;
   width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border-radius: 50%;
    font-size :      1.5rem;
    font-weight: 700;
    margin-bottom  :       1rem;

}

.info-step h3		{
  font-size: 1rem;
  color: #1a252f;
    margin-bottom    :0.5rem;
  font-weight: 600;
}

.info-step p


{
	 font-size: 0.9rem;
    color: #546e7a;
    line-height: 1.6;
}

.thank-actions {
   margin-bottom: 2.5rem;
  gap: 1rem;
	display    :       flex;
    justify-content: center;
}

.thank-actions .btn-primary {
   margin: 0;
}

.btn-secondary-link {
   color: #667eea;
  transition :all 0.3s ease;
 border-radius   :30px;
   text-decoration: none;
       padding  :      1rem 2.5rem;
   border: 2px solid #667eea;
    display: inline-block;
    background: white;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary-link:hover {
	  transform: translateY(-3px);
   background: #667eea;
   color :        white;
	}

.thank-support {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 12px;
    border-left: 4px solid #667eea;
     }

.thank-support p {
     color: #2c3e50;
   font-size: 0.95rem;
  margin-bottom: 0.5rem;

}

.support-phone {
     font-size: 1.3rem;
    font-weight: 700;
  color: #667eea;
  margin-bottom    : 0;
}@media (max-width: 1024px) {
    .services-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    table th,
    table td {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-overview h2 {
        font-size: 1.8rem;
    }

    .services-tabs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.8rem;
    }

    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-card h1 {
        font-size: 1.8rem;
    }

    .info-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thank-actions {
        flex-direction: column;
    }

    .thank-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.3rem;
    }

    .service-duration {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .thank-message {
        padding: 1.5rem;
    }

    .thankyou-card {
        padding: 1.5rem;
    }

    .thankyou-card h1 {
        font-size: 1.5rem;
    }

    .thank-subtitle {
        font-size: 1rem;
    }

    table {
        font-size: 0.7rem;
    }

    table th,
    table td {
        padding: 0.6rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}