* {

   margin  :    0;
   padding: 0;
   box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body     {

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
   color: #2c3e50;
  background: #f8f9fa;

}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   position: sticky;
    top: 0;
		 z-index  : 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	
}

.nav-container


{
   max-width: 1200px;
     margin: 0 auto;
    padding: 1rem 2rem;
     display: flex;
   justify-content: space-between;
   align-items  :        center;
}

.logo-section img		{
   height   :  45px;
    object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-menu {
	   display: flex; 
	    list-style :   none; 
	  gap: 2rem; 
		align-items: center;
	}
	/* Build system output */


.nav-menu a {
	color: white;
    text-decoration:none;
	font-weight: 500;
    transition: all 0.3s ease;
   padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.cta-link {


  background: rgba(255,255,255,0.3) !important;
    padding: 0.7rem 1.5rem !important;


	}

.cta-link:hover {
  background: rgba(255,255,255,0.5) !important;
}

.burger-menu {
  display: none;
        flex-direction:        column;
    gap: 6px;
   background: none;
   border: none;
   cursor: pointer;
  padding: 0;
}

.burger-line {
 width: 25px;
  height: 3px;
    background     :        white;
               border-radius: 2px;
   transition   :all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
     transform: rotate(45deg) translate(10px, 10px);
	}

.burger-menu.active .burger-line:nth-child(2) {
                    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
	}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
    }
}.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 padding: 4rem 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
       align-items: center;
  min-height: 500px;
}

.hero-section h1 {
   font-size: 3.5rem; 
	  line-height: 1.2; 
	   margin-bottom: 1.5rem; 
	  font-weight: 700;
}

.hero-subtitle {
   font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
   line-height:1.8;
}

.hero-image img {
   width: 100%;
	 height: auto;
                    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.btn-primary {
   display:  inline-block;
                    background: #f39c12;
	color: white;
  padding: 1rem 2.5rem;
          border-radius: 8px;
 text-decoration: none;
    font-weight: 600;
   transition :  all 0.3s ease;
    border: none;
    cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.features-intro {
  padding: 4rem 2rem;
    background: white;
}

.features-container {
					margin: 0 auto;
   max-width: 1200px;
}

.features-intro h2  {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
        color: #2c3e50;
}

.features-grid {
    display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap  :    2rem;
}

.feature-card {
 background: #f8f9fa;
    padding: 2rem;
   border-radius: 12px;
    text-align: center;
	 transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
}

.feature-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  background :    white;
     }

.feature-icon {
               width: 60px;
    height: 60px;
   margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius   :    50%;
	display: flex;
   align-items: center;
   justify-content: center;
}

.feature-icon img {
   width: 32px;
    height: 32px;
  filter: brightness(0) invert(1);
}

.feature-card h3

{
					margin-bottom: 1rem;
       color: #2c3e50;
  font-size: 1.5rem;
}

.feature-card p


{

	color: #7f8c8d;
    line-height: 1.8;
}

.services-preview {
   background: white;
   padding   :      4rem 2rem;
       max-width    :      1200px;
    margin: 0 auto;
}

.services-preview h2 {
  text-align: center;
   font-size   :        2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
    display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
}  

.service-item {

	background: #f8f9fa;
    border-radius: 12px;
	overflow: hidden;
    transition: all 0.3s ease;
	border    :    1px solid #e0e0e0;
}

.service-item img {
  width: 100%;
  height: 200px;
      object-fit: cover;
}

.service-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
  font-size: 1.3rem;
}

.service-item p
	{


    padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
	line-height: 1.7;


}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.services-cta {
   text-align: center;
    margin-top: 2rem; 
	
}


.btn-secondary {


   display: inline-block;
   background: white;
	 color: #667eea;
	 padding: 1rem 2.5rem;
	 border-radius: 8px;
   text-decoration: none;
  font-weight: 600;
          border: 2px solid #667eea;
  transition: all 0.3s ease; 
}

.btn-secondary:hover {
	background: #667eea;
  color: white;
  transform: translateY(-3px);
}

.conference-section
{
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color :      white;
   padding: 4rem 2rem;
     display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 3rem;
  align-items: center;
}

.conference-content h2 {
   font-size: 2.5rem;
  margin-bottom  :   1.5rem;
}

.conference-content > p {
  font-size     :      1.1rem;
	margin-bottom: 2rem;
   line-height   :    1.8;
}  

.conference-features {
    list-style: none;
  margin-bottom :   2rem;
}

.conference-features li {
	  padding: 0.8rem 0;
   position :     relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.conference-features li:before {
  content: "✓"; 
   position: absolute; 
  left: 0; 
  font-weight     : bold; 
   color: #f39c12; 
  font-size: 1.3rem;
}

.conference-image img {
               width  :       100%;
     border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);


}
@media (max-width: 768px) {
    .conference-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .conference-content h2 {
        font-size: 1.8rem;
    }
}.coaching-section 
 {
  background: white;
  padding: 4rem 2rem;
    max-width     :        1200px;
    margin: 0 auto; 

}

.coaching-section h2 {
   text-align: center;
    font-size: 2.5rem;
  margin-bottom :    3rem;
   color: #2c3e50;
}

.coaching-cards  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.coaching-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
               padding: 2.5rem;
   border-radius: 12px;
  border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.coaching-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.coaching-number {
    font-size: 3rem;
 font-weight: 700;
   color: #667eea;
  margin-bottom: 1rem;
	opacity: 0.3; 

}

.coaching-card h3 {
    font-size: 1.5rem;
  color    :        #2c3e50;
  margin-bottom: 1rem;
}

.coaching-card p {
	color: #7f8c8d;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
  margin: 3rem 0;
}

.cta-box		{
  max-width     :        800px;
    margin: 0 auto;
  text-align  :        center;
   color: white;
}

.cta-box h2		{
    font-size: 2.5rem; 
   margin-bottom: 1rem;
}

.cta-box p {
     font-size: 1.2rem;
  margin-bottom    :   2rem;
  line-height: 1.8;
}

.btn-large {
  display    :   inline-block;
    background: #f39c12;
    color: white;
    -webkit-border-radius: 8px;
   padding: 1.2rem 3rem;
    border-radius:   8px;
    -moz-border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
	font-size     :       1.1rem;
    transition: all 0.3s ease;
    border: none;
   cursor: pointer;
}

.btn-large:hover     {
  background  : #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
	
}

.contact-section {
   background: white;
    padding: 4rem 2rem;
                    max-width: 700px;
   margin: 0 auto; 

}

.contact-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius   :      12px;
   border: 1px solid #e0e0e0;
}

.contact-section h2 {
   color: #2c3e50;
   text-align: center;
  margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.contact-subtitle {
  text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
   font-size: 1.1rem;
}

.contact-form {
    gap: 1.5rem;
  display    :    flex;
   flex-direction: column;
}

.form-group {
	display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
   border: 1px solid #d0d0d0;
               border-radius: 8px;
    font-size: 1rem;
       font-family: inherit;
    transition: all 0.3s ease;
  background: white;
}

.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); 
  background: white; 

}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color:   white; 
   padding: 1rem; 
  border: none; 
  border-radius: 8px; 
  font-size: 1rem; 
    font-weight: 600; 
   cursor    : pointer; 
  transition: all 0.3s ease; 
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);

	  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer {
    background: #2c3e50;
    color:   white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
}

.footer-section h3 {
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li  
  {
   margin-bottom   : 0.8rem;
}

.footer-section a {
  -webkit-transition: color 0.3s ease;
	color: #bdc3c7;
      text-decoration: none;
  transition: color 0.3s ease;
	-o-transition    :    color 0.3s ease;
}

.footer-section a:hover {
   color: #667eea;
}

.footer-logo img {

					height: 50px;
    object-fit: contain;
  filter: brightness(0) invert(1);}

.footer-address {

    line-height: 1.8;
	color: #bdc3c7;
     }

.footer-phone {
    color: #bdc3c7;
      margin-top     :  1rem;
}

.footer-bottom {
  text-align: center; 
	    padding-top: 2rem; 
	    border-top: 1px solid #34495e; 
	  color: #95a5a6;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .features-intro h2,
    .services-preview h2,
    .coaching-section h2 {
        font-size: 1.8rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
 padding:5rem 2rem;
   text-align: center;
  min-height: 350px;
	 display: flex;
  align-items: center;
   justify-content: center;
}

.services-hero-content h1 {
       font-size: 3rem;
  margin-bottom: 1rem;
       font-weight: 700;

}

.services-hero-content p {
    font-size: 1.3rem;
   opacity:     0.95;
    max-width  :     700px;
   margin:     0 auto;
    line-height: 1.8;
}

.services-detailed {
	 background  :white;
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
  margin   :    0 auto;
}

.service-detail-item {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items    :  center;
   margin-bottom: 5rem;
    padding: 2rem;
    background: #f8f9fa;
   border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.service-detail-item.reverse {
        grid-template-columns: 1fr 1fr;
}

.service-detail-item.reverse .service-detail-image {

	    order: 2;
     }

.service-detail-item.reverse .service-detail-content {
  order: 1;
}

.service-detail-image img {
  width: 100%;
    height: auto;
          border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.service-detail-item:hover .service-detail-image img {
  transform: scale(1.05);
}


.service-detail-content h2 {

   font-size: 2rem;
   color: #2c3e50;
     margin-bottom: 1rem;
     }

.service-detail-content > p {
    font-size     :   1.1rem;
         color: #7f8c8d;
  line-height     :     1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
  padding: 0.8rem 0;
    padding-left: 2rem;
   position: relative;
    color: #2c3e50;
	 font-size: 1rem;
}

.service-features li:before {
  content: "→";
 position: absolute;
               left: 0;
	color: #667eea;
	font-weight: bold;
   font-size: 1.2rem; 
	
}

.btn-service {
       display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	padding: 0.9rem 2rem;
   border-radius: 8px;
	text-decoration: none;
   font-weight: 600;
   transition  :     all 0.3s ease;
   border: none;
	cursor :     pointer;
      font-size: 0.95rem;
}

.btn-service:hover		{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }

    .service-detail-item.reverse .service-detail-image,
    .service-detail-item.reverse .service-detail-content {
        order: unset;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }
}.pricing-section {

	    background: white;
    padding: 4rem 2rem;
  max-width: 1200px;
    margin: 3rem auto;
}

.pricing-section h2 {


   text-align: center;
  font-size: 2.5rem;
  margin-bottom   :  3rem;
          color  :#2c3e50;
     }

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}


.pricing-card {
	background: #f8f9fa;
   border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
        text-align: center;
	transition: all 0.3s ease;
   position: relative;
}

.pricing-card.featured	{
  border-color: #667eea;
   background  :      white;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position  :  absolute;
  top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color  :      white;
  padding: 0.5rem 1.5rem;
    border-radius: 20px;
               font-size:   0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.5rem; 
	   color: #2c3e50; 
	    margin-bottom: 1rem;
}

.price {

	   font-size: 2.5rem;
   font-weight: 700;
    color: #667eea;
   margin-bottom: 0.5rem;
     }

.price-period {
    color: #7f8c8d;
  margin-bottom     :  2rem;
   font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li  
  {

   padding: 0.8rem 0;
  padding-left: 1.5rem;
	position: relative;
  color: #2c3e50;
	font-size: 0.95rem;

}

.pricing-features li:before {
  content: "✓";
    position: absolute;
         left: 0;
	 color: #2ecc71;
  font-weight: bold;
}

.btn-pricing {
   display: inline-block;
    background: white;
  color: #667eea;
  padding: 0.9rem 2rem;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    cursor   :       pointer;
	font-size: 0.95rem;
}

.btn-pricing:hover {
  background: #667eea;
   color:   white;
  transform: translateY(-2px);
} 

.btn-pricing.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;


}

.btn-pricing.featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);

}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        gap: 1.5rem;
    }
}.faq-section {
	 background: #f8f9fa;
    padding    :      4rem 2rem;
}

.faq-container {
  max-width: 1200px;
  margin:       0 auto; 
	
}

.faq-section h2 {
  text-align: center;

    font-size: 2.5rem;

   margin-bottom: 3rem;

    color: #2c3e50;
}

.faq-grid
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item  {
	  background: white;
  padding    :2rem;
      border-radius: 12px;
    border-left: 4px solid #667eea;
   -moz-transition: all 0.3s ease;
   transition: all 0.3s ease;
	}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.faq-item h3 {
   font-size: 1.2rem;
  color: #2c3e50;
    margin-bottom: 0.8rem;

}

.faq-item p {
   color     :     #7f8c8d;
  line-height: 1.8;
   font-size: 0.95rem;
}

.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 4rem 2rem;
}  

.cta-services-box {
    max-width: 800px;
     margin: 0 auto;
      text-align: center;
       color: white;


}

.cta-services-box h2 {
     font-size   :     2.5rem;
  margin-bottom    :1rem;
}

.cta-services-box p {
   font-size: 1.2rem;
	  margin-bottom: 2rem;
		line-height: 1.8;

}

.thankyou-section {
	background: white;
    justify-content: center;
   min-height: 100vh;
  display: flex;
   align-items: center;
	 padding: 5rem 2rem;
}


.thankyou-container {
    text-align: center;
   max-width: 700px;
    animation    :       slideInUp 0.6s ease;
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon		{
	    margin-bottom: 2rem;
   display: flex;
    justify-content    :      center;}

.success-icon img {
   width: 80px;
    height: 80px;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
	stroke: #2ecc71;
}

.thankyou-section h1 {

	    font-size: 2.5rem;
	    color: #2c3e50;
		margin-bottom: 1rem;
	  font-weight: 700;
     }

.thankyou-subtitle {
    font-size: 1.2rem;
   line-height: 1.8;
  margin-bottom: 3rem;
    color: #7f8c8d;
}

.thankyou-info {
	background    :       #f8f9fa;
	 padding: 2rem;
  border-radius    :12px;
   margin-bottom: 2rem;
   border: 2px solid #e0e0e0;
}

.info-block h3


{
  font-size     :    1.4rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.info-list {
	list-style: none;
    text-align: left;
}

.info-list li {

	   padding  :     0.8rem 0;
    padding-left: 2rem;
   position: relative;
  color: #7f8c8d;
    line-height    : 1.7;
}

.info-list li:before  
  {
	  content: "•";
    position: absolute;
    left   :        0;
   color:       #667eea;
    font-size: 1.5rem;
    font-weight: bold;
	}

.next-steps {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
   padding: 2rem;
   border-radius: 12px;
    margin-bottom: 2rem;
}

.next-steps h3 {
   font-size :   1.3rem;
  color   :       #2c3e50;
    margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

       gap  :       1.5rem;
}

.tip-card {
   background: white;
  border: 1px solid #e0e0e0;
   padding: 1.5rem;
   border-radius: 8px;
}  

.tip-number {
   font-size    :        2rem;

		font-weight: 700;

	  color: #667eea;

	   margin-bottom: 0.5rem;
}

.tip-card p	{
	 font-size: 0.95rem;
	color: #7f8c8d;
                    line-height: 1.6;
} 

.action-buttons {
   display: flex;
          justify-content     :  center;
   flex-wrap: wrap;
  gap     : 1rem;
    margin-top: 2rem;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {

  padding: 1rem 2rem;
    font-size: 1rem;

}

.faq-thankyou {
    background: #f8f9fa;
    padding: 3rem 2rem;
    max-width: 900px;
  margin: 0 auto;
} 

.faq-thankyou h2 {
    text-align: center;
   font-size: 2rem;
     margin-bottom: 2rem;
   color: #2c3e50; 
	
}

.faq-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.faq-item-simple {
     background: white;

	   padding: 1.5rem;

	   border-radius     :        8px;

	  border-left: 4px solid #667eea; 

	}

.faq-item-simple h4 {
  font-size: 1.1rem;
	 color: #2c3e50;
   margin-bottom: 0.8rem;
}

.faq-item-simple p {
   color     :       #7f8c8d;
    font-size: 0.95rem;
      line-height  :       1.6;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .thankyou-section {
        padding: 2rem 1.5rem;
    }

    .thankyou-container {
        max-width: 100%;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .pricing-section h2,
    .faq-section h2,
    .cta-services-box h2 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a {
        width: 100%;
        text-align: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }
}.policySection {

    padding: 80px 2rem;
    background: #f8f9fa;
  min-height: 100vh;
}

.policyContainer {
	max-width    :  900px;
  margin: 0 auto;
    text-align   :        left;
	
}

.policyContainer h1 {
   font-size :        3rem;
	color: #2c3e50;
  margin-bottom: 2rem;
               font-weight: 700;
}

/* Debug styles */

	/* Third-party styles */

.policyContainer h2 {
   font-size   :1.8rem;
   color: #2c3e50;
    margin-top  :  2.5rem;
	margin-bottom: 1.2rem;
    font-weight     :  600;
   border-left: 4px solid #667eea;
   padding-left     :1rem;
}

.policyContainer p     {
 color: #555555;
    margin-bottom: 1.2rem;
  line-height: 1.8;
   font-size: 1rem;
}

.policyContainer strong {
    color :    #2c3e50;
  font-weight: 600;
}

.policyContainer ul {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
	/* Temporary fix */


/* Debug styles */



.policyContainer li {
  color :      #555555;
    margin-bottom: 0.8rem;
  line-height: 1.8;

}

.policyContainer h2:first-of-type {

       margin-top: 0;

}

.policyContainer h2 + p {
  margin-top   :        0.5rem;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding-left: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policyContainer ul {
        margin-left: 1rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}