* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   line-height:   1.6;
 color: #333;
  background-color: #fafafa;
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 1rem 0;
 position   : sticky;
  top: 0;
   z-index     :        1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container

{
    max-width: 1200px; 
	   margin :     0 auto; 
	    padding: 0 2rem; 
	  display: flex; 
		justify-content: space-between; 
	  align-items: center;
}

.logo-section


{
  display: flex;
  align-items: center;
   gap: 1rem;
  flex: 0 0 auto;
}

.nav-logo {
   height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
	}

.brand-name {
    font-size: 1.5rem;
  font-weight: 700;
   color: #fff;
   letter-spacing     :     -0.5px;
}

.burger-menu {
  display: none;
    flex-direction: column;
    background: none;
  border: none;
   cursor: pointer;
    padding:        0.5rem;

}

.burger-line {
  width  :     25px;
   height :        3px;
         background-color: #fff;
  margin     :     5px 0;
  transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);


}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3)
{
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu
	{
   display: flex;
	list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color   :    #fff;
  text-decoration: none;
   font-weight: 500;
      transition: color 0.3s ease;
  position:relative;
}

.nav-link::after {
  content: '';
  position: absolute;
	 -webkit-transition: width 0.3s ease;
  bottom: -5px;
  -o-transition: width 0.3s ease;
    left: 0;
	 width: 0;
               height: 2px;
    background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.hero {
	 display  :   grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
         max-width     :       1200px;
    margin: 0 auto;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}


.hero h1 {

  font-size: 3.5rem;
	line-height: 1.2;
  margin-bottom     :1.5rem;
    color: #2c3e50;
		font-weight: 800;
	}

.hero-subtitle {
	font-size: 1.25rem;
      color    :        #555;
		 margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding: 1rem 2.5rem;
   border-radius   :        50px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4); 

}

.hero-image {
		 border-radius: 20px;
   overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-image img {
    width: 100%;
                    height: auto;
   display: block;
}

.section-wrapper {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-coaching {
  padding: 6rem 0;
    background-color: #fff;


}

.about-coaching h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700; 
	
}

.content-grid {
		display   :    grid; 
	   grid-template-columns: 1fr 1fr; 
	   gap: 4rem; 
		align-items: center;
}

.text-block p {
   font-size: 1.1rem;
    line-height: 1.8;
          margin-bottom: 1.5rem;
 color    :    #555;
}

.image-block {
   border-radius: 15px; 
	  overflow: hidden; 
	  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.image-block img {
	 width  :       100%;
    height: auto;
    display    :    block;
}

.benefits-section {
    padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}  

.benefits-section h2 {
    font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
  text-align: center;
  font-weight: 700;

}

.benefits-grid {
   display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefit-card {

	    background: white;
        padding: 2.5rem;
  border-radius     :      15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
				 transition: all 0.3s ease;
	 text-align: center;
     }

.benefit-card:hover

{
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
	margin-bottom: 1.5rem;
       height:      80px;
   display: flex;
    align-items: center;
   justify-content: center;
}

.benefit-icon img {
	    height: 60px;
                  stroke   :        #3498db;
    fill: none;
     width: 60px;


}

.benefit-card h3	{
       font-size: 1.3rem; 
   margin-bottom: 1rem; 
  color: #2c3e50; 
    font-weight: 600;
     }

.benefit-card p {
  color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.services-showcase {
    padding: 6rem 0;
  background-color: #fff;


}

.services-showcase h2 {
                    font-size: 2.5rem; 
	    margin-bottom: 3rem; 
	       color: #2c3e50; 
		text-align: center; 
	  font-weight: 700;
}

.services-layout
	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap    :2.5rem;
}

.service-item {
   background: #f9f9f9;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateY(-5px); 
	
}

.service-item img {
        display: block;
    object-fit: cover;
  width    :   100%;
   height: 250px;
}

.service-item h3 {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
	font-size: 1.3rem;
   font-weight  :    600;
    color: #2c3e50; 
	
}

.service-item p {
    padding:     0.5rem 1.5rem 1.5rem 1.5rem;
          color: #666;
   font-size: 1rem;
  line-height: 1.6;
}

.conferences-section {
   padding: 6rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.conferences-section h2 {
   color: #2c3e50;
  margin-bottom: 3rem;
   font-size :  2.5rem;
       font-weight: 700;
}

.conference-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
 align-items: center;
}

.conference-image {
  border-radius    :   15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
	}

.conference-image img {
         width  :        100%;

     height: auto;

	 display: block;
}

.conference-details p

{
   font-size: 1.1rem; 
	   color: #555; 
	   margin-bottom: 1.5rem; 
	   line-height: 1.8;
}

.conference-list {
   list-style: none; 
  margin-top: 2rem;
}

.conference-list li {
   font-size: 1.05rem;
   position: relative;
  padding: 0.8rem 0;
	 padding-left: 1.5rem;
  color     :        #555;
}

.conference-list li::before {
  content: '▸';
   position: absolute;
    left: 0;
   color: #3498db;
    font-weight:bold;
}

.results-section {
   padding: 6rem 0;
	 background-color: #fff;
}

.results-section h2
	{
    font-size: 2.5rem; 
     margin-bottom: 3rem; 
  color: #2c3e50; 
	text-align: center; 
  font-weight: 700; 

}

.results-grid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-card {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 2.5rem;
	 border-radius: 15px;
    color  : white;
  text-align: center;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
  transition: all 0.3s ease;}

.result-card:hover {
	  transform: scale(1.05);

     }

.result-stat {
	 font-size: 3rem;
    font-weight     :      800;
                    margin-bottom: 1rem;
}

.result-card p
	{
    font-size: 1rem;
	 line-height: 1.6;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-content {
   text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color   : white;
  margin-bottom: 1.5rem;
   font-weight     :        700;
}

.cta-content p {
   font-size: 1.2rem;
  color: #ecf0f1;
  margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-secondary {
   display: inline-block;
	background-color: #3498db;
	color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
      transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-button-secondary:hover	{
    background-color: #2980b9;
  transform: translateY(-3px);
}

.contact-section  
  {
     padding: 6rem 0;
   background-color: #fff;}

.contact-section h2{
               font-size: 2.5rem;
   margin-bottom: 3rem;
  color    :#2c3e50;
   text-align   : center;
		 font-weight: 700;
}

.contact-layout {

	   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
     }

.contact-info h3 {
    font-size     :   1.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 600;
	
}


.contact-info p {
    font-size     :        1.05rem;
  color: #555;
    margin-bottom: 1.5rem;
   line-height: 1.8;
}

.contact-info a {
    color: #3498db;
  text-decoration: none;
  font-weight: 600;
	transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2980b9;
}

.contact-form {
  background: #f9f9f9; 
    padding: 2.5rem; 
    border-radius: 15px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

}

.form-group


{
   margin-bottom: 1.5rem;
}

.form-group label {
               display: block;
   font-size: 1rem;
	color: #2c3e50;
   font-weight   : 600;
          margin-bottom :        0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	   width: 100%;
  padding: 0.8rem;
    border: 1px solid #ddd;
   border-radius: 8px;
    font-size     :1rem;
    font-family: inherit;
       transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline   :none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
   resize: vertical;
	 min-height  :        120px;
}

.submit-button 
 {
	width: 100%;
	 padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color: white;
               border: none;
    border-radius: 8px;
	 font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
  transition    : all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

  color: #ecf0f1;

   padding :        4rem 0 2rem 0;

  margin-top: 4rem;

}

.footer-container {

  max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.footer-content {
       display: grid;

	  grid-template-columns: 200px repeat(3, 1fr);

	  gap    :      3rem;

	   margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
  align-items: center;
}

.footer-logo {
    height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  font-size: 1.2rem;
    margin-bottom: 1.5rem;
  color: #fff;
    font-weight   :   600;
}

.footer-section ul {
   list-style: none;
}

.footer-section li {

    margin-bottom: 0.8rem;

}

.footer-section a {

	   color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
     }

.footer-section a:hover {
	color: #3498db;
}

.footer-section p {
   color: #bdc3c7;
  font-size: 0.95rem;
	line-height: 1.6;
    margin-bottom: 1rem; 

}

.footer-bottom{
    text-align    :   center;
	padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
    color  :  #95a5a6;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c3e50;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu.active .nav-link:hover {
        background-color: rgba(52, 152, 219, 0.2);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .content-grid,
    .conference-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefits-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .result-card {
        padding: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
 padding: 6rem 0;
    text-align: center;
  color: white;
}

.services-hero h1 {
  font-size: 3rem;
   margin-bottom    :       1rem;
   font-weight: 800;
}

.services-hero .hero-subtitle {
  font-size: 1.3rem; 
	  color: #ecf0f1; 
	   line-height     :1.6;


}

.service-detail {
  padding: 5rem 0;
    background-color: #fff;
}

.service-detail.alt-bg {


  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);


}

.service-grid {
    align-items: center;
   grid-template-columns :       1fr 1fr;
  display: grid;
     gap: 4rem;


}

.service-grid.reverse {
	direction: rtl;
} 

.service-grid.reverse > * {


  direction   :  ltr;


}

.service-image {
    border-radius    :   15px;
	overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-image img {
   width: 100%;
   height:auto;
	display: block;
    object-fit: cover;
}

.service-content h2


{
   font-size: 2.2rem;

  margin-bottom: 1.5rem;

  color: #2c3e50;

    font-weight: 700;
}

.service-content p {
   font-size: 1.1rem;
    color   :        #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-content h3 {
   font-size: 1.3rem;

	                    margin-top: 2rem;

	  margin-bottom: 1rem;

	    color :        #2c3e50;

	          font-weight: 600;
}

.service-features {
  margin-bottom: 2rem;
  list-style: none; 

}

.service-features li {

	    padding: 0.8rem 0;
    padding-left  :   1.5rem;
   color: #555;
  position    :        relative;
  font-size: 1.05rem;
     }

.service-features li::before {

  content: '✓';
      position: absolute;
      color :  #3498db;
       left: 0;
     font-weight: bold;
   	 font-size: 1.2rem;}


.service-meta {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
	padding-top: 2rem;
      border-top: 2px solid #ecf0f1;
}

.meta-item {

	  padding: 1rem;
    background: #f9f9f9;
   border-radius: 10px;
	font-size: 0.95rem;
    color: #555;
	}

.meta-item strong {
          display: block;
  color: #2c3e50;
    margin-bottom: 0.3rem;
}

.pricing-section {
   padding    :       6rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.pricing-section h2 {
    font-size: 2.5rem;
   text-align :       center;
   margin-bottom: 3rem;
   color: #2c3e50;
   font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
                    background: white;
        padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover{

	  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
   border-color: #3498db;


}

.pricing-card.featured {
  border-color :       #3498db;
     box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
     transform: scale(1.02);
}

.badge    {
               position: absolute;
      top: -12px;
           left: 20px;
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      color: white;
      padding     :        0.5rem 1.5rem;
      border-radius: 25px;
       font-size: 0.85rem;
       font-weight: 600;
}

.pricing-card h3 {


   font-size: 1.4rem;
         margin-bottom    :  1rem;
          color: #2c3e50;
	font-weight: 600;
   margin-top: 0.5rem;

}

.price {

	   font-size: 2.5rem;
   color: #3498db;
  font-weight: 800;
		 margin-bottom: 0.3rem; 

	}

.price-desc {
   color: #999;
    font-size: 0.95rem;
	margin-bottom:    1.5rem;
}

.price-features {
  list-style: none;
	   margin-bottom :   2rem;
}

.price-features li {
    padding: 0.8rem 0;
  padding-left: 1.3rem;
  color: #555;
  position: relative;
   font-size: 1rem;
	}

.price-features li::before {
  content: '•';
  position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.price-button    {

  display: block;

	 width: 100%;

    padding: 1rem;

    text-align   :   center;

   background-color: #ecf0f1;

	 color: #2c3e50;

   border : none;

  border-radius: 8px;

   font-weight: 600;

               text-decoration: none;

   transition: all 0.3s ease;

               cursor: pointer;
}

.price-button:hover {
      background-color :      #bdc3c7;
          color: #2c3e50;


}

.price-button.active {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.price-button.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}


.process-section 
 {
           padding: 6rem 0;
  background-color: #fff;
	


}

.process-section h2 {
         font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
   color: #2c3e50;
    font-weight: 700;
}

.process-steps 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap     :    2rem;
}



.step {
    text-align: center;
    padding: 2rem;
   background: #f9f9f9;
    border-radius: 15px;
    transition:  all 0.3s ease;
}

.step:hover {

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  transform: translateY(-5px);

}  

.step-number

{
  display  :       inline-block;
     width :     60px;
	height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  border-radius: 50%;
	line-height: 60px;
  text-align: center;
    font-size: 1.8rem;
    font-weight     :800;
  margin-bottom: 1rem;
}

.step:hover .step-number {
  background: white; 
	  color: #3498db;
}

.step h3 {
   font-size: 1.2rem;
                    margin-bottom: 0.8rem;
   font-weight: 600;
}

.step p {
    color: #666;
    font-size: 1rem;
       line-height: 1.6;
}

.step:hover p {
    color: white;


}

.faq-section {

	   padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);


}

.faq-section h2 {


  font-size: 2.5rem;
  text-align: center;
  margin-bottom     :3rem;
  color: #2c3e50;
  font-weight: 700;}

.faq-grid {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 2rem;
}

.faq-item {
	   background: white;
     padding     :2rem;
     border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
          transition: all 0.3s ease;

} 

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.faq-item h3 {
   font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #2c3e50;
	 font-weight: 600;
}

.faq-item p


{


   color: #666;
   font-size: 0.95rem;
			line-height: 1.7;

}

.thankyou-section {
     min-height: 70vh;
      display   :      flex;
    align-items: center;
       justify-content: center;
     background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
       padding: 4rem 2rem;
}

.thankyou-container {


    max-width: 700px;
  background   :      white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
 text-align: center;
	} 

.success-icon {
	margin-bottom: 2rem;
   	 display: flex;
      justify-content: center;
}

.success-icon img {
	stroke  :#3498db;
	animation: successPulse 0.8s ease-out;
    fill: none;
    height: 100px;
  width: 100px;
}@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 0.8rem;
  font-weight   : 800;
}

.thank-subtitle {
   font-size: 1.2rem;
   color: #3498db;
  margin-bottom  :  2rem;
  font-weight: 600;
} 

.thank-content p {
  font-size: 1rem;
   color: #555;
    margin-bottom: 1.5rem;
	line-height :1.8;

}

.next-steps {
  padding :      2rem;
   border-radius: 15px;
   background: #f9f9f9;
  text-align:  left;
                    margin    : 2rem 0;
}

.next-steps h2 {
  font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.steps-list

{
 list-style: none;
}

.steps-list li {
    padding: 0.8rem 0;
   padding-left: 1.5rem;
  color: #555;
    position  :   relative;
   font-size: 1rem;
   text-align: left;
}

.steps-list li::before {
  content: '→';
  position: absolute;
   font-weight   :       bold;
  left: 0;
   color    :#3498db; 
	
}

.contact-reminder {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 1.5rem;
  border-radius: 10px;
   color:       white;
   margin: 2rem 0;
}

.contact-reminder p {
   color: white;
    margin: 0 0 1rem 0;
}  

.phone-link {
  display: inline-block;
   font-size: 1.5rem;
   font-weight: 700;
                    color: white;
                    text-decoration: none;
   padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}  

.phone-link:hover {
     background: rgba(255,255,255,0.3);
  transform: scale(1.05);

}

.action-buttons {
					display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin-top: 2.5rem;
}

.button-primary,
.button-secondary {
  padding: 1rem 2rem;
       border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
    display: block;
  text-align: center;
}

.button-primary

{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
          color: white;
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.button-secondary {
   background-color: #ecf0f1; 
    color: #2c3e50; 
  border: 2px solid #3498db;
}

.button-secondary:hover {
   background-color: #3498db;
   color: white;
  transform: translateY(-3px);
}

.social-proof {
    padding: 6rem 0;
	   background-color: #fff;
}

.social-proof h2 
 {
	 font-size: 2.5rem;
 text-align: center;
    margin-bottom: 3rem;
  color: #2c3e50;
   font-weight: 700;
}

.testimonials-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem; 

}

.testimonial-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
    padding  :  2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	
}

.stars {


    margin-bottom: 1rem; 
   color: #f39c12; 
	letter-spacing  :      2px; 
                    font-size: 1.2rem; 
	
	}

.testimonial-text {
	               font-size: 1rem;
  color: #555;
   line-height: 1.8;
   margin-bottom: 1.5rem;
    font-style: italic;


}

.testimonial-author {
    color: #2c3e50;
    font-weight    :   600;
   font-size     :     0.95rem;
}

.benefits-reminder {
    padding :     6rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.benefits-reminder h2  
  {
  font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
  color: #2c3e50;
   font-weight: 700;
}

.benefits-list {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
     }

.benefit-item {
    display     :       grid;
   grid-template-columns: 80px 1fr;
  gap:        2rem;
	 align-items    :flex-start;
}

.benefit-number	{
   font-size: 2.5rem;
       font-weight: 800;
  color: #3498db;
    opacity: 0.2;
}

.benefit-text h3 {

  font-size: 1.2rem;
    color :    #2c3e50;
	margin-bottom: 0.5rem;
    font-weight :600;
	}

.benefit-text p {
    color: #666;
   font-size: 0.95rem;
    line-height: 1.7;

}@media (max-width: 768px) {
    .service-grid,
    .service-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-grid.reverse > * {
        direction: ltr;
    }

    .service-meta {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .next-steps {
        text-align: center;
    }

    .steps-list li {
        text-align: center;
    }

    .benefit-item {
        grid-template-columns: 1fr;
    }

    .benefit-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 0;
				 text-align: center;
   color: white;
}

.about-hero h1 
 {

	   font-size   :   3rem;
   margin-bottom: 1rem;
    font-weight: 800;}

.about-hero .hero-subtitle {
   font-size: 1.3rem;
    color: #ecf0f1;
    line-height: 1.6;
}

.about-main {

  background-color: #fff;
   padding: 5rem 0;


}

.about-grid {
	display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
	align-items: flex-start; 
	
} 

.about-text h2


{
  font-weight: 700;
	margin-bottom    :     1.5rem;
  color: #2c3e50;
	font-size   :       2.2rem;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
   margin-bottom: 1rem;
	 color: #2c3e50;
   font-weight: 600;
}

.about-text p {

	   font-size: 1.05rem;
        color: #555;
	margin-bottom: 1.5rem;
   line-height     :     1.8;

} 

.values-list,
.approach-list {
   list-style: none;
   margin-bottom: 1.5rem;
}

.values-list li,
.approach-list li {
    padding: 0.8rem 0;
  padding-left: 1.5rem;
  color: #555;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}

.values-list li::before,
.approach-list li::before {
  content: '•';
  position: absolute;
  left: 0;
	color :      #3498db;
   font-weight: bold;
    font-size: 1.2rem;
}

.about-image {

	    border-radius: 15px;
	 overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  position: sticky;
	 top: 100px;
}

.about-image img {
   width: 100%;
  height: auto;
  display    :    block;
	object-fit  :  cover;

}

.stats-section {
    padding     : 5rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2.5rem;
}

.stat {
    text-align: center;
	         padding     :   2rem;
	   background: white;
	 border-radius :   15px;
	  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	    transition     :all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 2.8rem;
       font-weight: 800;
   	 color: #3498db;
       margin-bottom: 0.5rem;
	
}

.stat-label {
   font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.team-section {
  padding: 5rem 0;
         background-color: #fff;
}

.team-section h2 {
  font-size: 2.5rem;
  text-align: center;
       margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro {
   text-align: center;

    font-size: 1.1rem;

   color: #555;

   margin-bottom: 3rem;

	max-width: 600px;

    margin-left: auto;

	margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
    padding   :   2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
   border-left: 4px solid transparent;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	border-left-color   : #3498db;
}

.member-info h3 {


    margin-bottom: 0.5rem;
    font-size: 1.3rem;
   font-weight: 600;
	color: #2c3e50;
     }

.member-role {
    color: #3498db;
               font-weight  :600;
    font-size: 0.95rem;
  margin-bottom: 1rem;
}

.member-info p {
   color: #666;
  font-size: 0.95rem;
   line-height: 1.7;
}

.philosophy-section {
                    padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
}

.philosophy-section h2 {
	   font-size: 2.5rem;
  text-align: center;
	margin-bottom: 3rem;
       color: #2c3e50;
    font-weight:    700;

}

.philosophy-content {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.philosophy-block	{
   background: white;

	  padding     : 2rem;

	  border-radius: 15px;

	  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

	  transition :     all 0.3s ease;

	        border-top: 4px solid #3498db;
	}



.philosophy-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.philosophy-block h3 {
   font-size     :     1.2rem;
  margin-bottom: 1rem;
 color: #2c3e50;
   font-weight: 600;
}

.philosophy-block p {
   color: #666;
  font-size   :  0.95rem;
  line-height:1.8;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
        top: auto;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 1.5rem;
    }

    .philosophy-block {
        padding: 1.5rem;
    }
}.policy-section

{
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  min-height: 70vh;
}

.policy-container {
  max-width: 900px;
   margin: 0 auto;
   background-color: white;
  padding: 3rem;
                    border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
   border-bottom: 3px solid #3498db;
  color: #2c3e50;
  padding-bottom    :    1rem;
	margin-bottom     :  2rem;
   font-size: 2.8rem;
   font-weight: 800;
}



.policy-container h2 {
  font-size    :        1.6rem;
  color: #2c3e50;
   margin-top: 2.5rem;
    margin-bottom  :      1.5rem;
     font-weight: 700;
   position: relative;
  padding-left: 1.5rem;
}

.policy-container h2::before {
  content: '';
   position: absolute;
  left    :  0;
   top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      border-radius: 2px;
}

.policy-container p {
    color: #555;
    margin-bottom: 1.5rem;
  line-height: 1.9;
        font-size: 1.05rem;
	text-align:       justify; 

}

.policy-container p strong {
    color: #2c3e50;
       font-weight  :        600;
     }

.policy-container p a {
    color: #3498db;
   text-decoration: none;
    transition: color 0.3s ease;
}

.policy-container p a:hover {
    color: #2980b9;

       text-decoration   :underline;
}

.policy-container ul


{


    list-style    :      none;
    margin-bottom: 1.5rem;
   padding-left: 0;

}

.policy-container li {
    padding: 0.8rem 0;
   padding-left    : 2rem;
         color: #555;
    position: relative;
   line-height     :      1.8;
}

.policy-container li::before {
  content: '✓';
  position : absolute;
   left: 0;
    color: #3498db;
   font-weight: bold;
   font-size: 1.1rem;
}

.policy-container > p:last-child {
   color: #999;
   border-top   :2px solid #ecf0f1;
  font-size: 0.95rem;
  margin-top:3rem;
    padding-top: 2rem;
  text-align     : center;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policy-container li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
}