*     {


         margin: 0;
  padding: 0;
    box-sizing:   border-box;


}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2d5a8c;
    --accent-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
   scroll-behavior: smooth;
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
   line-height: 1.6;
  background-color: #fff;
}

.navbar{
	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding     :       1rem 0;
    position:      sticky;
       top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);}

.navbar-container		{
  max-width     : 1200px;
   margin: 0 auto;
    padding: 0 2rem;
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.navbar-brand 
 {


   flex-shrink: 0; 



}

.navbar-logo	{
  height: 64px;
   width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
    display: none;
    flex-direction: column;
  background: none;
         border: none;
    cursor: pointer;
    padding: 0.5rem;
	
}


.burger-menu span {

	   height: 3px;
 margin: 5px 0;
   width  :    25px;
    transition   :  0.3s;
	 background-color: white;
    border-radius: 2px;}

.nav-menu {
    display: flex;
    list-style: none;
    gap   :2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
	font-weight: 500;
      transition: color 0.3s;
	font-size: 1rem;
}

.nav-link:hover {
  color: var(--accent-color);


}

.hero
{
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;
	 padding: 6rem 2rem;
  max-width: 1200px;
 margin: 0 auto;
}

.hero-content h1 {


   font-size: 3rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  line-height: 1.2; 


}

.hero-content p {
   font-size :       1.25rem;
               margin-bottom: 2rem;
  color: #555;
}

.cta-button {

	    display:   inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
	text-decoration: none;
    border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
     }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}



.hero-image img {
	  width: 100%; 
  border-radius     :     15px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
   object-fit: cover; 
   height  :        400px;
}

.section-container {


  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;}

.section-benefits {
     padding  :       6rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
     }

.section-benefits h2 {
     font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;

}

.benefits-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.benefit-card {
	background: white;
  padding: 2rem;
   border-radius    : 10px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition :  transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-card h3 {
  color: var(--secondary-color);
    margin-bottom: 1rem;
	font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
   line-height  :1.8; 

}

.section-showcase {
   padding: 6rem 0;
  background: white;
}

.showcase-item {
   display: grid;

   grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;

    max-width :1200px;

  margin: 0 auto;

    padding: 0 2rem;
}

.showcase-text h2 {
   font-size :      2.2rem;
  color: var(--primary-color);
    margin-bottom    :      1.5rem; 

}

.showcase-text p {
  font-size: 1.05rem;
   color:    #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
  color: var(--accent-color);
    text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
    display: inline-flex;
  align-items: center;
   gap :      0.5rem;
}

.link-arrow:after {
     content: "→";
  transition: transform 0.3s;
}

.link-arrow:hover:after {
  transform: translateX(5px);
}

.showcase-image img {
    width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  object-fit: cover;
    height: 350px;
}

.section-coaching


{
	padding: 6rem 0;
  background: var(--light-bg);
}



.coaching-wrapper {
		display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
   max-width     :        1200px;
      margin: 0 auto;
   padding: 0 2rem;
}

.coaching-image img 
 {
	    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  object-fit: cover;
    height: 350px; 

     }

.coaching-text h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
      margin-bottom  : 1.5rem;
}

.coaching-text p {
  color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.coaching-features {
   list-style: none;
   margin-top:       1.5rem;
}

.coaching-features li		{
  padding: 0.8rem 0 0.8rem 2rem;
			color: #555;
	position: relative;
  border-bottom: 1px solid var(--border-color);


}

.coaching-features li:last-child	{

	 border-bottom: none;


}

.coaching-features li:before {
  content: "✓";
          position: absolute;
  left: 0;
  color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.section-events {
   background: white;
  padding  :     6rem 0; 

}

.section-events h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
   text-align: center;
    margin-bottom    :  1rem;
}

.section-intro {
    text-align: center;
  color: #666;
    font-size: 1.1rem;
	margin-bottom     :        3rem;
  max-width: 800px;
	margin-left: auto;
				 margin-right: auto;
}

.events-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
    margin-top: 3rem;
}

.event-card
	{
   background: white;
   border-radius: 12px;
     overflow:        hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



.event-card img {
    width: 100%;
	height: 250px;
    object-fit: cover; 

}

.event-content  
  {
       padding: 1.5rem;
}

.event-content h3  
  {
  color: var(--secondary-color);
    margin-bottom: 1rem;
         font-size  : 1.3rem;

}

.event-content p {
   color:       #666;
    line-height: 1.8;
}

.section-testimonials  
  {
         padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
}

.section-testimonials h2 {
    font-size: 2.5rem;
 text-align     : center;
    margin-bottom: 3rem;
  color: white;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.testimonial {
  background: rgba(255,255,255,0.1);

	padding: 2rem;

   border-radius: 10px;

  border-left: 4px solid var(--accent-color);

  backdrop-filter: blur(10px);
}

.testimonial p {
   line-height: 1.8;
  margin-bottom: 1rem;


}

.testimonial-author  
  {
   font-weight: 600;
  color: var(--accent-color);
    font-size: 0.95rem;
}

.cta-section {


   padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
               color:       white;
	text-align: center;
	}

.cta-wrapper h2 {
   font-size: 2.5rem;
				 margin-bottom: 1rem;
}

.cta-wrapper p {
   font-size: 1.2rem;
  margin-bottom: 2rem;
   max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.cta-button-primary {
   display: inline-block;
   padding: 1rem 2.5rem;
    background: white;
  color: var(--accent-color);
  text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
	transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-primary:hover {
     transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	


}

.contact-section {
	 padding: 6rem 0;
  background: var(--light-bg);
}

.contact-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
       text-align: center;
	 margin-bottom: 3rem;
}

.contact-wrapper {


    display: grid;
  grid-template-columns     :      1fr 1fr;
  gap: 3rem;
   max-width: 1200px;
    margin: 0 auto;
    padding     :     0 2rem;} 

.contact-form-container {
  background: white;
   padding: 2rem;
  border-radius   :12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;

}

.form-group label {
   display    :       block;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
   font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding  :0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family    :  inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;

  border-color: var(--accent-color); 
	
}



.submit-btn {
   width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
  border: none;
   border-radius: 8px;
	font-weight: 600;
  font-size: 1rem;
    cursor: pointer;
   transition  :     transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.contact-info {
         background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}

.contact-info h3		{
   font-size: 1.5rem;
  color: var(--primary-color);
	 margin-bottom: 2rem;
}

.info-block {
    margin-bottom  :2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
} 

.info-block:last-child {
  border-bottom: none;
   margin-bottom   :       0;
  padding-bottom: 0; 
	
}

.info-block p:first-child 
 {
  color: var(--secondary-color);
    font-weight: 600;
   margin-bottom: 0.5rem; 
	
}

.info-block p {
   color: #666;
    line-height: 1.8;
}

.footer {
  background: var(--primary-color);
  color: white;
  padding :3rem 0 1rem;
}

.footer-container {

		 max-width   :        1200px;
  margin:       0 auto;
  padding: 0 2rem;
     }

.footer-content {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
             margin-bottom: 3rem;
}

.footer-brand {
  grid-column     :  1 / -1;
}

.footer-logo {
    height: 86px; 
	   width :    auto; 
	  filter: brightness(0) invert(1); 

}

.footer-section h4 {
    font-size: 1.2rem;
			margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
} 

.footer-section a {
  color: #ddd;
    text-decoration: none;
        transition: color 0.3s;
}



.footer-section a:hover {
  color: var(--accent-color);
}

.footer-section p {
      line-height: 1.8;
  color: #ddd;
}

.footer-bottom  
  {
         text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   color: #999;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        gap: 0;
        padding: 1rem 0;
        margin-top: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 2rem;
    }

    .nav-menu li a {
        display: block;
    }

    .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(8px, -8px);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 250px;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coaching-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-benefits h2,
    .section-events h2,
    .section-testimonials h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-benefits h2,
    .section-events h2,
    .section-testimonials h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .section-showcase,
    .section-coaching,
    .section-events,
    .section-testimonials {
        padding: 3rem 0;
    }

    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color   :white;
  padding  :   5rem 2rem;
    text-align     :   center;
}

.services-hero-content h1 {
    font-size: 2.8rem;
        margin-bottom: 1rem;
  line-height: 1.2; 

}

.services-hero-content p {
   font-size: 1.3rem;
    opacity: 0.9;
}

.services-grid-section {
  padding: 6rem 0;
   background :     white;
}

/* Debug styles */

.services-grid-section h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   text-align   :       center;
  margin-bottom    :      3rem;
} 

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card   {
	background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
   padding: 2rem;
  transition: all 0.3s ease;
	position     :     relative;
}

.service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.15);
  transform: translateY(-5px);
}

.service-icon-box {

   width: 70px;
   height: 70px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
	border-radius: 12px;
   display: flex;
  align-items: center;
    justify-content: center;
   margin-bottom: 1.5rem;
}

.service-number {
    color: white;
   font-weight: 700;
         font-size: 2rem;
}

.service-card h3 {
   font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;

}

.service-card p {
  color: #666;
  line-height: 1.8;
	 margin-bottom: 1.5rem;
	}

.service-details {
  background: var(--light-bg);
	padding: 1.5rem;
	 border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.service-details p   {
    margin-bottom: 0.5rem;
     font-size: 0.95rem;
}

.service-details p:last-child {
   margin-bottom: 0;
}
/* Browser compatibility */
.service-details strong {
  color: var(--secondary-color);


}

.services-showcase


{
      padding: 6rem 0;

  background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
}

.showcase-wrapper

{

	  gap: 4rem;
  padding:0 2rem;
   grid-template-columns: 1fr 1fr;
  display: grid;
	align-items: center;
    margin :     0 auto;
  max-width: 1200px;

}

.showcase-image-left img {
     width:      100%;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
	object-fit: cover;
     height: 400px;
}

.showcase-text-right h2


{
    font-size: 2.2rem;
  color: var(--primary-color);
    margin-bottom: 2rem;}

/* Cross-browser fix */
.showcase-points {
   gap: 1.5rem;
  flex-direction: column;
     display: flex;
}

.point-item {
   padding-left: 2rem;
   position: relative;
}
	/* Development only */


.point-item:before {
	  content: "✓";
        position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
     }

.point-item h4 {
  color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Performance critical */




.point-item p {
   color  :        #666;
    line-height: 1.7;
}

.services-process {
       padding: 6rem 0;
 background: white;

}
/* Minified version */
.services-process h2
	{
   font-size :   2.5rem;
	  color: var(--primary-color);
					 text-align: center;
	  margin-bottom: 3rem;
}

.process-steps {
   display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.step {
      text-align    :       center;
  padding: 2rem 1.5rem;
  background: var(--light-bg);
	border-radius :     12px;
  transition: all 0.3s ease;


}

.step:hover  {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
       color: white;
  transform: translateY(-5px); 
	
}

.step-number
	{
    width: 60px; 
  height: 60px; 
  background: var(--secondary-color); 
  color: white; 
     border-radius: 50%; 
  display:     flex; 
  align-items: center; 
   justify-content: center; 
  font-size: 1.8rem; 
   font-weight: 700; 
       margin: 0 auto 1rem;
}
/* Generated styles */



/* Temporary fix */


	/* Hack for old browsers */


.step:hover .step-number {
           background: white;
  color: var(--accent-color);

}

/* Production ready */


.step h3     {
  color: var(--secondary-color);
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.step:hover h3 {
    color: white;
	}

.step p {
   color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.step:hover p {
  color: rgba(255,255,255,0.9);
}

.pricing-section {
    padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.pricing-section h2    {
    font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
   margin-bottom: 1rem;
}

.pricing-intro {
   text-align: center;

	   color: #666;

	   font-size: 1.1rem;

	  margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {

	    background   :  white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding :2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
	}

.pricing-card:hover     {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

} 

.pricing-card.featured {
     border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.15);
  transform: scale(1.05);


}

.featured-badge {

	    position: absolute;
  top: -15px;
         left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
   color:        white;
    padding: 0.5rem 1.5rem;
    border-radius     : 50px;
    font-weight: 600;
    font-size: 0.85rem;


}

.pricing-card h3 {
	font-size: 1.5rem;
  color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price   {
         font-size: 2.5rem;

	  color: var(--accent-color);

	   font-weight: 700;

	    margin-bottom   :   0.25rem;
}

.price-period {
       color: #999;
      font-size   : 0.95rem;
        margin-bottom: 2rem;
	}

.pricing-features {
    list-style :   none;
  margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
  color     :        #666;
  border-bottom: 1px solid var(--border-color);
    display:     flex;
    align-items: center;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success-color);
    font-weight : bold;
  margin-right: 0.75rem;
    font-size: 1.2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
   display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--light-bg);
  color: var(--secondary-color);
  border: 2px solid var(--border-color);
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
	transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--secondary-color);
    color: white;
  border-color: var(--secondary-color);
}

.pricing-btn.primary {


  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
	color: white;
  border-color: var(--accent-color);
     }

.pricing-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.cta-section-services {
	padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
	text-align: center;
}

.cta-wrapper h2 {
  font-size    :    2.5rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {

    font-size   :      1.2rem;
  margin-bottom: 2rem;
   max-width  : 600px;
   margin-left: auto;
   margin-right: auto;

}


.thankyou-section {
    padding  :5rem 2rem;
  background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
	 min-height: 60vh;
  display: flex;
   align-items: center;
   justify-content: center;
}

.thankyou-container  {
    max-width: 700px;
    margin: 0 auto;
	text-align  :      center;
} 

.success-icon {
  margin-bottom: 2rem; 
	
}
	/* Typography */


.checkmark-circle {
        position: relative;
  height: 120px;
   width: 120px;
   margin     :   0 auto;
}

.checkmark-circle svg {
   width: 100%;
	height: 100%;
  color: var(--success-color);
}

.thankyou-section h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.thankyou-message     {
	 background: white;
   padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   margin-bottom: 2rem;
  border-left: 5px solid var(--accent-color);
}

.thankyou-message p {
  color: #666;
      line-height  :      1.8;
  margin-bottom: 1rem;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
   margin-bottom: 2rem;
}

.next-steps h2 {
    font-size   :      1.8rem;
  color: var(--primary-color);
	margin-bottom: 2rem;
}

.steps-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
}

.step-box {
  background: white;
    padding     :       1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      transition :   all 0.3s ease;
	
}

.step-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);}

.step-icon {
   width: 50px;
    height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
  color:    white;
    border-radius: 50%;
   display   :  flex;
   align-items: center;
  justify-content: center;
	font-weight: 700;
        font-size: 1.5rem;
    margin     :  0 auto 1rem;
}
/* Experimental feature */

/* Layout styles */


.step-box h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem; 

}

.step-box p {
	color:   #666;
    line-height: 1.6;
	font-size: 0.95rem;
     }

.contact-reminder {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
  padding: 2rem;
   border-radius: 12px;
	 margin-bottom: 2rem; 

}
	/* Experimental feature */
.contact-reminder h3		{
  margin-bottom: 1rem;
          font-size  :        1.2rem;
}

.contact-reminder p {


   margin-bottom: 0.5rem;
    line-height: 1.7;}

.contact-phone,
.contact-address {
  font-size: 1.05rem;
}

.thankyou-actions {
    display: flex;
    gap:     1rem;
	 justify-content: center;
	 flex-wrap: wrap;
}

/* Layout styles */

.btn-home,
.btn-services {

	    display: inline-block;
    padding: 1rem 2rem;
   border-radius:  8px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
	}

.btn-home {
  background: var(--secondary-color);
   color: white;
}

.btn-home:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 90, 140, 0.3);

}
/* Responsive design */


	/* Component styles */


.btn-services {
  background: var(--accent-color);
    color:       white;
} 

.btn-services:hover {
	  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);


}

.cta-section-thankyou {
  padding   :       4rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
  color: white;
    text-align    :  center;
}

.cta-wrapper-thankyou h2 {
  font-size: 2rem;
  margin-bottom     :      1rem;

}

.cta-wrapper-thankyou p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button-secondary {
	 display: inline-block;
   padding: 1rem 2.5rem;
      background :   white;
  color: var(--accent-color);
  text-decoration   : none;
   border-radius: 50px;
   font-weight: 700;
    transition     :  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); 

}
	/* Hack for old browsers */
	/* Third-party styles */

	/* Utility classes */
.cta-button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-grid-section h2,
    .services-process h2,
    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image-left img {
        height: 250px;
    }

    .services-grid,
    .process-steps,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-home,
    .btn-services {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-grid-section,
    .services-showcase,
    .services-process,
    .pricing-section {
        padding: 3rem 0;
    }

    .thankyou-section {
        padding: 3rem 1rem;
    }

    .thankyou-container {
        padding: 0 1rem;
    }

    .success-icon {
        margin-bottom: 1rem;
    }

    .checkmark-circle {
        width: 80px;
        height: 80px;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .pricing-btn,
    .btn-home,
    .btn-services {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}.policy-section		{
    padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  min-height: calc(100vh - 300px);
}

.policy-container     {

      max-width    :     900px;
    margin: 0 auto;
    text-align: left;
	}

.policy-container h1		{
	 font-size: 2.8rem;
  color: var(--primary-color);
               margin-bottom: 2rem;
   font-weight: 700;
   line-height: 1.2;
     }

.policy-container h2 {
   	font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 2.5rem;
    margin-bottom: 1rem;
      font-weight: 600;
  border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;}



.policy-container h2:first-of-type {
  margin-top: 0;
}

.policy-container p {
    color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
   font-size: 1rem; 

}

.policy-container strong     {
  color: var(--secondary-color);
   font-weight: 600;
}

.policy-container ul 
 {
  list-style: none;

    padding-left     :      0;
}

.policy-container li {
       margin-bottom: 0.8rem;
   padding-left: 2rem;
         position: relative;
   color :      #555;
    line-height: 1.8;
}

.policy-container li:before {
  content: "•";
    position  :    absolute;
	left: 0;
  color: var(--accent-color);
   font-size: 1.5rem;
	
}@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }

    .policy-container li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}