*	{
          margin: 0;
     padding: 0;
    box-sizing: border-box;


}

html {
    scroll-behavior: smooth;


}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height :        1.6;
    color: #2c3e50;
  background-color: #fafbfc;
}

.nav__container {
  background: linear-gradient(135deg, #1a1f2e 0%, #16213e 100%);
    padding : 1.2rem 2rem;
  position: sticky;
   top: 0;
   z-index  : 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav__wrapper{

	  max-width    :    1400px;
  margin: 0 auto;
    display: flex;
   justify-content: space-between;
    align-items: center;
	}

.nav__logo-section {
   flex-shrink: 0;}

.nav__logo {
  height: 48px;
   width: auto;
    display: block; 
	
}

.nav__burger {
	  padding: 0.5rem;

	   cursor: pointer;

	   background: none;

	   display: none;

	   flex-direction: column;

	   border: none;


     }

.burger__line {
	   width: 28px;
   height: 3px;
  background-color: #ffffff;
   margin: 5px 0;
   transition: all 0.3s ease;
 border-radius: 2px;

}

.nav__menu {

  list-style: none;
   display: flex;
  gap    :  2.5rem;
     }

.nav__item {

   position: relative;
	}

.nav__link {
     color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
  transition: all 0.3s ease;
    padding: 0.5rem 0;
     border-bottom: 2px solid transparent;
}

.nav__link:hover {
  border-bottom-color: #3498db;
    color: #3498db;
}

.hero__section {
  max-width: 1400px;
	margin  :     0 auto;
  padding: 4rem 2rem;
        display     :  grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
               align-items :       center;
}

.hero__content     {

		 display:  flex;
  flex-direction:    column;
    gap: 1.5rem;


}

.hero__title {
        font-size: 2.8rem;
  font-weight: 700;
   line-height: 1.2;
    color: #1a1f2e;
}

.hero__subtitle  
  {
   font-size: 1.1rem;
   color   :    #555;
  line-height: 1.8;
}

.hero__cta {
	 align-self: flex-start;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    border: none;
	border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor:        pointer;
          transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 
	
}

.hero__cta:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);}

.hero__image{
  position: relative;
    overflow: hidden;
  border-radius: 12px;
}

.hero__img {
    width: 100%;
    height   :    auto;
  display :    block;
}

.section__title {
   font-size    :  2.2rem;
   font-weight: 700;
    text-align: center;
   margin-bottom: 3rem;
    color: #1a1f2e;
}

.core-values__section {
  max-width :  1400px;
    margin: 0 auto;
   padding: 4rem 2rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value__card {
    background: white;
    padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.value__card:hover
	{
	  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     }

.value__icon-wrapper {

	    width: 60px;
               height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 50%;
   display     :        flex;
   align-items: center;
	 justify-content: center;
   margin-bottom: 1.5rem;

}

.value__icon {
  width :       32px;
	height  : 32px;
  filter: brightness(0) invert(1);
}

.value__heading		{
    font-size   :    1.4rem;
       font-weight    :   600;
      margin-bottom: 1rem;
       color: #1a1f2e;
}

.value__text {

	    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
     } 

.coaching__programs {


    max-width:     1400px;
  margin: 0 auto;
				 padding: 4rem 2rem;


     }

.programs__container {
   display: flex;
    flex-direction: column;
	gap: 3rem;
	
}


.program__item
	{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:   2.5rem;
  align-items: center;
	background: white;
    padding    :     2.5rem;
    border-radius  :      10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program__item--reversed {
	    direction: rtl;

}

.program__item--reversed > * {
	                    direction: ltr;

     }

.program__image {
    width: 100%;
  height: auto;
    border-radius: 8px;
}

.program__content {
    display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.program__title {
   font-size: 1.6rem;
     font-weight: 700;
         color: #1a1f2e;
}

.program__description {
   font-size: 1rem;
  color: #666;
	 line-height: 1.8;
}

.program__features {
  display: flex;
   flex-wrap: wrap;
  gap: 0.8rem;
    margin-top: 0.5rem;
}

.feature__tag {
    display: inline-block;
  background: #ecf0f1;
    padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.85rem;
	 color:     #2c3e50;
    font-weight: 500;
}

.transformation__section
	{
    max-width    :   1400px;
   margin: 0 auto;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   border-radius: 10px;
}

.transformation__grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap: 2rem;
}

.transform__step {

	   background: white;

	padding: 2rem;

   border-radius: 8px;

   text-align: center;

  transition: all 0.3s ease;
	}

.transform__step:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
	
}

.step__number {
    font-size: 2.5rem;
   font-weight: 700;
	color: #3498db;
      margin-bottom: 1rem;
}

.step__title {
   font-size :1.3rem;
   font-weight: 600;
   margin-bottom: 0.8rem;
        color: #1a1f2e;
}

.step__description {
  font-size: 0.95rem;
   color: #666;
  line-height: 1.7;
}  

.cta__block {
   max-width: 1400px;
   margin: 3rem auto;
		 padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius:    10px;
  text-align: center;
               color   :    white;
}



.cta__title
{
   font-size     :     2rem;
    font-weight: 700;
   margin-bottom: 1rem;
}

.cta__text {
  font-size: 1.1rem;
   margin-bottom: 2rem;
	opacity: 0.95;
	 line-height: 1.6;
	
}

.cta__button{
   padding: 1rem 2.5rem;
    background    :       white;
    color  :    #3498db;
   border   :none;
	border-radius: 6px;
         font-size: 1rem;
  font-weight: 600;
	cursor: pointer;
  transition   :  all 0.3s ease;
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

}

.contact__section {
   max-width: 1400px;
       margin: 0 auto;
      padding: 4rem 2rem;
      scroll-margin-top: 100px;
}

.contact__wrapper {
  display: grid;
    grid-template-columns   : 1.5fr 1fr;
 gap: 3rem;
}

.contact__form {
    display: flex;
  flex-direction    :  column;
  gap: 1.5rem;
}

.form__group {
               display:    flex;
  flex-direction: column;
}

.form__label     {
  font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
	color: #2c3e50;
}

.form__input,
.form__select,
.form__textarea {
    padding: 0.75rem 1rem;
                    border: 1px solid #ddd;
   border-radius     :  6px;
         font-family: inherit;
    font-size: 0.95rem;
    transition     :        all 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form__textarea {
   resize: vertical;
   min-height: 120px;
}

.form__submit {
   padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color     :white;
  border: none;
         border-radius: 6px;
   font-size:        1rem;
	font-weight: 600;
   cursor: pointer;
  transition     :      all 0.3s ease;
          margin-top    :0.5rem;
}  

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}



.contact__info {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info__title {
    font-size: 1.4rem;
					font-weight: 700;
  margin-bottom: 1.5rem;
         color:     #1a1f2e;
}

.info__block {
   margin-bottom :     1.5rem;
   padding-bottom: 1.5rem;
  border-bottom: 1px solid #ecf0f1;
}

.info__block:last-child {
    border-bottom  :     none;

}

.info__heading {
  font-size :    0.95rem; 
		font-weight: 600; 
	   text-transform   :      uppercase; 
	   letter-spacing: 0.5px; 
	    color: #3498db; 
	   margin-bottom: 0.5rem;
}

.info__text {
    font-size: 0.95rem;
     color: #666;
      line-height: 1.6;
}

.info__link {

  color: #3498db;
                    text-decoration: none;
   transition: all 0.3s ease;
}

.info__link:hover {

       color: #2980b9;
    text-decoration: underline;
}

.footer__section {
  background: linear-gradient(135deg, #1a1f2e 0%, #16213e 100%);
	color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

.footer__content {


      max-width: 1400px;
  margin: 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
         margin-bottom: 2rem;
     }

.footer__column {
    display: flex;
               flex-direction  : column;
  gap: 1rem;
}

.footer__logo-block {
  padding-bottom: 1rem; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 50px;
  width: auto;
  display: block;
}

.footer__title {
         font-size: 1rem;
  font-weight: 700;
    text-transform: uppercase;
   letter-spacing : 0.5px;
  margin-bottom: 0.5rem;
    color: #3498db;
	}

.footer__menu {
    list-style: none;
}

.footer__link {


  color: rgba(255, 255, 255, 0.8);
  text-decoration     :        none;
  font-size: 0.9rem;
   transition: all 0.3s ease;
  display: inline-block;
       margin-bottom: 0.5rem;
}

.footer__link:hover {
  color     :     #3498db;
}

.footer__contact {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer__text {

  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);

}

.footer__bottom {
    max-width: 1400px;
  margin: 0 auto;
	padding-top    :      2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
    font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .nav__burger {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #16213e;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav__menu--active {
        max-height: 500px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__link {
        display: block;
        padding: 1rem 2rem;
        border: none;
    }

    .burger__line {
        width: 25px;
    }

    .burger__active .burger__line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger__active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .burger__active .burger__line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero__section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .program__item {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .program__item--reversed {
        direction: ltr;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .transformation__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .step__number {
        font-size: 2rem;
    }

    .cta__title {
        font-size: 1.5rem;
    }

    .cta__text {
        font-size: 1rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav__container {
        padding: 1rem;
    }

    .nav__logo {
        height: 40px;
    }

    .hero__title {
        font-size: 1.6rem;
    }

    .hero__cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .value__card,
    .program__item,
    .contact__info {
        padding: 1.5rem;
    }

    .program__features {
        gap: 0.5rem;
    }

    .feature__tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .form__input,
    .form__select,
    .form__textarea {
        font-size: 16px;
    }

    .cta__block {
        padding: 2rem 1rem;
    }

    .cta__title {
        font-size: 1.3rem;
    }

    .footer__content {
        gap: 1.5rem;
    }
}.services__hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 100%);
   color: white;
   padding: 4rem 2rem;
   text-align: center;
  margin-bottom: 3rem;
}

.services__hero-content {
    max-width: 1400px;
   margin: 0 auto;
}

.services__title {

	    font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 1rem;
  line-height: 1.2;
     }

.services__subtitle {
  font-size: 1.2rem;
	 opacity: 0.9;
  max-width: 600px;
   margin: 0 auto;
  line-height: 1.6;
     }

.services__container {
    max-width: 1400px;
   margin: 0 auto;
  padding: 0 2rem;
 display: flex;
   flex-direction  :     column;
    gap: 2.5rem;
  margin-bottom: 4rem;
}

.services__details{
   padding  :       4rem 0;
}

.service__card {

  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  transition: all 0.3s ease;
	}

.service__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);


}

.service__card--full {
    border-left: 5px solid #3498db;
}

.service__header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding   :       2rem;
   display :     flex;
  justify-content: space-between;
    align-items:    center;
   border-bottom: 1px solid #ddd;
}

.service__name {
   font-size: 1.6rem;

    font-weight: 700;

  color:#1a1f2e;

  margin   : 0;
}

.service__price {
  font-size   : 1.4rem;
   font-weight: 600;
  color   : #3498db;
   background: white;
	padding: 0.5rem 1.5rem;
  border-radius:        20px;
   white-space: nowrap;
	margin-left: 2rem;
}



.service__body {
  padding: 2rem;
  display:       grid;
    grid-template-columns: 1fr 1fr;
   gap: 2.5rem;


}

.service__info {
  display: flex;
                    flex-direction: column;
   gap: 1rem;
}

.service__subheading {
   font-size: 1.1rem;
  font-weight: 700;
   color: #1a1f2e;
        margin: 0;
}

.service__list {
  list-style: none;
    padding: 0;
}

.list__item {
    padding: 0.6rem 0;
  padding-left: 1.8rem;
   position: relative;
   color: #555;
    line-height: 1.6;
   font-size: 0.95rem;
}

.list__item:before {
  content: "•";
    left: 0;
  font-size: 1.2rem;
  position:        absolute;
   color: #3498db;
  font-weight: bold;
}

.service__benefits {
    display: flex;
    flex-direction: column;
         gap: 1rem;
}

.service__description {
   color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service__comparison {
      margin: 4rem auto;
   max-width: 1400px;
  padding   :     0 2rem;
}

.comparison__table {
    width: 100%;
   margin-top: 2rem;
}

.compare__grid {
    width: 100%;
  border-collapse: collapse;
  background: white;
	 border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}  

.compare__header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.compare__cell {
   padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
   font-size: 0.95rem;
}

.compare__cell--header {
  text-align: left;
	 font-weight: 600;
    border: none;
  color: white;
}

.compare__row:last-child .compare__cell {
  border-bottom: none;

}

.compare__row:nth-child(even) {
   background: #f8f9fa;
}

.compare__icon {
    width: 24px;
   height:      24px;
  filter: invert(1) brightness(0.3);


} 

.faq__section {
    max-width: 1400px;
    margin    :     4rem auto;
  padding: 0 2rem;
}

.faq__container {
  display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
}

.faq__item

{

	    background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #3498db;
    transition: all 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq__question {
   font-size:       1.1rem;
   font-weight: 600;
  color: #1a1f2e;
   margin: 0 0 1rem 0;
   line-height: 1.5;
}

.faq__answer {
   font-size: 0.95rem;
    color: #666;
   line-height: 1.7;
               margin: 0;
} 

.cta__final {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
	 text-align: center;
    padding: 3.5rem 2rem;
          margin    :       4rem 2rem;
  border-radius: 10px;
   max-width: 1400px;
        margin-left: auto;
  margin-right: auto;
}



.cta__final-title {
  font-size: 2.2rem;
    font-weight: 700;
     margin:0 0 1rem 0;
  line-height: 1.2;
}

.cta__final-text {
  font-size: 1.05rem;
  opacity: 0.95;
    margin: 0 0 2rem 0;
    max-width: 600px;
  margin-left: auto;
    margin-right: auto;
 line-height: 1.6;
}

.cta__final-button {
  display: inline-block;
    padding: 1rem 2.5rem;
     background: white;
  color: #3498db;
  text-decoration: none;
   border-radius: 6px;
	font-weight   :        600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta__final-button:hover {
	  transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

}

.thankyou__container {
   max-width: 800px;
   margin: 0 auto;
  padding: 4rem 2rem;
  min-height: calc(100vh - 200px);
}

.thankyou__content {
         background: white;
   padding: 3rem;
   border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.thankyou__icon-wrapper {
    margin-bottom: 1.5rem;
}

.thankyou__icon {

	   width: 80px;
  height: 80px;
  filter: invert(42%) sepia(79%) saturate(1235%) hue-rotate(87deg) brightness(104%) contrast(104%);}

.thankyou__title  {

	   font-size: 2.5rem;

	  font-weight: 700;

	    color: #1a1f2e;

	    margin: 1rem 0;

	   line-height: 1.2;


}

.thankyou__message {
    font-size: 1.1rem;
   color: #666;
	 margin-bottom: 2.5rem;
  line-height: 1.6;
}

.thankyou__steps {
   margin: 3rem 0;
   text-align    :     left;
}

.steps__title {
	  font-size: 1.5rem;
    font-weight     :700;
   color :      #1a1f2e;
  margin-bottom: 2rem;
  text-align: center;}

.step__list
	{
  display: flex;
       flex-direction: column;
   	gap    :        1.5rem;
}


.step__item {
   display: flex;
	gap    :1.5rem;
    align-items: flex-start;
}

.step__number {
     width : 40px;
    height: 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
	border-radius: 50%;
    display:   flex;
   align-items: center;
   justify-content: center;
	font-weight  : 700;
    font-size    :      1.1rem;
    flex-shrink:    0;
}

.step__content	{
  flex     :    1;
}

.step__heading {
  font-size: 1rem;
   font-weight: 600;
   margin: 0 0 0.5rem 0;
    color    :   #1a1f2e;

}

.step__text {
   font-size: 0.9rem;
  color: #666;
  margin  :0;
                    line-height: 1.5;
}

.thankyou__additional
	{
    background: #f8f9fa;
       padding: 2rem;
   border-radius: 8px;
  margin :   2rem 0;
  text-align: left;
}

.additional__title {
  font-size: 1.3rem;
   font-weight: 700;
   color: #1a1f2e;
    margin: 0 0 1rem 0;
   text-align     :     center;
}

.additional__text {


    font-size: 0.95rem;
   color: #666;
   margin: 0 0 1rem 0;
   text-align: center;
   line-height: 1.6;
	}

.additional__list


{
       list-style: none;
	 padding: 0;
}

.additional__list .list__item {
   padding-left: 1.8rem;
   margin-bottom: 0.8rem;
}

.thankyou__contact-info {
	padding: 2rem;
	margin: 2rem 0;
   border-radius   : 8px;
   border-top: 3px solid #3498db;
	text-align: left;
   background: white;
}

.contact-info__title {

	font-size: 1.3rem;
    font-weight :       700;
	color    :       #1a1f2e;
               margin: 0 0 1rem 0;
				 text-align   : center;
}

.contact-info__text {

	  margin :      0 0 1.5rem 0;
  line-height: 1.6;
   color: #666;
    text-align: center;
  font-size:     0.95rem;
}

.contact-info__details {
  display: flex;
  flex-direction: column;
    gap: 0.8rem;
}

.contact-detail {
	font-size: 0.95rem;
   color :     #555;
  margin:        0;
   text-align  :        center;
}

.thankyou__actions {
   display:     flex;
  gap: 1rem;
 justify-content: center;
    margin: 2.5rem 0;
         flex-wrap: wrap;
}

.action__button {
	   display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
   text-decoration: none;
  font-weight   :600;
  font-size: 1rem;
    transition: all 0.3s ease;


}

.action__button--primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.action__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.action__button--secondary {
  background: white;
   color: #3498db;
    border: 2px solid #3498db;


}

.action__button--secondary:hover {
  background: #f8f9fa;
  border-color   :    #2980b9;
   color: #2980b9;
}

.thankyou__closing {
   font-size: 0.95rem;
  color     : #666;
        margin-top: 2rem;
  padding-top :   2rem;
   border-top: 1px solid #ecf0f1;
  line-height: 1.6;
}@media (max-width: 768px) {
    .services__title {
        font-size: 2rem;
    }

    .services__subtitle {
        font-size: 1rem;
    }

    .service__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service__price {
        margin-left: 0;
    }

    .service__body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service__name {
        font-size: 1.3rem;
    }

    .compare__grid {
        font-size: 0.8rem;
    }

    .compare__cell {
        padding: 0.8rem;
    }

    .faq__container {
        grid-template-columns: 1fr;
    }

    .thankyou__content {
        padding: 2rem;
    }

    .thankyou__title {
        font-size: 1.8rem;
    }

    .thankyou__icon {
        width: 60px;
        height: 60px;
    }

    .cta__final-title {
        font-size: 1.8rem;
    }

    .cta__final-text {
        font-size: 0.95rem;
    }

    .step__item {
        gap: 1rem;
    }

    .thankyou__actions {
        gap: 0.8rem;
    }

    .action__button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services__title {
        font-size: 1.6rem;
    }

    .services__subtitle {
        font-size: 0.9rem;
    }

    .service__header {
        padding: 1.5rem;
    }

    .service__body {
        padding: 1.5rem;
    }

    .service__name {
        font-size: 1.1rem;
    }

    .service__price {
        font-size: 1.1rem;
        padding: 0.4rem 1rem;
    }

    .compare__grid {
        font-size: 0.7rem;
    }

    .compare__cell {
        padding: 0.5rem;
    }

    .faq__item {
        padding: 1.5rem;
    }

    .faq__question {
        font-size: 1rem;
    }

    .faq__answer {
        font-size: 0.85rem;
    }

    .cta__final {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
    }

    .cta__final-title {
        font-size: 1.5rem;
    }

    .cta__final-text {
        font-size: 0.9rem;
    }

    .thankyou__content {
        padding: 1.5rem;
    }

    .thankyou__title {
        font-size: 1.5rem;
    }

    .thankyou__icon {
        width: 50px;
        height: 50px;
    }

    .step__number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .action__button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: calc(50% - 0.4rem);
    }
}.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;
    }
}