* {
	margin: 0;
    padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
 background-color: #fafafa;
}

.navbar   {
   background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
    top  :    0;
  z-index: 1000;
}

.navbar-container {
   max-width     :       1200px;
   margin    :    0 auto;
    padding: 1rem 2rem;
	display: flex;
   justify-content: space-between;
   align-items     :       center;
}

.navbar-brand img 
 {
  height: 64px;
  width: auto;
    display: block;
}

.nav-menu {


   display: flex;
    list-style: none;
    gap: 2rem;
	align-items: center;
	}

.nav-menu a {
  font-weight: 500;
   color: #333;
  text-decoration: none;
   transition :    color 0.3s ease;
}

.nav-menu a:hover {
	 color: #2563eb;

}

.burger-menu {
  display:none;
    flex-direction: column;
    background: none;
   border: none;
     cursor: pointer;
    gap: 6px;
}



.burger-menu span {
   width  : 25px;
   height: 3px;
    background  :       #333;
   border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1)
	{
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }
}.hero {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 8rem 2rem;
	text-align: center;
	min-height: 500px;
  display: flex;
   align-items:    center;
     justify-content: center;
     }

.hero-content h1		{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
	
}

.hero-content p {
               font-size: 1.3rem;
   margin-bottom: 2rem;
    opacity: 0.95;
} 

.cta-button   {
    display: inline-block;
   background: #fff;
	color: #667eea;
    padding :    0.8rem 2rem;
   border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

}

.cta-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);


}@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.services-preview {
          max-width: 1200px;
    margin   :       0 auto;
  padding: 4rem 2rem;
}

.services-preview h2 {
    text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
   background: white;

   border-radius: 12px;

        overflow : hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
	   width: 100%;
  height    :    250px;
	object-fit: cover;
    display: block;

}

.service-card h3 {


        padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
   color: #333;
     }

.service-card p {
       padding: 0 1.5rem 1.5rem;
  color: #666;
    font-size: 0.95rem; 
}

.coaching-solutions {
   display: grid; 
	   gap: 3rem; 
	    background    :      #f0f4ff; 
	      margin: 0 auto; 
	   padding: 4rem 2rem; 
	  max-width: 1200px; 
	   grid-template-columns: 1fr 1fr; 
		 align-items: center;
}  

.coaching-content h2 {
     font-size: 2.2rem;
    margin-bottom    :      1rem;
      color: #333;
	
}

.coaching-content p {
   color: #555;
   font-size: 1.05rem;
    line-height: 1.8;
}

.coaching-image img
{
  width: 100%;
       border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);


}@media (max-width: 768px) {
    .coaching-solutions {
        grid-template-columns: 1fr;
    }
}.webinar-section {
    max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.webinar-section h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
  text-align: center;
     }

.webinar-content > p {

    text-align: center;
  font-size: 1.05rem;
    color  :#555;
    margin-bottom: 2.5rem;
    max-width: 800px;
   margin-left: auto;
 margin-right: auto;
	}



.webinar-highlights {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;


}

.highlight-item {
   background: white; 
 padding :     2rem; 
  border-radius: 10px; 
   border-left: 4px solid #667eea; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	
}

.highlight-item h4

{
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  color: #333; 
	
}

.highlight-item p {

  color: #666;
    line-height: 1.6;

}  

.team-coaching {


  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
  display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
          max-width: 1200px;
   margin: 0 auto;

}

.team-image img {
  width: 100%;
   border-radius :   12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-content h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-content p {
   color: #555;
    margin-bottom: 1.5rem;
	font-size: 1.05rem;
    line-height: 1.8; 

}

.coaching-benefits {
    list-style: none;
    margin-top: 1.5rem;
     }

.coaching-benefits li	{
  padding: 0.7rem 0;
   padding-left: 1.5rem;
  color: #555;
   position: relative;
}

.coaching-benefits li:before  {
  content: "✓";
   position: absolute;
                    left: 0;
   color   :        #667eea;
	font-weight: bold;
}@media (max-width: 768px) {
    .team-coaching {
        grid-template-columns: 1fr;
    }
}.cta-section{

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
   text-align: center;
  margin: 3rem 0;}

.cta-section h2 {
    font-size: 2.2rem;
   margin-bottom  :1rem;
}

.cta-section p


{
    font-size: 1.1rem;
   margin-bottom     :2rem;
     max-width     :        600px;
    margin-left: auto;
  margin-right  :       auto;
}

.cta-button-large {

	  display: inline-block;
    background: #fff;
   color    :   #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
   font-size: 1.05rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Cross-browser fix */

#contact		{
   max-width: 1200px;
            margin   :0 auto;
       padding: 4rem 2rem;
}

#contact h2   {
  text-align: center;
          font-size: 2.5rem;
   margin-bottom   :  3rem;
   color: #333;
}

.contact-form {
     background:        white;

	padding: 2.5rem;

	 border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

   max-width: 600px;

   margin: 0 auto;
     }


.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
    margin-bottom :       0.5rem;
   font-weight :      600;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {


    width: 100%;
   padding: 0.8rem;
  border   :   2px solid #e0e0e0;
    border-radius: 6px;
   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;
}

.submit-button
	{
    width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :        white;
   border: none;
  border-radius: 6px;
  font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
	 transition   :        all 0.3s ease;
}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

}
	/* Experimental feature */

.footer {
    background: #1a1a1a;
    color: #e0e0e0;
  padding: 3rem 2rem 1rem;
       margin-top: 4rem;
	}

.footer-container {
   gap: 3rem;
   margin-bottom: 2rem;
  display: grid;
  margin: 0 auto;
    align-items    :        start;
			max-width: 1200px;
  grid-template-columns: 1fr 2fr;
}

.footer-brand img {
    height: 86px;
 width:      auto;
    display    :    block;
  filter: brightness(0) invert(1);


}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap:     2rem;
}

.footer-section h4 {
	 font-size: 1rem;
    margin-bottom: 1rem;
   color: #fff;
}
/* Cross-browser fix */



/* Build system output */

/* Custom modifications */
.footer-section p,
.footer-section a {
    color:        #b0b0b0;
    font-size: 0.9rem;
  margin-bottom: 0.5rem;
	text-decoration: none;


}

.footer-section a:hover {
    color: #667eea;
}

.footer-section ul {
         list-style :   none;
}

.footer-bottom {
	text-align: center;
    padding-top: 1rem;
   border-top: 1px solid #333;
  color     :     #888;
   font-size: 0.9rem;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: repeat(3, 1fr);
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
       color    : white;
      padding: 6rem 2rem;
   	text-align: center;
     min-height: 350px;
       display: flex;
     align-items: center;
      justify-content: center;
}

.services-hero-content h1 {
  font-size: 3rem;
    margin-bottom    :    1rem;
   font-weight: 700; 

}

.services-hero-content p {
	font-size: 1.2rem;
  opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-detailed {
   max-width: 1200px;
    margin    :        0 auto;
    padding  :    3rem 2rem;
}

.service-item {
   display: grid;
    grid-template-columns: 1fr 1fr;
 gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
}

.service-item-reverse {


					grid-template-columns: 1fr 1fr;
	}

.service-item-reverse .service-item-image {
       order: 2;
}

.service-item-reverse .service-item-content  {
  order :        1;
}

.service-item-image img {
  width    :    100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.service-item-content h2 {
        font-size   :   2.2rem;
   margin-bottom: 1rem;
     color: #333;
}

.service-item-content > p {
   color: #555;
    line-height: 1.8;
  margin-bottom: 1.5rem;
   font-size: 1.05rem;
}

.service-details {
     background: #f8f9fa;
        padding   : 1.5rem;
  border-radius: 8px;
    margin: 1.5rem 0;
   border-left: 4px solid #667eea; 
	


}

.service-details h3 {
    font-size  :1.1rem;
  margin-bottom: 1rem;
    color: #333; 
	
} 

.service-details ul {
  list-style: none;
    padding-left: 0;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
         color: #555;
  position: relative;
}

.service-details li:before {
  content: "→";
  position: absolute;
   left: 0;
    color: #667eea;
	font-weight: bold;

}

.service-info {
    font-size: 0.9rem;
   color: #999;
   margin-top: 1.5rem;
   font-style: italic;
}@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item-reverse .service-item-image {
        order: unset;
    }

    .service-item-reverse .service-item-content {
        order: unset;
    }

    .service-item-content h2 {
        font-size: 1.8rem;
    }
}.webinar-offerings	{
   background: #f5f7fa;
  padding: 4rem 2rem;
       max-width: 1200px;
	 margin: 3rem auto;
   border-radius: 12px;
} 

.webinar-offerings h2 {
	  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  color: #333;}

.webinar-offerings > p {
  text-align: center;
   color: #666;
	margin-bottom :    2.5rem;
  font-size:     1.05rem;
}

.webinar-grid {
    display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.webinar-card {
	background: white;
    padding: 2rem;
    border-radius:  10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.webinar-card:hover    {

	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	}

.webinar-card h3 {
  font-size: 1.3rem;
   margin-bottom: 0.8rem;
   color: #333;
}

.webinar-card > p {
   color: #555;
  line-height: 1.7;
               margin-bottom: 1.5rem;
} 

.webinar-topics {
  background: #f0f4ff;
  padding: 1.2rem;
  -moz-border-radius: 8px;
	border-radius    :     8px;
	 -webkit-border-radius: 8px;
	
}

.webinar-topics strong {
    display: block;
   margin-bottom: 0.8rem;
    color  :    #667eea;
}

.webinar-topics ul {
               padding-left: 0;
  list-style: none;
}

.webinar-topics li {
   padding: 0.4rem 0;
  padding-left: 1.2rem;
  color: #555;
    position: relative;
  font-size:        0.95rem;
}

.webinar-topics li:before {

    color: #667eea;
  content: "•";
   position: absolute;
    left: 0;
     }

.pricing-section {
   padding: 0 2rem;
  max-width :    1200px;
  margin :        4rem auto;
}


.pricing-section h2 {
 color: #333;
    margin-bottom: 3rem;
  text-align: center;
    font-size: 2.5rem;
}

.pricing-grid {
                  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem;}

.pricing-card 
 {
  background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
			text-align: center;
       transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}

.pricing-card-featured {
    border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing-card h3  {
   font-size: 1.5rem;
	margin-bottom: 1rem;
  color: #333;
}

.pricing-card .price {
  font-size: 2rem;
  color: #667eea;
    font-weight: 700;
   margin-bottom: 1.5rem;
}

.pricing-card ul {


    list-style: none;
   padding-left: 0;
    margin-bottom     :    1.5rem;


}

.pricing-card li		{

   font-size: 0.95rem; 
    color: #555; 
    padding: 0.6rem 0;
	
}

.pricing-note {

    font-size   :     0.9rem;
   color: #999;
   margin-top: 2rem;
    text-align: center;


}@media (max-width: 768px) {
    .pricing-card-featured {
        transform: scale(1);
    }
}.why-choose {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 4rem 2rem;
    margin: 4rem 0;
}

.why-choose h2 {
	text-align :     center;
  font-size: 2.5rem;
	margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
         max-width: 1200px;
    margin: 0 auto;
}

.why-item {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
   border-radius: 10px;
  backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-item h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
	
}

.why-item p {
   line-height: 1.6;
	  opacity: 0.95;
}

/* NOTE: keep for legacy support */

.clients-testimonials {
  max-width    :       1200px;
        margin: 4rem auto;
   padding: 0 2rem;
}  

.clients-testimonials h2 {

   text-align: center;
     font-size:       2.5rem;
      margin-bottom: 3rem;
       color :   #333;
}  

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial  {
  background: white;
	padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-left: 4px solid #667eea;
}

.testimonial p {
  color: #555;
   line-height: 1.8;
	margin-bottom     :1rem;
	font-style :       italic;
}

.testimonial h4 {
    color: #333;
    font-size: 1.05rem;
    margin-bottom    :        0.3rem; 

}

/* Framework override */

.testimonial .company {
   color: #999;
   font-size: 0.9rem;
   font-style: normal;
   margin  : 0;
}



.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 3rem 2rem;
    text-align: center;
	 margin :  4rem 0 0;
}

.services-cta h2 {
                    font-size: 2.2rem;
   margin-bottom: 1rem;
}

.services-cta p {
  margin-left: auto;
    margin-right: auto;
        font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.services-cta-button {
    display: inline-block;
    background: #fff;
  color    : #667eea;
   padding: 0.8rem 2rem;
  border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
    max-width    :    700px;
  margin: 4rem auto;
    padding: 3rem 2rem;
}

.thankyou-container {

	  background: white;
  padding: 3rem;
   border-radius   :    12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.thankyou-icon {
       color: #2ecc71;
   margin-bottom   :       2rem;


}

.thankyou-icon svg  
  {
	 animation     :    scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1     {


  font-size: 2.5rem;
   color: #333;
  margin-bottom: 1rem;
}

.thankyou-main-text {
  margin-bottom: 2rem;
   color: #667eea;
    font-size: 1.3rem;
    font-weight :        600;
}

.thankyou-content {
    text-align: left;
	margin-bottom: 2rem;
}

.thankyou-content > p {
    color: #555;
   font-size: 1.05rem;
  margin-bottom: 2rem;
    line-height  :     1.8;
}



.next-steps {
	   border-left: 4px solid #667eea;
    border-radius: 10px;
    background: #f0f4ff;
    padding: 2rem;
   margin-bottom: 2rem;

}

.next-steps h2 {
               text-align  :       left;
   font-size: 1.3rem;
  margin-bottom: 1.5rem;
    color: #333; 

}

.next-steps ol {
  list-style-position: inside;
               padding-left: 0;
}

.next-steps li {
  text-align  :    left;
   color: #555;
    margin-bottom: 1rem;
   line-height: 1.6;
}

.thankyou-info {
	background: #fff3cd;
                    padding: 2rem;
   border-radius: 10px;
	margin-bottom: 2rem;
  border-left: 4px solid #ffc107;
}

.thankyou-info h3 {


   text-align: left;
    color: #333;
  font-size: 1.1rem;
  margin-bottom: 1rem;
	}

.thankyou-info p {
  margin: 0.5rem 0;
  color: #555;
  text-align: left;
}

.contact-info {
  font-weight: 600;
}

.suggested-actions {
	 background: #e8f5e9; 
	   padding: 2rem; 
	   border-radius: 10px; 
	      margin-bottom: 2rem; 
	    border-left: 4px solid #2ecc71; 
	
}

.suggested-actions h3     {
	font-size   :   1.1rem;
   text-align:       left;
   color: #333;
   margin-bottom: 1rem;
}

.suggested-actions p {
    text-align: left;
  color: #555;
  margin-bottom: 1rem;
}

.suggested-actions ul {
	list-style: none;
	 text-align: left;
  padding-left: 0;
}

.suggested-actions li {
   color: #555;
      margin-bottom: 0.6rem;
     padding-left: 1.5rem;
            position : relative;
}

.suggested-actions li:before {
  font-weight: bold;
    left: 0;
     position: absolute;
  content: "✓";
     color: #2ecc71;
}

.thankyou-buttons {
  display: flex;
     gap: 1rem;
     justify-content: center;
      flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    padding: 0.8rem 1.8rem;
  border-radius: 6px;
	 text-decoration: none;
  font-weight: 600;
   transition  :     all 0.3s ease;
  display: inline-block;
}

.button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.button-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.button-secondary:hover {
  background: #f0f4ff;
}

.quick-links
	{
    padding    :    3rem 2rem;
               background: #f5f7fa;
}

.quick-links h2 {
    text-align: center;
  font-size :      2rem;
 margin-bottom    :       2.5rem;
   color: #333;
}

.links-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
	background: white;
   padding: 2rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	 border-color: #667eea;
}

.link-card h3 {
      color :        #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;


}

.link-card p {
      color: #666;
    font-size  :       0.95rem;
    line-height: 1.6;}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .service-item-content h2 {
        font-size: 1.5rem;
    }

    .next-steps h2,
    .thankyou-info h3,
    .suggested-actions h3 {
        text-align: center;
    }

    .next-steps li,
    .thankyou-info p,
    .suggested-actions li {
        text-align: center;
    }
}.policySection  {
    padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 500px);
}

.policyContainer {
    margin: 0 auto;
       text-align: left;
      max-width: 800px;
}

.policyContainer h1 {
   font-size: 2.8rem;
   color: #333;
	margin-bottom: 2rem;
  font-weight: 700;
}

.policyContainer h2 {
    font-size: 1.5rem;
    color: #333;
  margin-top  :2rem;
    margin-bottom: 1rem;
   font-weight: 600;
                    border-bottom: 2px solid #667eea;
    padding-bottom     :    0.5rem;

}

.policyContainer p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size    :     1rem;


}

.policyContent {
                    background: white;
	padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-list  {
    list-style:  none;
   padding-left: 0;
    margin     :     1.5rem 0;
}

.policy-list li {
    padding: 1rem;
   margin-bottom: 1rem;
	background: #f0f4ff;
    border-left: 4px solid #667eea;
    border-radius: 4px;
    color: #555;
  line-height: 1.7;
}

.policy-list li strong {
   color: #333;
   display: block;
    margin-bottom: 0.3rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policyContent {
        padding: 1.5rem;
    }

    .policy-list li {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContent {
        padding: 1rem;
        border-radius: 8px;
    }
}