* {


   padding:0;
   margin: 0;
   box-sizing: border-box;
}



html {
   scroll-behavior     :  smooth;
	
}

body
	{

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', sans-serif; 
    color: #2c3e50; 
    background-color: #f8f9fa; 
    line-height: 1.6; 

	}

.navbar-main {
   background-color: #ffffff;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  position: sticky;

   top: 0;

  z-index: 1000;
}

.nav-container {
	max-width: 1200px;
  margin:  0 auto;
    padding: 0 20px;
  display: flex;
 justify-content: space-between;
   align-items: center;
    height: 70px;
}

.nav-logo-section	{
   display: flex;
   align-items:  center;
}

.nav-logo 
 {

				 max-height: 74px;

  width: auto;

  filter: brightness(0) invert(0);
     }

.nav-menu {

	    list-style: none;
  gap: 40px;
  align-items: center;
	display: flex;
}

.nav-menu a {

	 text-decoration: none;
  color: #2c3e50;
      font-weight: 500;
  font-size  :    16px;
          transition: color 0.3s ease;
	position: relative; 
	} 

.nav-menu a:hover {
   color: #3498db;
}

.nav-toggle {
		 gap: 6px;
    display:  none;
  border: none;
  cursor: pointer;
    background: none;
	flex-direction :     column;
	}

.burger-line {
   width: 25px;
  height: 3px;
	background-color: #2c3e50;
	 transition: all 0.3s ease;
   border-radius: 2px;
}
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    .nav-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(15px);
    }

    .nav-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
}.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :      white;
    padding: 100px 20px;
  text-align: center;
                    min-height   : 500px;
   display: flex;
    align-items: center;
    justify-content:     center;
}

.hero-content {

    max-width: 700px;
   animation: fadeInUp 0.8s ease;
	}

.hero-content h1 {
   font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
   line-height: 1.2;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px;
				 opacity: 0.95;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cta-button, .cta-button-large {
    display: inline-block;
  padding: 14px 32px;
    background-color: #f39c12;
    color: white;
       text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
    font-size: 16px;
   transition :   all 0.3s ease;
   border: none;
  cursor: pointer;}

.cta-button:hover, .cta-button-large:hover {
	background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); 

}

.cta-button-large {


	 margin-top: 20px;
  padding: 16px 40px;
    font-size  :  18px;
     }

.services-preview {
    margin: 80px auto;
   max-width  :      1200px;
    padding: 0 20px;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {

	    font-size     :  38px;
    margin-bottom: 15px;
    color :  #2c3e50;
}

.section-header p {
       font-size: 18px;
    color: #7f8c8d;}

.services-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap  :     30px;

}

.service-card {

	   background: white;
    border-radius: 12px;
	 overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:all 0.3s ease;
   cursor: pointer;

     }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {


    width:   100%;

	    height: 250px;

	    object-fit: cover;


}

.service-card h3 {
	font-size: 22px;
  padding     :     20px 20px 10px;
  color: #2c3e50;
}

.service-card p {
    padding: 0 20px 20px;
	color: #7f8c8d;
   font-size: 15px; 

}

.strategy-section     {
  background-color     :  #ecf0f1;
   padding: 80px 20px;
   margin: 60px 0;
}  

.strategy-container {
    max-width     :      1200px;
   margin: 0 auto;
  display: grid;
       grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
}

.strategy-text h2 {
	   font-size: 36px;
    margin-bottom :        20px;
    color: #2c3e50;
	}

.strategy-text > p {
  font-size: 16px;

     color: #555;

   margin-bottom: 30px;
}

.strategy-list {
                    list-style: none;
	}

.strategy-list li {
    padding: 12px 0 12px 30px;
	 position: relative;
     color: #2c3e50;
       font-size     :        15px;
}

.strategy-list li:before {
  content: '';
  position:       absolute;
   left: 0;
  top: 50%;
  transform: translateY(-50%);
   -moz-border-radius: 50%;
	width   :     8px;
       height: 8px;
    background-color   : #667eea;
    border-radius: 50%;
}

.strategy-image {
 width: 100%;
          height: 400px;
	object-fit: cover;
	 border-radius: 12px;
}  @media (max-width: 768px) {
    .strategy-container {
        grid-template-columns: 1fr;
    }
    
    .strategy-image {
        height: 300px;
    }
}.consulting-section {
	max-width: 1200px;
  margin   :        80px auto;
    padding   :     0 20px;

}

.consulting-header {
    text-align: center;
   margin-bottom: 50px;
}

.consulting-header h2 
 {
    font-size: 38px;
    color   :#2c3e50;
 margin-bottom: 10px; 

}

.consulting-header p {
	   font-size: 18px;
    color: #7f8c8d; 

     }

.consulting-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap   :    40px;
  align-items :      center;
}

.consulting-image {
	  width: 100%;
  height: 400px;
        -moz-border-radius :      12px;
    object-fit: cover;
  border-radius: 12px;
	
	}

.consulting-details h3 {
   font-size: 26px;
  color: #2c3e50;
	margin-bottom: 15px;
}

.consulting-details p {
	color: #555;
         font-size: 15px;
        margin-bottom: 15px;
     line-height: 1.8;
}@media (max-width: 768px) {
    .consulting-content {
        grid-template-columns: 1fr;
    }
    
    .consulting-image {
        height: 300px;
    }
}.webinar-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
  margin: 60px 0; 

}

.webinar-section h2 {
        color: #2c3e50;
   margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
}

.section-intro {
    font-size: 18px;
  color: #7f8c8d;
 margin-bottom: 50px;
   text-align: center;
}

.webinar-grid
{


       max-width     :   1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
     }

.webinar-card {
    background: white;
  padding  :     30px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}  

.webinar-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);


}

.webinar-title {
   font-size: 20px;
    font-weight: 600;
  color: #667eea;
   margin-bottom    :      15px;
}

.webinar-card p {
	color: #555;
    font-size: 15px;
   margin-bottom: 20px;
    line-height     :  1.7;}

.webinar-meta  
  {
   font-size     : 14px;
  color: #95a5a6;
          font-style: italic;
}

.conference-section {
  max-width: 1200px;
    margin: 80px auto;
 padding  : 0 20px;
}

.conference-wrapper h2 {
	  font-size :38px;
    text-align: center;
  color   :        #2c3e50;
       margin-bottom: 15px;


}  

.conference-wrapper > p {
   	text-align: center;
  font-size: 18px;
   color: #7f8c8d;
    margin-bottom: 50px;
	}

.conference-details {
  display: grid;
          grid-template-columns: 1fr 1fr;
       gap: 40px;
}

.conference-info h3, .conference-benefits h3 {
  margin-bottom: 15px;
	color  :#2c3e50;
   font-size: 24px;
}

.conference-info p		{
   color: #555;
    font-size: 15px;
    line-height    :     1.8;
}  

.conference-benefits ul {


    list-style: none;
     }

.conference-benefits li {
   padding: 10px 0 10px 25px;
  position: relative;
    color: #555;
   font-size: 15px;
}

.conference-benefits li:before {
  content: '→';
	 position: absolute;
  left: 0;
    color: #f39c12;
  font-weight: bold;
}@media (max-width: 768px) {
    .conference-details {
        grid-template-columns: 1fr;
    }
}.coach-section {
   background-color: #2c3e50;
   color: white;
   padding: 80px 20px;
  margin: 60px 0; 

}

.coach-section h2 {
    font-size: 38px;
  text-align: center;
    margin-bottom: 15px;
}

.coach-section .section-intro {
	color: #ecf0f1;
}  

.coaches-container {
   max-width: 1200px;
      margin     :     0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;

}

.coach-profile {
  background: rgba(255, 255, 255, 0.05);
	padding: 30px;
    border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
   text-align: center;
       transition: all 0.3s ease;
}

.coach-profile:hover {
  background: rgba(255, 255, 255, 0.1); 
	  transform: translateY(-5px);
}

.coach-placeholder


{
    width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         border-radius: 50%;
    display    :        flex;
    align-items: center;
          justify-content   :     center;
	margin: 0 auto 15px;
          font-weight: 600;
} 

.coach-profile h3 {
	font-size: 20px;

  margin-bottom    :        10px;
}

.coach-profile p   {
    font-size: 14px;
   color   :  #bdc3c7;
    line-height: 1.7;}

.cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :  white;
    padding: 80px 20px;
    text-align: center;
	margin: 60px 0;
}

.cta-final h2 {
  font-size    :  38px;
     margin-bottom: 15px;
}

.cta-final p {
   font-size: 18px;
 margin-bottom:       30px;
   opacity     :  0.95;
}

.contact-section {
	margin: 80px auto;
  max-width: 700px;
  padding: 0 20px;
}

.contact-section h2 {
   font-size: 36px; 
	    text-align: center; 
	   color: #2c3e50; 
		margin-bottom: 40px;
}

.contact-form {
   background   :        white;
	padding     :        40px;
    border-radius:     12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
      margin-bottom: 25px;
}



.form-group label {
    display: block;
   	margin-bottom  :  8px;
     font-size:     15px;
       color: #2c3e50;
       font-weight: 500;

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
	padding: 12px 15px;
   border: 2px solid #ecf0f1;
  border-radius: 6px;
     font-family : inherit;
  font-size: 15px;
        transition: border-color 0.3s ease;
  color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea  {
	resize     :       vertical;
   min-height: 120px; 
	
}

.form-submit {

   width: 100%;

  padding     :    14px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    border: none;

               border-radius: 6px;

    font-weight:        600;

                    font-size: 16px;

      cursor   :    pointer;

  transition: all 0.3s ease;
	}  

.form-submit:hover {
  transform: translateY(-2px);

	  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.main-footer 
 {
    background-color  :      #2c3e50;
     color: white;
   padding: 60px 20px 20px;
   margin-top: 80px;
}

.footer-container	{
   max-width: 1200px;
   margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 40px;
  margin-bottom: 30px;
}

.footer-logo-section   {


   display: flex;
  align-items: flex-start;

}

.footer-logo {
          max-height: 96px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-address p, .footer-contact p {
         font-size: 15px; 
   margin-bottom: 5px; 
    opacity   :     0.9;

}

.footer-links ul {
   list-style: none; 
	
}

.footer-links li {
		 margin-bottom: 10px;
     }

.footer-links a {
   color: #ecf0f1;
  text-decoration: none;
    font-size: 15px;
               transition     :        color 0.3s ease;
}

.footer-links a:hover {
   color: #3498db;
}

.footer-bottom 
 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 20px;
   text-align     :       center;
	font-size  :        14px;
	 opacity: 0.8;
}

.cookie-alert {
  position: fixed;
    bottom: 0;
  left: 0;
  right:     0;
    background-color: #2c3e50;
    color: white;
   padding     :       20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
   z-index: 999;
}

.cookie-content {
         max-width  :       1200px;

	 margin: 0 auto;

  display : flex;

   justify-content: space-between;

   align-items: center;

       gap: 20px;
}

.cookie-content h3 {
   font-size: 18px;
	 margin-bottom: 5px;
}

.cookie-content p {
    font-size: 14px;
               opacity: 0.9;
    margin-bottom: 0;
	
}


.cookie-buttons {
      display    :   flex;
   white-space: nowrap;
    gap: 10px;


}

.cookie-accept, .cookie-reject, .cookie-settings {
    padding: 10px 20px;
   border: none;
			border-radius: 6px;
	cursor: pointer;
    font-size: 14px;
  font-weight: 500;
          transition: all 0.3s ease;
}

.cookie-accept {
	background-color: #27ae60;
  color: white;
}

.cookie-accept:hover
	{
            background-color: #229954;}

.cookie-reject {
   background-color    :       #95a5a6;
	color: white; 

}

.cookie-reject:hover {
   background-color: #7f8c8d;

}

.cookie-settings 
 {
  background-color: transparent;
    color: #ecf0f1;
   border: 1px solid #ecf0f1;
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings-modal {
  position: fixed;

	    top: 0;

	      left:0;

	  right: 0;

	          bottom: 0;

	  background-color: rgba(0, 0, 0, 0.7);

	    display: flex;

	    align-items: center;

	   justify-content: center;

	   z-index: 10000;
}

.settings-content		{
  background: white;
  padding: 40px;
	border-radius     :12px;
    max-width: 500px;
   width: 90%;
    max-height: 90vh;
   overflow-y: auto;
}

.settings-content h2 {
  font-size: 24px; 
    color: #2c3e50; 
   margin-bottom: 30px;
}

.settings-group {
  margin-bottom: 25px;
}

.settings-group label  
  {
	   display: flex;

	  align-items: center;

	    gap: 10px;

	    cursor: pointer;

	  color: #2c3e50;

	  font-weight: 500;

	   margin-bottom: 8px;

}

.settings-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
     cursor: pointer;

}

.settings-group p {
   color: #7f8c8d;
    margin: 0;
   font-size: 13px;
}

.settings-save {
  width: 100%;
		 padding: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  : white;
  border :none;
     border-radius: 6px;
        font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
	
}

.settings-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        padding: 25px;
    }
}.services-hero {
     background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: white;
   padding: 80px 20px;
    text-align: center;
                    min-height: 400px;
   display: flex;
  align-items: center;
    justify-content: center;
     }

.services-hero-content h1{
	   font-size: 44px;
   margin-bottom: 20px;
   font-weight: 700;}

.services-hero-content p {


   font-size: 18px;
  opacity: 0.95;
    max-width: 600px;
                    margin: 0 auto;


}

.services-overview {

	   max-width: 1200px;
  margin: 80px auto;
	padding: 0 20px;
	}

.overview-container {
			text-align: center;
}

.overview-intro h2 {
   font-size: 36px;
    color: #2c3e50;
   margin-bottom: 20px;
	
}

.overview-intro p {
    font-size: 16px;
	color: #555;
	max-width: 700px;
    margin:     0 auto;
  line-height: 1.8;
}

.services-detailed {
                    max-width: 1200px;
   margin: 80px auto;
	 padding: 0 20px;
}

.service-detail-card {
    display  : grid;
  grid-template-columns: 1fr 1fr;
  gap  :       50px;
  align-items: center;
    margin-bottom: 80px;
   padding: 40px;
   background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction:    ltr; 
	
}

.service-detail-content h2

{

  font-size   :       28px;
	 color: #2c3e50;
  margin-bottom: 20px;
     } 

.service-detail-content > p {
   line-height: 1.8;
    margin-bottom  :        25px;
   color: #555;
  font-size     :       16px;
}

.service-features {
       margin-bottom: 30px;
			list-style: none;
}

.service-features li	{
  padding: 12px 0 12px 30px;
   position: relative;
    color: #555;
    font-size   :  15px;
}

.service-features li:before {
  content: '';
    position: absolute;
    -moz-border-radius: 50%;
	 left: 0;
  -webkit-transform: translateY(-50%);
    -webkit-border-radius: 50%;
   top: 50%;
  transform: translateY(-50%);
    width: 6px;
    height: 6px;
		 background-color: #667eea;
 border-radius: 50%;
}

.service-pricing {
    padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius    :        8px;
   display:     flex;
   justify-content: space-between;
  align-items: center;
}

.price-label {

	  font-weight: 600;
        color: #2c3e50;
	}

.price-value {
    font-size: 24px;
    font-weight: 700;
  color   :        #667eea;
}

.service-detail-image {
    width: 100%;
   height: 350px;
      object-fit: cover;
    border-radius: 10px;

}@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .service-detail-image {
        height: 250px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }
}.webinar-schedule {
  background-color: #f8f9fa;
    margin: 60px 0;
   padding: 80px 20px;

}

.schedule-header {
  max-width  :1200px;
    margin     :    0 auto 50px;
       text-align   :        center;
}

.schedule-header h2 {
    font-size: 36px;
  color: #2c3e50;
   margin-bottom    :     15px;
}

.schedule-header p {
    font-size: 16px;
   color: #7f8c8d;
}

.schedule-grid {
   max-width: 1200px;
  margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	 gap : 30px;
}


.schedule-item {
	 background: white;
   padding: 30px;
	 border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #667eea;
}

.schedule-day {
	 font-weight: 700;
               color: #667eea;
  font-size: 14px;
			text-transform    :   uppercase;
    margin-bottom: 8px;


}

.schedule-time {
	   color: #e74c3c;
					font-weight: 600;
    margin-bottom: 15px;
  display: block;

}

.schedule-item h3 {
     font-size: 18px;
        color :     #2c3e50;
  margin-bottom: 10px;
}

.schedule-item p {
   color     : #7f8c8d;
  font-size    :    14px;
    line-height: 1.6;
}

.packages-comparison {
  max-width :      1200px;
	margin: 80px auto;
   padding: 0 20px;
}

.packages-comparison h2     {
    font-size: 36px;
		text-align:center;
    color: #2c3e50;
   margin-bottom  :      50px;
}  

.comparison-table {
	    background: white;
 border-radius :        10px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	
	}

.table-header {
      display :     grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.table-header .table-cell {
    padding     :        20px;
  text-align:     center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header .table-cell:first-child {
   text-align: left;
}

.table-header .table-cell:last-child  
  {

	   border-right: none;
}

.table-row {

	    display: grid;
   grid-template-columns   :       1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid #ecf0f1;}

.table-row:last-child {
		border-bottom     :  none;}

.table-cell {

	   padding: 20px;
  text-align: center;
    color: #555;
   font-size: 15px;
     }  

.table-cell:first-child {

	   color: #2c3e50;
  text-align: left;
    font-weight: 500;}

.table-row:nth-child(even) {
    background-color :      #f8f9fa;

}@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-header .table-cell,
    .table-cell {
        border-right: none;
        padding: 15px;
        text-align: left;
    }

    .table-header {
        display: none;
    }

    .table-row {
        border: 1px solid #ecf0f1;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
    }

    .table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        color: #2c3e50;
        display: block;
        margin-bottom: 5px;
    }
}.faq-section {

   max-width     :     1000px;
  margin     :      80px auto;
   padding: 0 20px;
	}

.faq-section h2 {
    margin-bottom: 50px;
   color: #2c3e50;
    font-size: 36px;
  text-align: center;
}

.faq-container {
  display: flex;
    flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	cursor: pointer;
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
   font-size: 18px;
      color: #2c3e50;
      margin: 0;
  font-weight   :600;
          display: flex;
    justify-content: space-between;
			align-items: center;
}

.faq-question:after {
  content: '+';
  font-size: 24px;
      color: #667eea;
}

.faq-item.active .faq-question:after {
  content: '−';
	
}

.faq-answer  {
   color:        #555;
  font-size: 15px;
    line-height: 1.8;
	margin :  15px 0 0 0;
   max-height: 0;
                    overflow: hidden;
  transition :  all 0.3s ease;
}

.faq-item.active .faq-answer {


   max-height: 500px;}

.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 80px 20px;
   margin: 60px 0;
}

.testimonials-section h2     {
	 margin-bottom: 50px;
  font-size: 36px;
    text-align: center;
    color: #2c3e50;
}

.testimonials-grid	{
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 30px;
}

.testimonial-card {
		background   :      white;
      padding: 30px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top     :  4px solid #667eea;
     }

.testimonial-text {
        color: #555;
    font-size: 15px;
   line-height: 1.8;
	 margin-bottom: 20px;
   font-style: italic;
}

.testimonial-author {
   font-weight     :   600;
   color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial-business {
	    font-size: 13px;
	color: #7f8c8d;
	}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 80px 20px;
   text-align: center;
   margin: 60px 0;
}

.cta-services h2 {
    font-size: 36px;
   margin-bottom: 15px; 
	
}

.cta-services p {
  font-size: 18px;
  margin-bottom: 30px;
   opacity: 0.95;
}

.cta-button-services {
    display: inline-block;
   padding:   14px 32px;
          background-color: #f39c12;
  color: white;
   text-decoration: none;
   border-radius   :  6px;
     font-weight: 600;
  transition   :all 0.3s ease;
} 

.cta-button-services:hover {
    background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);

}

.thankyou-section {
   min-height    :  100vh;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
     }

.thankyou-container {
  max-width: 700px;
	 margin: 0 auto;
  text-align: center;
}

.success-icon-wrapper {
   margin-bottom: 30px;
}

.success-checkmark 
 {
   width: 100px;
    height   :    100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius   :  50%;
	display: flex;
   align-items: center;
  justify-content: center;
				 font-size  :  50px;
   color: white;
	animation: scaleIn 0.5s ease; 
}

.success-checkmark:after {
     content: '✓';}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-section h1 {
       font-size: 44px;
  color: #2c3e50;
    margin-bottom  :     10px;

	}

.thankyou-subtitle {
    font-size: 18px;
    color: #7f8c8d;
          margin-bottom: 40px;
}

.thankyou-content {
  background: white;
    padding: 40px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   text-align: left;
   margin-bottom: 40px;
}

.thankyou-content > p {

	    color: #555;
   font-size: 16px;
  line-height  :      1.8;
   margin-bottom: 30px;
     }

.next-steps h2
{
    font-size: 24px;
    color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}  

.steps-list {
   list-style: none;
   margin-bottom :  40px;
}

.steps-list li {
       display: flex;
    gap: 20px;
 margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;


}  

.steps-list li:last-child {
    border-bottom    :none;


}

.step-number {
    display: flex;
   align-items: center;
   justify-content: center;
   width :     40px;
    height    : 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
       border-radius: 50%;
   font-weight   :     700;
    flex-shrink: 0;
}

.steps-list h3 {
	 font-size: 16px;

	 color: #2c3e50;

          margin: 0 0 5px 0;
}

.steps-list p {
    color: #7f8c8d;
   font-size: 14px;
		margin: 0;
}

.contact-info-box {
	background: #f8f9fa;
   padding: 25px;
        border-radius    :      10px;
					margin-bottom: 30px;
         text-align: center;
}

.contact-info-box h2 {


   font-size: 20px; 
		color    :      #2c3e50; 
	    margin-bottom: 15px;


}

.contact-info-box p {
    color: #555;

	font-size: 15px;

   margin: 8px 0;


}

.additional-resources  {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0e8f8 100%);
  padding: 25px;
  border-radius: 10px;
	 margin-bottom     :     30px;
}

.additional-resources h2 {
    color: #2c3e50;
   text-align: center;
   margin-bottom: 15px;
	font-size: 20px;
}

.additional-resources > p {

	   color: #555;
   font-size: 15px;
  margin-bottom: 15px;
    text-align :     center;
	}

.resources-list {
  list-style:   none;}

.resources-list li

{


    margin-bottom  :  10px;
}  

.resources-list a {
   color: #667eea;
  text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
}

.resources-list a:hover {
	color: #764ba2;
}

.social-notice {
  color: #7f8c8d;
    font-size: 14px;
   font-style   : italic;
}

.action-buttons {
	  display: flex;
    gap: 15px;
  justify-content: center;
    flex-wrap:  wrap;
     }

.btn-primary, .btn-secondary {


   -webkit-transition: all 0.3s ease;
    display: inline-block;
    padding   :     14px 32px;
         border-radius :   6px;
  text-decoration: none;
   font-weight: 600;
	 transition: all 0.3s ease;}

.btn-primary	{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :        white;
	
	}

.btn-primary:hover     {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary

{
	background: white;
  border: 2px solid #667eea;
	color: #667eea;
}

.btn-secondary:hover {
   background: #667eea;
  color: white;
}

.why-choose-section {
       max-width: 1200px;
   margin     : 80px auto;
  padding: 0 20px;
     }

.why-choose-section h2 
 {

    color: #2c3e50;
   text-align: center;
   margin-bottom: 50px;
    font-size: 36px;


}

.choose-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
           gap: 30px;

}

.choose-card {
   background: white;
		 padding: 30px;
	   border-radius: 10px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	    text-align: center;
	   transition: all 0.3s ease;
}

.choose-card:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.choose-icon {
  font-size: 40px;
    color     :        #27ae60;
         margin-bottom: 15px;
}

.choose-card h3 {


   font-size: 18px; 
     color   : #2c3e50; 
                    margin-bottom   :      12px;}

.choose-card p {
    color: #7f8c8d;
  font-size  : 14px;
   line-height: 1.6; 

}

.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
    max-width: 900px;
   margin: 0 auto;
  text-align     :        left;
  background:      white;
  padding: 50px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
    font-size   :  3rem;
    color: #2c3e50;
  margin-bottom: 40px;
                    font-weight: 700;
  line-height     :        1.2;
    border-bottom: 3px solid #667eea;
    padding-bottom: 20px;
}

.policyContainer h2 {
   font-size: 1.8rem;
  color: #2c3e50;
    margin-top: 35px;
        margin-bottom: 15px;
  font-weight: 600;
}

.policyContainer p {
                    color: #555;
   margin-bottom: 1.2rem;
   line-height: 1.8;
    font-size: 1rem;
}

.policyContainer h2:first-of-type {
  margin-top: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 20px 15px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}