*  {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
}

html {
    font-size: 16px;
	scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; 
  line-height: 1.6; 
	 color: #2c3e50; 
   background-color: #f8f9fa;
}

a {
   text-decoration: none;
     color: inherit;
}

button {
   cursor: pointer;
  border: none;
		 font-family: inherit;
}

img {
    max-width: 100%;
  height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
   line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
                    font-size: 3rem;
   color:    #1a252f;
     }

h2 {
  font-size: 2.2rem; 
   color   :       #1a252f; 
      margin-bottom    :  2rem;
}

h3 {
   font-size: 1.5rem;
  color: #2c3e50; 

}

h4 {
  font-size :        1.2rem;

	 color: #2c3e50;

       margin-bottom: 0.8rem;
}

p {
         margin-bottom: 1rem;
   color: #5a6c7d;
    line-height: 1.8; 
	
}

.navbar {
     background-color :#ffffff;
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
   z-index:        100;
}

.nav-container {

	  justify-content: space-between;
   margin: 0 auto;
   max-width: 1200px;
  display: flex;
    padding  :       0 2rem;
  align-items: center;
}



.nav-logo-section {
    display: flex;
    align-items: center;
	
}

.nav-logo {


  height :     74px;
   width: auto;
	}

.nav-menu	{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link   {
   font-weight: 500;
   color: #2c3e50;
    transition: color 0.3s ease;
	 padding: 0.5rem 1rem;
}

.nav-link:hover {
   color: #3498db;
}

.nav-burger {

               display  :      none;
   flex-direction     : column;
  background: none;
               padding: 0.5rem;
   gap  :    5px;
	}

.nav-burger span {
  height: 3px;
    background-color: #2c3e50;
   width: 25px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}



.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap   :   3rem;
  align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f1419;
}

.hero-content p     {
	max-width: 500px; 
	  font-size   : 1.1rem; 
	    color: #5a6c7d; 
	  margin-bottom: 2rem;
}

.hero-cta   {
	display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}  

.hero-cta:hover {


  transform: translateY(-3px);
	  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);


}

.hero-image {
   border-radius: 15px;
	 overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width     :100%;
	 height: 100%;
    object-fit: cover;
}

.why-us {
    background-color: #f0f7ff;
   padding: 4rem 2rem;
}

.why-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.why-us-card {

    background: white;
   padding: 2.5rem;
    border-radius    :  12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;

} 

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.why-us-card h3 {
  color: #1a252f;
  margin-bottom: 1rem;

}

.services-preview {
   max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap  : 2.5rem;
}

.service-box {

   background: white;

    border-radius:     12px;

 overflow    : hidden;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

	 transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service-box:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);}

.service-box img {
      width: 100%;
   height: 220px;
   object-fit: cover;
}

.service-box h3 {
 padding   :     1.5rem 1.5rem 0.5rem;
    color: #1a252f;
}

.service-box p 
 {
  font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem;
}


.coaching-process {
        background-color: #1a252f;
         color  : white;
       padding: 4rem 2rem;
}

.process-wrapper{
   max-width: 1200px;
	margin: 0 auto;
}


.coaching-process h2 {
	 color: white;
	 text-align: center;
    margin-bottom  :       3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {

	  background-color: rgba(255, 255, 255, 0.08);

  padding: 2rem;

    border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.1);

   text-align: center;

     transition: all 0.3s ease;


}

.step:hover {
  background-color: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.step-number    {
  display: inline-flex;
   align-items: center;
    justify-content: center;
    width     :        50px;
	 height   :    50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
					border-radius: 50%;
  font-size: 1.5rem;
   font-weight: bold;
	margin-bottom: 1rem;


}

.step h3 {

   color: white;
    margin-bottom: 0.8rem;
}

.step p {

	  color: rgba(255, 255, 255, 0.8);
   font-size: 0.95rem;
	 margin: 0;
}

.webinars-section {
   max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
}

.webinars-grid {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2.5rem;
}

.webinar-card {
	 background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
   transition: transform 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-8px);
}

.webinar-card img {
   width: 100%;
    height    : 250px;
  object-fit  :cover;
}

.webinar-card h3 {
       padding   :      1.5rem 1.5rem 0.5rem;
   color: #1a252f;
}

.webinar-card p {
      font-size:      0.95rem;
    padding: 0 1.5rem;

}

.webinar-link {


  border-radius: 8px;
    color     :  white;
  transition  :  background-color 0.3s ease;
  margin: 1rem 1.5rem 1.5rem;
   padding: 0.8rem 1.5rem;
    background-color: #667eea;
  display: inline-block;
	font-weight: 500;
	


}

.webinar-link:hover {
   background-color: #764ba2;
}

.cta-section
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
  text-align: center;
}

.cta-wrapper {
   max-width: 800px; 
	   margin    :     0 auto;
}

.cta-section h2

{


    color: white;
	}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
	 margin-bottom: 2rem;
}

.cta-button {
   display: inline-block;
   padding: 1rem 3rem;
  background-color: white;
   color: #667eea;
  border-radius: 50px;
  font-weight: 600;
   transition  :       transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonials-section {
  max-width: 1200px;
    margin  :      0 auto;
    padding: 4rem 2rem;


}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.testimonial {
  background :        white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
		border-top: 4px solid #667eea;
}

.testimonial p {
  font-style: italic;
  color  :   #5a6c7d;
   margin-bottom :    1rem;
  line-height: 1.8;
}

.testimonial h4  
  {
      font-weight: 600;
          color: #1a252f;
}

#contact {
    background-color:#f8f9fa;
    padding:   4rem 2rem;
}

.contact-section {
   max-width: 600px;
    margin: 0 auto;
}

.contact-form {
     background: white;
    padding: 2.5rem;
    border-radius :     12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
      color: #2c3e50;
   font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
     width: 100%;
  padding: 0.8rem 1rem;
	border: 1px solid #dfe8ed;
		 border-radius: 8px;
  font-family: inherit;
    font-size     :    1rem;
  transition: border-color 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);
}

.submit-btn{
    width: 100%;

	   padding: 1rem;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;

	  border-radius: 8px;

	  font-weight: 600;

	   font-size: 1rem;

	    transition     :    transform 0.3s ease, box-shadow 0.3s ease;

	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3); 

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.footer {
	background-color: #1a252f;
    color: white;
  padding: 3rem 2rem 1rem;
	 margin-top: 4rem;
	
	}

.footer-container {
    max-width: 1200px;

	  margin: 0 auto;

	  display  :grid;

	   grid-template-columns: 1fr 2fr;

	  gap: 3rem;

	   margin-bottom: 2rem;
}

.footer-logo-section {
   display: flex;
    align-items: flex-start;
}

.footer-logo {
   height: 96px;
   width    :    auto;
  filter: brightness(0) invert(1);
	
}

.footer-content {

  display: grid; 
	  grid-template-columns: repeat(2, 1fr); 
		gap: 2rem;



}

.footer-column h4 {
 color: white; 
    margin-bottom: 1rem;
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
	
}


.footer-column a 
 {
  color: rgba(255, 255, 255, 0.7);
   transition: color 0.3s ease;


}

.footer-column a:hover {

  color: white;

	}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem; 

}

.footer-bottom {
      text-align: center;
    padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-alert {
    position    :  fixed;
   bottom: 0;
    left: 0;
    right: 0;
   background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding  :  1.5rem;
   z-index: 999;
 border-top    :      4px solid #667eea;
   animation: slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookie-content {
  max-width: 1200px;
    margin: 0 auto;
   display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
	flex :   1;
    margin: 0;
          color: #2c3e50;
}

.cookie-buttons {
   display: flex;
    gap: 1rem;
}

.cookie-btn {
   padding: 0.7rem 1.5rem;
  border-radius: 6px;
   font-weight :    500;
   transition: all 0.3s ease;
}

.cookie-btn.accept {


  background-color: #667eea;
  color: white;}

.cookie-btn.accept:hover   {
    background-color: #764ba2;


}

.cookie-btn.reject {
	color :        #2c3e50;
   background-color: #ecf0f1;
}

.cookie-btn.reject:hover {
  background-color: #dfe8ed;
}

.cookie-btn.manage {
    background-color: white;
  color: #667eea;
   border: 2px solid #667eea;
}

.cookie-btn.manage:hover    {
    background-color: #f0f7ff;
}

.cookie-modal     {
	 position: fixed;
    top: 0;
     left: 0;
        right: 0;
	bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
   align-items: center;
  z-index     :     1000;
}

.cookie-modal-content 
 {
  background: white;
     border-radius: 12px;
   	 padding: 2rem;
      max-width: 500px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
    color: #1a252f;
	  margin-bottom: 1rem;
}

.cookie-modal-content p {
    color: #5a6c7d;
   margin-bottom: 1.5rem;
}

.cookie-options
	{
      margin-bottom: 1.5rem;
}

.cookie-options label {
  display: flex;
   align-items: center;
    gap: 0.8rem;
   margin-bottom: 1rem;
   cursor: pointer;
}

.cookie-options input   {
  cursor: pointer;
}

.cookie-modal-buttons  
  {
  display: flex;
  gap     :        1rem;
}

.cookie-modal-buttons .cookie-btn {
   flex: 1;

	    padding: 0.8rem 1.5rem;

	   text-align: center;
}@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-burger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 3rem 2rem;
	text-align: center;
}

.services-hero-content {


   max-width: 900px;
   margin: 0 auto;

}

.services-hero h1 {

    color: white;
     font-size:  2.8rem;
      margin-bottom: 1rem;

}

.services-hero p {
  color: rgba(255, 255, 255, 0.9);
	 font-size  : 1.2rem;
}

.services-main {
  padding: 4rem 2rem;
}

.services-wrapper {

	max-width: 1200px;
       margin: 0 auto;
}

.service-detail {
   display     :        grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    margin-bottom     :       4rem;
          padding   : 2rem;
   background: white;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.service-detail.alt
	{

	 grid-template-columns: 1fr 1fr;
     }

.service-detail.alt .service-detail-content


{
                    order: 2;
}

.service-detail.alt .service-detail-image
{
    order: 1;
}

.service-detail-image {
    border-radius :        10px;
    overflow: hidden;
}

.service-detail-image img {
        width: 100%;
	 height: 100%;
  object-fit: cover;
	display: block;
}

.service-detail-content h2 {
    color: #1a252f;
  margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-detail-content p		{
  color: #5a6c7d;
	line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
   color: #2c3e50;
   font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-list {
  list-style: none;
  margin-bottom  :1.5rem;
}

.service-list li {
   padding: 0.6rem 0;
	padding-left: 1.8rem;
   position: relative;
	 color: #5a6c7d;
  line-height: 1.6;
}

.service-list li:before {
  content: "▸"; 
         position     :        absolute; 
    left   :    0; 
   color     :        #667eea; 
  font-weight: bold;


}

.price-tag  
  {
    background-color: #f0f7ff;
  padding: 1rem 1.2rem;
    border-radius     :        8px;
	 color: #667eea;
  font-weight: 500;
    margin: 1.5rem 0 0 0;
}

.comparison-section {
  background-color: #f8f9fa;

	  padding: 4rem 2rem;
}

.comparison-section h2 {
  text-align: center;
   margin-bottom: 2.5rem; 

}

.comparison-table {
  max-width: 1200px;
  margin: 0 auto;
   overflow-x: auto;
}

table {
    width: 100%;
   border-collapse: collapse;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow :      hidden;
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

th {
  padding     :   1.2rem;
	 text-align   :       left;
  font-weight :        600;
}

td {
					 border-bottom: 1px solid #ecf0f1;
  color: #5a6c7d;
  padding: 1.2rem;
	}

tbody tr:hover
	{
  background-color  :    #f0f7ff;
}


tbody tr:last-child td {
  border-bottom: none;
}

.faq-section     {
    max-width    :        1000px;
    margin: 0 auto;
	padding     :    4rem 2rem;
}

.faq-section h2 {

	   text-align: center;
	 margin-bottom: 2.5rem;
	}

.faq-container {


  display: grid;
   gap: 1.5rem;
     }

.faq-item {
   background  :white;
   padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #667eea;
   cursor: pointer;
         transition: all 0.3s ease;
}

.faq-item:hover     {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
      color: #1a252f;

	     font-size: 1.1rem;

	  margin: 0;

	   user-select: none;


}

.faq-answer {
  color :   #5a6c7d;
   margin: 1rem 0 0 0;
  line-height: 1.8;
  display     : none;
}

.faq-item.active .faq-answer {
    display: block; 

}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 3rem 2rem;
  text-align: center;
}

.services-cta h2 {
    color: white;


}

.services-cta p


{

  color: rgba(255, 255, 255, 0.9);
   font-size: 1.1rem;
      margin-bottom: 2rem;
	
}

.cta-button-services {
    display:   inline-block;
    padding: 1rem 2.5rem;
  background-color: white;
  color: #667eea;
  border-radius :  50px;
    font-weight:    600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
   background-color: #f8f9fa;
    padding :        4rem 2rem;
  min-height: calc(100vh - 400px);
    display: flex;
	 align-items: center;
	
}

.thankyou-container {
         max-width: 600px;
      margin: 0 auto;
       width: 100%;
}

.thankyou-content {
               background: white;
  padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.success-icon {
    width: 100px;
  height: 100px;
  margin  :0 auto 2rem;
}

.success-icon svg {
   width: 100%;
   height  :     100%;
    animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  color: #1a252f;
    font-size: 2.2rem;
	 margin-bottom: 0.5rem;
}

.thankyou-subtitle {
	 color: #667eea; 
	    font-size: 1.1rem; 
	  margin-bottom:     2rem;
}

.thankyou-details {
    background-color     :  #f0f7ff;
    padding: 1.5rem;
   border-radius: 10px;
    margin: 2rem 0;
	text-align: left;
}

.thankyou-details p {
	 color    :       #5a6c7d;
  margin-bottom: 1rem;
}

.thankyou-details strong {
    color: #667eea;
  font-weight: 600;
}

.info-box {
    background: white;
          padding: 1.5rem;
   border-radius  :    8px;
  margin-top: 1rem; 

	}

.info-box h3 {
   color: #1a252f;
  text-align: left;
    margin-bottom: 1rem; 
	
}

.info-list     {
	list-style   :    none;
    text-align: left;
}

.info-list li   {
 padding: 0.6rem 0;
  padding-left: 1.8rem;
 position: relative;
  color  :    #5a6c7d;


}

.info-list li:before  {
     content: "✓";
    position: absolute;
   left: 0;
    color: #2ecc71;
	font-weight: bold;
    font-size: 1.1rem;
}

.action-buttons {
	display: flex;
    gap: 1rem;
    margin: 2rem 0;
  flex-wrap: wrap;
   justify-content: center;
}

.button-primary,
.button-secondary {
   padding: 1rem 1.8rem;
   border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
	text-align     :        center;
}

.button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
 flex: 1;
  min-width: 200px;

}

.button-primary:hover


{
  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.button-secondary {
                    background-color: #ecf0f1;
   color: #667eea;
  flex: 1;
	min-width: 200px;
}

.button-secondary:hover
{
               background-color: #dfe8ed; 
	  transform: translateY(-2px); 
	  -webkit-transform: translateY(-2px); 
	  -ms-transform: translateY(-2px); 
	  -moz-transform: translateY(-2px);
	
}

.contact-info {
   background-color: #f0f7ff;
         padding: 1.5rem;
  border-radius: 10px;
   margin-top: 2rem;
}

.contact-info h4 {
  color: #1a252f;
   margin-bottom   :  0.8rem;
}

.contact-info p  {
   color: #5a6c7d;
   margin-bottom: 0.5rem;
}

.contact-info strong 
 {
  color: #667eea;
}

.next-steps-section {
	max-width: 1200px;
    margin   :    0 auto;
    padding    :  4rem 2rem; 
	
}

.next-steps-wrapper h2  
  {

	 text-align: center;
  margin-bottom: 1rem;
	}

.next-steps-wrapper > p {
	   text-align: center;
    margin-bottom   :        2.5rem;
   color: #5a6c7d;}

.services-quick-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	  gap: 2rem;
}

.service-card-quick {
    background  :   white;
	padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #667eea;
   text-align: center;
  transition: all 0.3s ease;
}

.service-card-quick:hover {


  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.service-card-quick h3{
   color: #1a252f;
    margin-bottom: 0.8rem;
}

.service-card-quick p {
   color: #5a6c7d;
   font-size: 0.95rem;

}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail.alt .service-detail-content {
        order: unset;
    }

    .service-detail.alt .service-detail-image {
        order: unset;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        min-width: unset;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}.policy-section {
   padding: 80px 2rem; 
		background: #f8f9fa; 
	  min-height: calc(100vh - 400px);
}

.policy-container {
   max-width: 800px;
   margin: 0 auto;
          text-align: left;
    background:    white;
   padding  :  3rem;
  border-radius   :12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.policy-container h1 {
    font-size: 2.8rem;
  color: #1a252f;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
	}

.policy-container h2 {
    font-size: 1.8rem; 
	  color: #2c3e50; 
	                    margin-bottom :     1.2rem; 
	   margin-top: 2rem; 
	   font-weight: 600; 
	          border-bottom: 2px solid #667eea; 
	   padding-bottom:0.8rem;
}

.policy-container h2:first-of-type {
   margin-top: 0;
}


.policy-container p {
    color: #5a6c7d;
   margin-bottom: 1.5rem;
  line-height : 1.8;
  font-size    : 1rem;
}

.policy-container strong {
   color: #1a252f;

   font-weight: 600;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        margin-top: 1.2rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}