*{
    margin: 0;
   padding: 0;
   box-sizing: border-box;
     }

html, body {
    width: 100%;
	  height: 100%;
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	    color: #2c3e50;
	    background-color: #ffffff;
	  scroll-behavior: smooth;
}

.header-container{


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
   position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.navbar-main
{
   display: flex;
    justify-content: space-between;
	 align-items: center;
    max-width: 1200px;
  margin: 0 auto;
	 padding: 0 2rem;
}

.logo-section {
  flex-shrink: 0;
}

.logo-img    {
    height: 45px;
         width: auto;
   display: block;
}

.nav-links {
  align-items: center;
	list-style: none;
  display: flex;
   gap: 2.5rem;
}

.nav-link {
  color: #ffffff;
   text-decoration: none;
   font-weight: 500;
  font-size: 1rem;
   transition: all 0.3s ease;
     position: relative;
}

.nav-link:after {
  content: ''; 
	    position     :      absolute; 
	  bottom: -5px; 
	  left: 0; 
	   width  : 0; 
	  height   :    2px; 
	    background: #ffffff; 
	  transition: width 0.3s ease;


}

.nav-link:hover:after {
	width : 100%;
}

.burger-menu {
  display: none;
        flex-direction: column;
   background: none;
   border: none;
	cursor: pointer;
   gap: 6px;
  padding   :0.5rem;
}

.burger-line {
    width:  25px;
  height: 3px;
   background-color: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
	 opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

.hero-section {
  margin: 0 auto;
	gap: 3rem;
         align-items: center;
    padding: 4rem 2rem;
   display  :  flex;
   max-width: 1200px;
               justify-content: space-between;
}

.hero-content
	{
   flex: 1;
    display: flex;
   flex-direction: column;
                    gap: 1.5rem;
}

.hero-title {
   font-size: 3.5rem;
    font-weight: 700;
         color  :    #2c3e50;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
	color: #555555;
  line-height: 1.6;
}

.hero-image {

	  flex: 1;
    display     :     flex;
    justify-content: center;
}

.hero-img {
  max-width: 100%;
    height: auto;
    border-radius    :12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button    {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   padding: 1rem 2.5rem;
   border-radius: 8px;
    text-decoration     : none;
         font-weight: 600;
   text-align: center;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  width: fit-content;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.focus-benefits {
   background: #f8f9fa;
   padding  :        4rem 2rem;
    margin: 2rem 0;
}

.section-title {
   font-size: 2.5rem;
	font-weight: 700;
		 color: #2c3e50;
    text-align :      center;
    margin-bottom: 3rem;
}

.benefits-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
      margin: 0 auto;


}

.benefit-card 
 {
	   background: #ffffff;
   padding: 2rem;
   border-radius: 12px;
   text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);

}

.benefit-icon	{
   display: flex;
  justify-content: center;
          margin-bottom: 1.5rem;
  height:    60px;

}

.icon-svg {
    stroke: #667eea;
		 stroke-linecap: round;
		 width: 50px;
	  fill: none;
	    stroke-linejoin: round;
	   stroke-width: 2;
	  height: 50px;
}


.benefit-card h3 {

  font-size: 1.5rem;
   margin-bottom: 1rem;
  color     :     #2c3e50;}

.benefit-card p {

		 color :      #666666;
   line-height: 1.6;
  font-size: 1rem;}

.coaching-programs {
   padding    :   4rem 2rem;

   max-width: 1200px;

    margin: 0 auto;
}

.programs-container {
  display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
   margin-top: 3rem;
}

.program-card {
    background    :#ffffff;
	border-radius:  12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
   transition    :      all 0.3s ease;
  border: 1px solid #ecf0f1;
	
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}



.program-img {


	width  :   100%;
  height: 250px;
   object-fit: cover;
   display: block;
}

.program-card h3 {

	  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
	 color: #2c3e50;
	}

.program-card p {
  padding:       0 1.5rem;
    color  :       #666666;
    line-height: 1.6;
  margin-bottom    :   1rem;
   font-size: 0.95rem;
}

.program-badge {
  display     :       inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :      #ffffff;
               padding     :    0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
  font-weight: 600;
    margin: 0 1.5rem 1.5rem;
}

.elimination-section {
      display: flex;
               align-items :     center;
    justify-content  :    space-between;
       max-width    :   1200px;
  margin: 3rem auto;
  padding     :     4rem 2rem;
   gap: 3rem;
     }

.elimination-content
{
     flex :       1;
	}

.elimination-content .section-title {
	        text-align: left;
	 margin-bottom  :     1.5rem;
    font-size: 2.2rem;

}

.elimination-text {
	color: #555555;
   line-height: 1.8;
   font-size: 1.05rem;
}

.elimination-image {
   flex: 1;
     display     :    flex;
    justify-content: center;
}

.elim-img {
 max-width: 100%;
     height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   padding: 4rem 2rem; 
   text-align: center; 
  margin     :     3rem 0;
}

.cta-content h2 {
   color: #ffffff;
  font-size: 2.5rem;
     margin-bottom: 1rem;
	font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-button-secondary {
    display: inline-block;
  background: #ffffff;
   color: #667eea;
  padding: 1rem 2.5rem;
   border-radius: 8px;
    text-decoration:      none;
  font-weight: 600;
          transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
	  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);


}

.contact-section {
	  max-width: 600px;
   margin: 4rem auto;
    padding: 3rem 2rem;
     }

.contact-title  
  {
   font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
   margin-bottom: 2.5rem;
   font-weight: 700;
}



.contact-form {
    background: #f8f9fa;
  padding  :        2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
     margin-bottom: 1.5rem;
   display: flex;
  flex-direction    :        column;


}

.form-group label {
   font-weight: 600;
	color    :     #2c3e50;
  margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input, .form-textarea {
	    padding: 0.75rem 1rem;
    border: 2px solid #ecf0f1;
          border-radius: 6px;
                    font-family  :inherit;
    font-size     :     1rem;
   transition: all 0.3s ease;
   color: #2c3e50;
}

.form-input:focus, .form-textarea:focus 
 {
   outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height    :    120px;
}

.submit-button {
   width: 100%;
   padding:1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
      border:      none;
  border-radius: 6px;
  font-size: 1rem;
         font-weight: 600;
	cursor: pointer;
      transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
  transform: translateY(0);

}

.footer-container {
         background: #1a1a1a;
  color: #ffffff;
  padding: 3rem 2rem 1.5rem;
     margin-top: 3rem; 

}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-logo-section {
    display   :      flex;
       align-items: flex-start;
}

.footer-logo {
  height: 50px;
       width :      auto;
     filter: brightness(0) invert(1);
       display: block;
}

.footer-address h4, .footer-contact h4, .footer-links h4 {
   font-size   : 1.1rem;
	 margin-bottom  :       1rem;
    font-weight: 600;
}

.footer-address p, .footer-contact p    {
      line-height   :   1.8;
  color: #cccccc;
  font-size:   0.95rem;
     }

.footer-links ul {
	list-style: none; 

}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
       color: #cccccc;
	 text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;


}

.footer-links a:hover {
  color   :        #667eea;
     }

.footer-bottom {


	 text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
  color: #999999;
    font-size: 0.9rem; 

	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(102, 126, 234, 0.95);
        padding: 1.5rem 0;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .elimination-section {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .elimination-content .section-title {
        text-align: center;
        font-size: 2rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .navbar-main {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   padding     :       5rem 2rem; 
    text-align: center; 
   color: #ffffff;
}

.services-hero-content {
   max-width: 800px;
	   margin: 0 auto;

}

.services-hero-title {
   font-size    :        3rem;
	font-weight: 700;
     margin-bottom: 1rem;
   line-height:1.2;

}

.services-hero-subtitle {
       font-size: 1.3rem;
  opacity: 0.95;
 line-height: 1.6;
     }

.services-main {
  max-width   :  1200px;
    margin: 4rem auto;
   padding: 0 2rem; 

}

.services-list {
   display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap     :        2.5rem;
   margin-top: 3rem;
}

.service-item{


  background     :       #ffffff;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
  display    :        flex;
               flex-direction    :   column;
     }

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}

.service-header {

	padding  :      1.5rem;
    border-bottom: 2px solid #f0f0f0;
   display   :  flex;
	 justify-content: space-between;
  align-items: flex-start;
  gap  :        1rem;
     }

.service-header h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  flex: 1;


}

.service-price {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :  #ffffff;
	padding: 0.5rem 1rem;
    border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
    white-space: nowrap;
}

.service-image {
   width: 100%;
  height: 220px;
    object-fit: cover;
  display: block;
	} 

.service-description {
    padding: 1.5rem;
	color: #555555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-features {
    padding: 0 1.5rem;
	 list-style: none;
    flex-grow: 1;
}

.service-features li {
	padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
   color: #666666;
   font-size: 0.9rem;
   line-height: 1.5;
}

.service-features li:before {
  content: '✓';
   position: absolute;
   left: 0;
   color: #667eea;
    font-weight: bold;
}

.service-cta {
        margin: 1.5rem;
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	 padding: 0.75rem 1.5rem;
    border-radius: 6px;
   text-decoration: none;
  font-weight: 600;
  text-align: center;
          transition     :    all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.service-comparison {
   background: #f8f9fa;
   padding: 4rem 2rem;
  margin: 3rem 0; 

}

.comparison-table {
   max-width: 1200px;
    margin: 2rem auto;
}  

.services-table	{
  width: 100%;
   border-collapse: collapse;
  background    : #ffffff;
   border-radius   :     8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
}

.services-table th {
  padding    :  1.2rem;
  text-align: left;
   font-weight: 600;
  font-size     :     0.95rem;
}

.services-table td
{
  color     :        #555555;

	    font-size:     0.9rem;

	    padding: 1rem 1.2rem;

	    border-bottom: 1px solid #ecf0f1;
}

.services-table tbody tr:last-child td {
      border-bottom: none;
	}

.services-table tbody tr:hover {
    background: #f8f9fa;


}


.services-table tbody tr:nth-child(odd)     {
	background: #fafbfc;
}

.why-choose-us {
  margin: 4rem auto;
  max-width: 1200px;
    padding  :      0 2rem;
}

.reasons-grid {

	    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;

   margin-top: 2.5rem;


}

.reason-card {
      background: #ffffff;
    padding: 2rem;
  border-radius: 10px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border: 2px solid transparent;}

.reason-card:hover     {
  transform: translateY(-5px);
	 border-color: #667eea;
}

.reason-number {
					width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
  display: flex;
  align-items: center;
                    justify-content: center;
   font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.reason-card h3 {
	 font-size     :      1.2rem;
   color: #2c3e50;
    margin-bottom: 0.8rem;
}

.reason-card p {


   color     :       #666666;
   line-height: 1.6;
         font-size   : 0.95rem;
	}

.service-faq {
    background: #f8f9fa;
  padding: 4rem 2rem;
               margin: 3rem 0;
}

.faq-container {

   max-width: 800px;
  margin: 2rem auto;


}

.faq-item {
	   background    :    #ffffff;
    border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   overflow: hidden; 

	}

.faq-question  {
   align-items: center; 
   -moz-transition: all 0.3s ease; 
   border    :      none; 
		 color: #2c3e50; 
 width: 100%; 
   cursor: pointer; 
    font-size: 1rem; 
	justify-content:  space-between; 
  background: #ffffff; 
    text-align: left; 
		display: flex; 
   font-weight: 600; 
        -o-transition: all 0.3s ease; 
  -webkit-transition: all 0.3s ease; 
    padding: 1.5rem; 
    transition: all 0.3s ease;
}

.faq-question:hover  
  {
  background: #f8f9fa;
}

.faq-question::after {


  content: '+'; 
  font-size    :1.5rem; 
  color   :       #667eea; 
	 transition  :        transform 0.3s ease;
     }

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
	overflow: hidden;
    transition: max-height 0.3s ease;
  background  :      #fafbfc;
}

.faq-item.active .faq-answer {
	max-height :   300px;
}  

.faq-answer p {
                    padding  : 1.5rem;
   color: #555555;
   line-height: 1.7;
    font-size: 0.95rem;
}

.testimonials-section
{
    max-width: 1200px;
	margin: 4rem auto;
    padding: 0 2rem;
}

.testimonials-grid {


 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   margin-top: 2.5rem;


}

.testimonial-card {

  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 2rem;
   border-radius: 10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

}

.testimonial-text
	{


    color: #555555;
   line-height: 1.8;
  font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;}

.testimonial-author {
    color: #667eea;
   font-weight: 600;
   font-size: 0.9rem;
}

.call-to-action-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
               text-align: center;
    color     :     #ffffff;
   margin: 3rem 0;
}

.call-to-action-services h2 {
   font-size: 2.5rem;
   font-weight: 700;
  margin-bottom: 1rem;
} 

.call-to-action-services p {
  font-size: 1.1rem;
          margin-bottom: 2rem;
    opacity: 0.95;
} 

.thankyou-section {
   min-height: 100vh;

	    padding: 4rem 2rem;

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

	    display: flex;

	   align-items: center;

			 justify-content: center;
}

.thankyou-container {
               background: #ffffff;
    border-radius     :   16px;
    padding :  3rem 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center; 
	
}

.thankyou-icon {
   margin-bottom: 2rem;
   display: flex;
   justify-content    :     center;
}



.success-icon {
    width: 80px;
   height: 80px;
  stroke    :       #2ecc71;
    fill: none;
	 stroke-width: 2;
               stroke-linecap: round;
    stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.3));
}

.thankyou-title {
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-subtitle {
      font-size: 1.1rem;
   color: #666666;
	line-height: 1.6;
    margin-bottom :       2.5rem;


}

.thankyou-info {
    background: #f8f9fa;
  -moz-border-radius: 10px;
 -webkit-border-radius :  10px;
    border-radius :       10px;
          padding: 2rem;
  margin-bottom: 2rem;
     text-align: left;
}

.thankyou-info h2 {

	  font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 1.5rem; 

	}

.info-steps {
                    display: flex;
    flex-direction: column;
   gap :       1.5rem;
}

.step {
        display     :      flex;
  gap: 1.5rem;
}

.step-number {

   width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
    font-weight   :        700;
   flex-shrink: 0;


}

.step h3 {
   font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
	
}


.step p

{
   font-size: 0.9rem;
   color: #666666;
  line-height: 1.5;
}

.thankyou-cta {
  margin   :       2rem 0;
}

.thankyou-cta p {
	  color  : #555555;
    margin-bottom: 1.5rem;


}

.thankyou-buttons {

    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
     }



.btn-primary {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :     #ffffff;
	padding: 0.75rem 2rem;
     border-radius: 6px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px); 
	  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-secondary	{
  display:    inline-block;
   background: #ecf0f1;
        color: #667eea;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
   border: 2px solid #667eea;
}

.btn-secondary:hover   {
   background: #667eea;
  color: #ffffff;
}

.thankyou-tips {
  background: #f0f8ff;
   border-radius: 10px;
   padding: 2rem;
	margin: 2rem 0;
	 text-align: left;
}

.thankyou-tips h2 {
    font-size: 1.3rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
  text-align: center;
} 

.tips-list {
  display: flex;
   flex-direction  : column;
    gap: 1.5rem;
}

.tip-item {
   display: flex;
    gap: 1.5rem;
}

.tip-icon		{

    display: flex;
  justify-content: center;
  align-items: flex-start;
    flex-shrink: 0;
    width: 50px;
    height :        50px;

}

.tip-svg {
    width:       40px; 
	   height: 40px; 
	    stroke: #667eea; 
	  fill: none; 
	   stroke-width   :       2; 
	  stroke-linecap: round; 
	   stroke-linejoin: round;
}

.tip-content h3 {
  font-size: 1rem;
	color: #2c3e50;
   margin-bottom: 0.3rem;
}

.tip-content p {
   font-size: 0.9rem;

	    color: #666666;

	  line-height: 1.5;
	
}

.thankyou-contact-info {
   border-top: 2px solid #ecf0f1;
   padding-top: 2rem;
}

.thankyou-contact-info h2 {
		font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 1rem;




}

.thankyou-contact-info p{
   color: #666666;
               margin-bottom   :      0.5rem;
}

.contact-phone {
    font-size  :       1.3rem;
    color: #667eea;
  font-weight: 700;
  margin-top: 1rem;
}

.contact-hours {
   font-size: 0.85rem;
    color     :       #999999;
}@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .info-steps {
        gap: 1rem;
    }

    .step {
        gap: 1rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .tips-list {
        gap: 1rem;
    }

    .tip-item {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th, .services-table td {
        padding: 0.8rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .info-steps {
        gap: 0.75rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
  min-height: 70vh;


}

.policyContainer


{
    max-width: 800px;
		margin: 0 auto;
	    text-align: left;
}

.policyContainer h1 {
  font-size: 3rem;
    color: #2c3e50;
  margin-bottom    :        2rem;
  font-weight: 700;
   border-bottom   :  3px solid #667eea;
   padding-bottom: 1.5rem;
}

.policyContainer h2    {
  font-size: 1.8rem;
    color: #667eea;
   margin-bottom: 1.2rem;
  font-weight: 700;
    margin-top: 2.5rem;
  color: #2c3e50; 
	
}

.policyContainer p {
	    color: #555555;
	margin-bottom: 1.5rem;
    line-height: 1.8;
        font-size: 1rem;
    text-align: justify;

}

.policyContainer p:first-of-type
{
	 font-size: 1.1rem;
          font-weight: 500;
}@media (max-width: 1024px) {
    .policySection {
        padding: 70px 2rem;
    }

    .policyContainer {
        max-width: 750px;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}