* {
  margin :      0;
  padding:        0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 

}

body {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color  :    #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
	}

a {

	    color: inherit;
   text-decoration     :       none;}

img {
  max-width: 100%;
 height: auto;
      display: block;
}

.site-header {
         position: sticky;

  top: 0;

  z-index: 1000;

			background  :        #ffffff;

          border-bottom: 1px solid #e8e8e8;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.main-nav {
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
          display: flex;
   justify-content     :       space-between;
   align-items: center;
}

.logo-section {
   flex-shrink: 0;
}

.site-logo  {
	 height: 50px;
	width: auto;
}

.burger-menu {
   display: none; 
   flex-direction    :        column; 
  background: none; 
   border: none; 
	 cursor: pointer; 
   padding: 0.5rem; 
  gap: 6px;
}

.burger-line {
  width: 25px;
  height: 3px;
    background-color: #1a1a1a;
  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(7px, -7px);
}

.nav-menu {
    display  : flex;
  list-style: none;
   gap: 2.5rem;
	align-items: center;
}

.nav-menu a {
  font-size: 1rem;
    font-weight: 500;
                    color: #1a1a1a;
   transition: color 0.3s ease;
     position: relative;
}

.nav-menu a::after{
	  content: '';
   position: absolute;
  bottom: -5px;
  left: 0;
	 width: 0;
   height: 2px;
                    background-color  :       #2563eb;
   transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%; 
	
}


.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 h1 {


    font-size: 3.5rem;
    line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0f172a;
    font-weight    :      700;

}

.hero-content p {


   font-size: 1.25rem;
    color     :      #475569;
    margin-bottom: 2rem;
  line-height: 1.8;
	}

.cta-button {
    display: inline-block;
         padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius  :    8px;
    font-weight   :600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
      cursor: pointer;
   border: none;
   font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}


.hero-image img {
         -webkit-border-radius    :        12px;
   border-radius: 12px;
  -moz-border-radius: 12px;
   object-fit    :       cover;
    width  :      100%;
  height:      400px;
}

.services-preview {

		max-width: 1400px;
	margin: 0 auto;
  padding: 5rem 2rem;
                    background: #f8fafc;}

.services-preview h2 {
    font-size: 2.5rem;
					text-align: center;
	 margin-bottom: 3.5rem;
	 color: #0f172a;
  font-weight     : 700;


}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :2rem;


}

.service-card {
      background: #ffffff;
        border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-image 
 {
   overflow:       hidden;
    height: 220px;
}

.service-image img {
 width: 100%;
    height: 100%;
	 object-fit: cover;
    transition: transform 0.3s ease;


}

.service-card:hover .service-image img {
  transform: scale(1.05);
	
}

.service-card h3 {
  font-size: 1.4rem;
  color:   #0f172a;
  padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.service-card p {
   color: #64748b; 
    padding: 0 1.5rem 1.5rem; 
    font-size: 0.95rem; 
   line-height: 1.6;
}

.coaching-programs {
    max-width: 1400px;
  margin: 0 auto;
    padding: 5rem 2rem;
}

.coaching-programs h2 {
   font-size    :     2.5rem;
  text-align: center;
                    margin-bottom: 3.5rem;
   color: #0f172a;
  font-weight: 700;
}

.programs-content  {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
	}

.program-item {
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    padding     :      2rem;
    border-radius    : 10px;
  border-left: 4px solid #2563eb;
	transition: all 0.3s ease;
}

.program-item:hover {
    border-left-color: #1e40af;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);

}

.program-item h3     {
   font-size: 1.3rem;
   color: #0f172a;
  margin-bottom: 1rem;
	font-weight: 600;
}

.program-item p {
   font-size: 0.95rem;
  color: #475569;
	line-height: 1.7;
}

.cta-appointment
	{
    max-width  :  1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius  :   12px;
   text-align: center;
  margin-bottom: 3rem;
}

.cta-wrapper h2 {
  font-size: 2.2rem;
	 color: #ffffff;
   margin-bottom: 1rem;
          font-weight  :      700;
}

.cta-wrapper p {
   font-size: 1.1rem;
   color: #cbd5e1;
    margin-bottom: 2rem;
   line-height: 1.6;
}

.cta-button-secondary {

	  border-radius: 8px;
    font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
       cursor: pointer;
  padding  :1rem 2.5rem;
   color: #0f172a;
   font-weight: 600;
   background: #ffffff;
	}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
                    padding: 5rem 2rem;
}



.contact-section h2 {
  font-size   :    2.5rem;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
   font-weight     :     700;
}

.contact-container {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
}

.contact-form {
        background: #f8fafc;
    padding :    2.5rem;
   border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;

}



.form-group label {
	    display: block;
	 font-weight:     600;
   color: #0f172a;
	margin-bottom: 0.5rem;
   font-size: 0.95rem;


}

.form-group input,
.form-group select,
.form-group textarea {
	   width: 100%;
    padding     :      0.75rem;
   border: 1px solid #e2e8f0;
		border-radius :     6px;
   font-size: 0.95rem;
    font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color  :    #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
                    width: 100%;
    padding    :0.9rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
    border: none;
   border-radius: 6px;
  font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  font-size: 1rem;


}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.contact-info {


                    display: flex;
	flex-direction :     column;
   justify-content: center;


}

.contact-info h3 {
     font-size: 1.5rem;
    color: #0f172a;
 margin-bottom     :   2rem;
  font-weight: 600;}

.info-item {
  margin-bottom: 1.5rem;
   padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
   display: block;
   font-weight: 600;
	color: #0f172a;
   margin-bottom: 0.25rem;


}

.info-value {
   display: block;
    color:    #475569;
   font-size: 0.95rem;
}

.site-footer {
    background: #0f172a; 
	    color: #cbd5e1; 
	    padding: 3rem 2rem 1.5rem;
	
}

.footer-content {
  max-width: 1400px;
   margin   :  0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap   :     2rem;
   margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
  font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600; 
	
}

.footer-nav {
	 list-style: none;
}

.footer-nav li {
    margin-bottom     :     0.5rem;
}

.footer-nav a {
      color: #cbd5e1;
   transition    :       color 0.3s ease;
   font-size: 0.9rem;


}


.footer-nav a:hover
	{
   color: #ffffff;
}



.footer-section p {
   font-size: 0.9rem;
   line-height: 1.6;
}

.footer-logo-img     {
   height: 50px;
    width:     auto;
}

.footer-bottom {
  text-align: center;
    padding-top: 2rem;
	border-top: 1px solid #334155;
	color: #94a3b8;
    font-size: 0.85rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e8e8e8;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image img {
        height: 280px;
    }

    .services-preview {
        padding: 3rem 1.5rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .coaching-programs {
        padding: 3rem 1.5rem;
    }

    .coaching-programs h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-appointment {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1.5rem 2rem 1.5rem;
    }

    .cta-wrapper h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-preview h2,
    .coaching-programs h2,
    .contact-section h2 {
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .program-item h3 {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.3rem;
    }
}.services-hero {
   max-width  :    1400px;
    margin :       0 auto;
   padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
			border-radius: 12px;
   margin-top  :      2rem;
   margin-bottom: 3rem;
}

.services-hero-content h1 {
    font-size: 2.8rem;
	  color: #0f172a;
	  margin-bottom: 1rem;
	    font-weight: 700;
	   line-height: 1.2;
	
}

.services-hero-content p {
       font-size: 1.1rem;
         color: #475569;
  max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
	}

.detailed-services {
    max-width: 1400px;
	 margin: 0 auto;
   padding: 0 2rem 4rem 2rem;
}

.services-container {

	    flex-direction: column;
       display: flex;
       gap  :      3rem;
     }

.service-detail
{
    background: #ffffff;
	border-radius: 12px;
   overflow :    hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

}

.service-detail-header {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    padding: 2rem;

         color: #ffffff;
}

.service-detail-header h2 {
          font-size: 1.8rem;
  margin :        0;
  font-weight: 700;
}

.service-detail-content {

	   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
  align-items: center;}

.service-detail-image {
	   -moz-border-radius: 10px;
  height:      350px;
  overflow:      hidden;
       border-radius:   10px;
     }

.service-detail-image img {
  object-fit: cover;
   width     :        100%;
   height: 100%;
}

.service-detail-text h3 {

   font-size: 1.5rem;
	 color: #0f172a;
   margin-bottom: 1rem;
  font-weight: 600;


}

.service-detail-text p

{
	 color: #475569;
	font-size: 0.95rem;
    line-height: 1.7;
   margin-bottom: 1.5rem;
}

.service-features {
  list-style:none;
    margin: 1.5rem 0;
   padding:        0;
}

.service-features li {
    padding: 0.75rem 0;
  padding-left : 1.75rem;
    position :   relative;
    color: #475569;
    font-size: 0.9rem;
	line-height:  1.6;
}

.service-features li::before {
  content: '✓';
    position: absolute;
    left: 0;
  color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;


}

.service-highlight {
    background     :     #f0f9ff;
  padding: 1rem;
   border-left: 4px solid #2563eb;
   border-radius: 4px;
		 font-style: italic;
   color :    #0f172a;
    margin-top: 1.5rem !important;
}

.comparison-section    {
  max-width   :  1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.comparison-section h2 {

	    font-size: 2.2rem; 
   text-align: center; 
    color: #0f172a; 
	 margin-bottom: 2.5rem; 
   font-weight: 700;
	}

.comparison-table-wrapper {
    background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
  border-collapse: collapse; 

}

.comparison-table thead {
	   background: #0f172a;
		 color: #ffffff;
	}

.comparison-table th {
    padding: 1.25rem;
                    text-align: center;
   font-weight: 600;
    font-size: 0.9rem;

}

.comparison-table td {
   padding: 1rem 1.25rem;
   text-align     :center;
   border-bottom: 1px solid #e2e8f0;
	 color: #475569;
  font-size: 0.9rem;
}

.comparison-table tbody tr:nth-child(even)		{
   background: #f8fafc;}

.comparison-table tbody tr:hover {
    background: #f0f9ff;
}

.comparison-table tbody td:first-child {
  text-align: left;
    font-weight: 500;
    color: #0f172a;
}

.faq-services {
    max-width: 1400px;
   margin: 4rem auto;
   padding: 0 2rem;
}

.faq-services h2 {
  font-size: 2.2rem;
   text-align: center;
    color: #0f172a;
  margin-bottom: 2.5rem;
   font-weight: 700; 

}

.faq-container {
  display: flex;
    flex-direction: column;
   gap: 1rem;
}

.faq-item {
    background: #ffffff;
	border:    1px solid #e2e8f0;
   border-radius: 8px;
	overflow    :   hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {

	      border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);}

.faq-question {


  width   :       100%;
    padding: 1.5rem;
   background: #f8fafc;
   border: none;
    cursor: pointer;
  display: flex;
  justify-content: space-between;
    align-items: center;
    font-size: 1rem;
	font-weight     :    600;
         color: #0f172a;
       -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
   text-align: left;
    font-family: inherit;
	}

.faq-question:hover    {
  background: #f0f9ff;
}

.faq-icon {
   display: flex;
    align-items: center;
	justify-content: center;
    width: 24px;
	height: 24px;
  background: #2563eb;
	color   : #ffffff;
               border-radius: 50%;
   font-size: 0.8rem;
  transition  : transform 0.3s ease;
    flex-shrink: 0;
   margin-left: 1rem;
}

.faq-item.active .faq-icon{
  transform: rotate(45deg);
}

.faq-answer {
   -webkit-transition: max-height 0.3s ease;
	   -moz-transition: max-height 0.3s ease;
	    -o-transition: max-height 0.3s ease;
	  overflow: hidden;
	  transition   :  max-height 0.3s ease;
	  max-height: 0;
	         padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height    : 500px;
      padding: 1.5rem;
}

.faq-answer p {
          color     :      #475569;
   font-size: 0.95rem;
   line-height : 1.7;
    margin: 0; 

}

.cta-services {
   max-width: 1400px;
  margin: 4rem auto;
    padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
   border-radius: 12px;
    text-align: center;
}

.cta-services h2 {
    color: #ffffff;
  font-size: 2rem;
   font-weight: 700;
  margin-bottom: 1rem;
}

.cta-services p


{
   font-size   :      1rem;
  color: #cbd5e1;
	margin-bottom: 2rem;
}

.thankyou-section {
	        min-height: 100vh;
  display: flex;
   align-items: center;
   justify-content: center;
   padding  :        3rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);

}

.thankyou-container {
   max-width: 800px;
   width: 100%;
}


.thankyou-success {
				 text-align: center;
  margin-bottom: 3rem;
}

.success-icon
	{
    width:80px;
    height: 80px;
	 margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	border-radius : 50%;
    display: flex;
    align-items     :       center;
    justify-content :       center;
    color: #ffffff;
  font-size: 3rem;
     animation: scaleInAnimation 0.5s ease-out;
}@keyframes scaleInAnimation {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-icon svg {
  width: 50px;
  height: 50px;
}

.thankyou-success h1 {
  font-size: 2.2rem;
  color: #0f172a;
	 margin-bottom     :  0.5rem;
    font-weight: 700;
}
	/* Temporary fix */
	/* Colors and backgrounds */

	/* Layout styles */

.thankyou-subtitle {

	    font-size: 1.1rem;
    color: #475569;


}
/* Browser compatibility */

/* Framework override */

.thankyou-content {
  background   :        #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
	 margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box h2,
.what-happens h2 {
  font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight    :      600;
}

.info-box p,
.what-happens > p {
       font-size: 0.95rem;
   line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.steps-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		 gap: 1.5rem;
    margin: 2rem 0;
}
/* NOTE: keep for legacy support */


.step {
  background: #f8fafc; 
   border-radius: 8px; 
   padding: 1.5rem; 
  text-align: center; 
  border: 2px solid #e2e8f0; 
   transition: all 0.3s ease;

}

.step:hover
{


  border-color: #2563eb;
    background: #f0f9ff;
}

.step-number {
  display: flex;
  align-items: center;
   justify-content: center;
         width: 40px;
   height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
   border-radius: 50%;
	font-weight : 700;
	 font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* FIXME: IE11 compatibility */


.step-content h3 {
  font-size: 1rem;
             color: #0f172a;
     margin-bottom :   0.5rem;
       font-weight: 600;
}

.step-content p {
	    font-size: 0.85rem;

	    color    :        #475569;

	  margin: 0;
	}

.expectations-list {
  list-style: none;
	padding :     0;
}

.expectations-list li {
  display : flex;
  align-items    :   flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
   font-size   : 0.95rem;
     color: #475569;
      line-height: 1.6;
}

.expectations-list li:last-child {
   border-bottom   :        none;
}

.check-mark {
    display: flex;
   align-items: center;
   justify-content  :     center;
   width: 24px;
   height   :       24px;
	background: #2563eb;
  color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
  font-size  : 0.8rem;
    margin-right    :    1rem;
		 flex-shrink  :       0;
}
	/* Auto-generated CSS */

.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: 8px;
	font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
  cursor: pointer;
   border: none;
	 font-size: 1rem;
   text-decoration: none;
}

.action-button.primary {


  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
     }

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
	/* Experimental feature */
/* Framework override */


.action-button.secondary {


    background: #f8fafc;
         color: #2563eb;
   border: 2px solid #2563eb;


}

.action-button.secondary:hover {
	 background: #f0f9ff;
  transform: translateY(-2px);
}
	/* Animation and transitions */

.contact-reminder {
    text-align: center;
   padding: 2rem;
    background: #f8fafc;
   border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-reminder h3 {
   font-size     : 1.2rem;
   color: #0f172a;
  margin-bottom: 0.75rem;
	font-weight: 600;
}

.contact-reminder p {

  color: #475569;
   font-size: 0.95rem;
  margin: 0.5rem 0;
     }

/* Experimental feature */

.thankyou-testimonials    {
    background: #ffffff;
  border-radius: 12px;
   padding: 3rem 2rem;
	margin-bottom: 3rem;
}

.thankyou-testimonials h2 {
          text-align: center;
  color: #0f172a;
	margin-bottom: 2rem;
  font-weight: 700;
}

.testimonials-grid     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

}

.testimonial-card {
	background: #f8fafc;
	padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.testimonial-text {
                    color: #475569;
  font-size: 0.95rem;
    line-height     :  1.7;
   margin-bottom: 1rem;
 font-style: italic;}

/* Custom modifications */


.testimonial-author {
 color: #0f172a;

	  font-size: 0.9rem;

	        font-weight: 600;

	               margin: 0;
}
@media (max-width: 768px) {
    .services-hero {
        padding: 2.5rem 1.5rem;
        margin-top: 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 0.95rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-detail-image {
        height: 280px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-detail-header h2 {
        font-size: 1.3rem;
    }

    .service-detail-text h3 {
        font-size: 1.1rem;
    }

    .comparison-section h2,
    .faq-services h2 {
        font-size: 1.5rem;
    }

    .cta-services {
        padding: 2rem 1.5rem;
    }

    .cta-services h2 {
        font-size: 1.3rem;
    }

    .thankyou-success h1 {
        font-size: 1.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon svg {
        width: 35px;
        height: 35px;
    }

    .info-box h2,
    .what-happens h2 {
        font-size: 1.1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 0.9rem;
    }
}.policy-section {
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  min-height: 100vh;
  margin-top: 2rem;
}

.policy-container     {
  max-width: 900px;
	margin: 0 auto;
   text-align    :      left;
    background: #ffffff;
   padding: 3rem;
    border-radius    :     12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.policy-container h1 {
   color   : #0f172a;
   border-bottom: 3px solid #2563eb;
    margin-bottom: 2rem;
   padding-bottom: 1rem;
    font-weight: 700;
   font-size: 2.8rem;
} 

.policy-container h2 {
  font-size: 1.6rem;
   color    :      #1e293b;
     margin-top: 2.5rem;
  margin-bottom: 1rem;
 font-weight: 600;
}

.policy-container p {
   color: #475569;
		margin-bottom: 1.25rem;
	        line-height: 1.8;
		 font-size: 0.95rem;

}

.policy-container h2:first-of-type {
	  margin-top: 0;

}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-bottom-width: 2px;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}