*
{
    margin: 0;
    padding: 0;
                    box-sizing: border-box;
     }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color    :#333;
  background-color: #fafafa;
}

.main-nav {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 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;
	}

.nav-logo img {
  height: 64px;
                    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu 
 {
   display    :flex;
  list-style: none;
   gap: 2rem;
}

.nav-menu a {
   text-decoration: none;
    color: #fff;
	 transition: color 0.3s ease;
  padding: 0.5rem 1rem;
    font-weight: 500;
}

.nav-menu a:hover {
	color: #ffc107;
}

.hamburger {
        gap: 0.5rem;
    display: none;
	cursor: pointer;
	flex-direction: column;
  background    :      none;
    border: none;
} 

.hamburger .line     {
    width: 25px;
    height: 3px;
  background-color: #fff;
   transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

  padding: 6rem 2rem;

	text-align: center;

	min-height   :    600px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.hero-content h1 {
   font-size: 3.5rem;
    margin-bottom: 1rem;
	 font-weight   :      700;
    line-height: 1.2;
}

.hero-subtitle	{
    font-size: 1.3rem;
	 margin-bottom: 2rem;
   opacity: 0.95;
  max-width: 600px;
   margin-left: auto;
    margin-right: auto; 
	
}

.cta-button {
  display:      inline-block;
  background: #ffc107;
    color: #333;
   padding: 1rem 2.5rem;
         text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
      font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.services-overview    {
   padding: 4rem 0;
  background-color   :      #fff;
}

.services-overview h2 {

	   color: #1a1a2e;
  font-size: 2.5rem;
   margin-bottom: 0.5rem;
    text-align: center;}

.section-intro {
  text-align: center;
    font-size: 1.1rem;
  color: #666;
    margin-bottom  :      3rem;
}

.services-grid {
  display : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding    :  2rem;
	border-radius:     10px;
   transition:      all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.5rem;
		margin-bottom: 1rem;
    color: #1a1a2e;


}

.service-card p {
               color: #555; 
	      line-height: 1.7;
}

.projection-section {
   padding: 4rem 2rem;
   background-color   :    #fafafa;
}

.projection-content

{
   display: flex;

  align-items: center;

  gap: 3rem;

   max-width: 1200px;

   margin: 0 auto; 
	
}

.projection-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.projection-text p {
    color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.projection-list {
  list-style: none;
  margin-top: 1.5rem;
}

.projection-list li {
   padding     :     0.8rem 0 0.8rem 2rem;
    position: relative;
   color: #555;
}

.projection-list li:before{
  content: "▸";
  position: absolute;
   left  :        0;
    color: #667eea;
    font-weight: bold;
}

.section-image {
	 width: 100%;
   max-width: 500px;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.training-section {
  padding: 4rem 2rem;
			background-color: #fff;
}

.training-content {
  display: flex;
  align-items: center;
  gap: 3rem;
   max-width  :      1200px;
   margin    :       0 auto;
  flex-direction: row-reverse;
     }

.training-text h2 {
  font-size     :     2.2rem;
      margin-bottom: 1.5rem;
   color: #1a1a2e;


}

.training-text p {
    color   : #555;
  margin-bottom: 1rem;
   font-size: 1.05rem; 

}

.forecasting-section {
  padding: 4rem 2rem;
   background-color  :       #f9f9f9;


}

.forecasting-section h2 {
    font-size: 2.5rem;
    margin-bottom    :   0.5rem;
		 color: #1a1a2e;
  text-align: center;
}

.workshop-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-item {
	border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         transition: transform 0.3s ease;
}

.workshop-item:hover {
  transform: translateY(-8px);
}

.workshop-item img {
	   width: 100%;

    height: 200px;

  object-fit: cover;
	


}

.workshop-item h3 {

	    padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color     :       white;
    font-size: 1.2rem; 
	}

.seminar-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.seminar-wrapper h2	{


  font-size: 2.5rem;
   margin-bottom: 1rem;
   text-align: center;


}

.seminar-wrapper > p {
   text-align: center;
      font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
   max-width :  600px;
   margin-left: auto;
    margin-right: auto;
}

.seminar-highlights {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                  gap :   2rem;
     max-width: 1200px;
       margin: 0 auto;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.1);
   padding: 2rem;
 border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight-card:hover  {
  background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px);
}

.highlight-card h3 {
   color: #ffc107;
  margin-bottom: 0.8rem;
   font-size:   1.3rem;
}

.highlight-card p {
	         font-size: 0.95rem;
   opacity: 0.9;}

.cta-section {
      padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
}

.cta-wrapper {
	    max-width    :       700px;

	  text-align: center;

	   margin: 0 auto;
	}

.cta-wrapper h2 {
	font-size: 2.5rem;

   margin-bottom: 1rem;
	
}  

.cta-wrapper p {
   font-size: 1.1rem;
	  margin-bottom: 2rem;
	   opacity: 0.95;
}

.cta-button-secondary {
  display: inline-block;
  background: #ffc107;
    color: #333;
   padding: 1rem 2.5rem;
   text-decoration: none;
    border-radius: 50px;
  font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
	background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);

}

.contact-section {
	padding: 4rem 2rem;
				 background-color: #fff;
}

.contact-section h2

{
	font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
  text-align: center;
}

.contact-form {
   max-width: 600px;
  margin: 3rem auto 0;
   background: #f5f5f5;
    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {

   margin-bottom: 1.5rem; 
}

.form-group label    {
    display: block;
    margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a2e; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.8rem;
                    border: 2px solid #ddd;
   border-radius: 5px;
   font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;


}

.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);

}

.submit-button


{
       width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color   :  white;
   border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight  :  600;
   cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
	}

.main-footer    {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width:  1200px;
  margin: 0 auto 2rem;
	
}

.footer-section

{
    padding :  1rem 0;
}

.footer-logo-img {
  height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-contact h3,
.footer-links h3 {
	   font-size: 1.2rem;
    margin-bottom: 1rem;
   color: #ffc107;

}

.footer-contact p {
    margin-bottom: 0.8rem;
	 opacity: 0.9;
}

.footer-links ul {
  list-style: none;}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
      color: #ffc107;
}

.footer-bottom {
   text-align: center;
   padding-top:   1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 3rem 2rem;
        min-height: 400px;
    }

    .services-overview h2,
    .forecasting-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .projection-content,
    .training-content {
        flex-direction: column;
        gap: 2rem;
    }

    .training-content {
        flex-direction: column;
    }

    .services-grid,
    .workshop-grid,
    .seminar-highlights {
        grid-template-columns: 1fr;
    }

    .projection-section,
    .training-section {
        padding: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-overview h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .projection-text h2,
    .training-text h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
               padding: 4rem 2rem;
               min-height: 400px;
  display: flex;
	 align-items    :       center;
    justify-content :      center;
	 position: relative;
    overflow: hidden;
}

.hero-overlay   {
	position  :  absolute;
    top: 0;
     left: 0;
   right: 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.services-hero-content {
  position   :   relative;
   z-index: 1;
    text-align: center;
}

.services-hero-content h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   font-weight: 700;}

.services-hero-content p


{
	 font-size    :   1.2rem;
  opacity: 0.95;

}

.services-breadcrumb    {
  background-color   :        #f5f5f5;
  padding: 1rem 2rem;
   border-bottom :  1px solid #e0e0e0;
}

.services-breadcrumb p {
      max-width: 1200px;
  margin: 0 auto;
	 color : #666;
    font-size: 0.95rem;
}

.services-breadcrumb a {
   color    :        #667eea;
   text-decoration :    none;
  transition: color 0.3s ease;
}

.services-breadcrumb a:hover {
  color :  #764ba2;
   text-decoration: underline;

}

.service-detailed   {
   padding: 4rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.service-detailed.alternate {
	background-color: #fafafa;
}

.service-detailed h2 {
   font-size: 2.3rem;
   margin-bottom   :2rem;
   color: #1a1a2e;
}

.service-detail-layout {
      display: flex;
    align-items: flex-start;
  gap: 3rem;
    max-width: 1200px;
   margin: 0 auto;
}

.service-detail-layout.reverse {
  flex-direction: row-reverse;
}

.service-detail-text {


  flex: 1;


}

.service-detail-text h3   {
   font-size: 1.8rem;
  margin-bottom :        1rem;
    color   :#1a1a2e;
}

.service-detail-text p {
	color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1.05rem;
}

.service-detail-text h4 {
	 font-size: 1.3rem;
   margin-top: 1.5rem;
   margin-bottom: 1rem;
   color: #2a2a3e;
}

.service-list {
     list-style: none;
  margin    :1rem 0 1.5rem;
}

.service-list li {
    padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
   color: #555;
    line-height: 1.6;
}

.service-list li:before {
  content: "✓";
    position :  absolute;
    left: 0;
   color: #667eea;
      font-weight: bold;
    font-size: 1.2rem;
}

.service-details-box {

  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
	 padding   :1.5rem;
   border-radius :  8px;
    border-left: 4px solid #667eea;
   margin-top: 1.5rem;

}

.service-details-box h5


{
 font-size: 1.1rem;
	  margin-bottom: 1rem;
	  color: #1a1a2e;
}

.service-details-box p {
      color: #666;
 margin-bottom: 0.8rem;
    font-size :   0.95rem; 
	

}

.service-details-box p:last-child {

       margin-bottom: 0;
     }

.service-detail-image {
         flex  :        1;
   width: 100%;
                    border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   object-fit: cover;
    max-height :     400px;
}

.pricing-section {

  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     }  

.pricing-section h2 {
  font-size: 2.5rem;
   margin-bottom: 0.5rem;
   color     :       #1a1a2e;
   text-align: center;
}

.pricing-grid {
    display   :grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
   	margin: 3rem auto 0;
}

.pricing-card  
  {
    background: white;
    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured{


  border: 3px solid #667eea;
  transform: scale(1.05);


     }

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card h3 {
      font-size: 1.5rem;
  margin-bottom: 0.5rem;
   color: #1a1a2e;
     }

.pricing-card .price {
   margin-bottom :      1.5rem;
  color: #667eea;
    font-weight: 700;
   font-size: 2rem;
}

.pricing-features {

    list-style: none;
   margin-bottom: 2rem;
    flex-grow :   1;}

.pricing-features li {
		padding: 0.7rem 0 0.7rem 1.5rem;
   position: relative;
     color: #555;
                    border-bottom: 1px solid #f0f0f0;
     }

.pricing-features li:last-child {
    border-bottom:        none;
}

.pricing-features li:before {
     content: "•";
    position: absolute;
  left: 0;
  color: #667eea;
}

.pricing-button {
  display: inline-block;
  background: #667eea;
   color: white;
  padding     :0.8rem 1.5rem;
  text-decoration   :       none;
   border-radius  :       5px;
  text-align: center;
   transition: all 0.3s ease;
   font-weight: 600;
  margin-top   :   auto;
}

.pricing-button:hover {
	    background: #764ba2;
  transform: translateY(-2px);}

.pricing-button.featured-btn {
    color: #333;
    background: #ffc107;
}

.pricing-button.featured-btn:hover {
    background: #ffb300;
} 

.faq-section {
    background-color: #fff;
	   padding: 4rem 2rem; 

}

.faq-section h2 {

      font-size: 2.5rem;
	  margin-bottom: 3rem;
	   color: #1a1a2e;
	                    text-align: center;
}

.faq-container {
  max-width: 900px;
    margin     :  0 auto;
    display: grid;
  grid-template-columns: 1fr;
     gap:      1.5rem;
}

.faq-item {

	     background: #f9f9f9;
   padding     :  1.5rem;
 border-radius: 8px;
  border-left: 4px solid #667eea;
	 transition: all 0.3s ease;
	}

.faq-item:hover {
   background: #f5f5f5; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	}

.faq-question {
   font-weight: 600;

	       cursor   :        pointer;

	   color: #1a1a2e;

	  margin-bottom: 0.8rem;

	               font-size     :     1.1rem;
}

.faq-answer {

	    color: #666;
  line-height: 1.7;
   font-size: 0.95rem;
	}

.cta-services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    text-align: center;
}

.cta-services h2 {
               font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-services p {
  opacity: 0.95;

	    margin-bottom: 2rem;

	   font-size    :        1.1rem;
}

.cta-button-large {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 1.2rem 3rem;
      text-decoration: none;
  border-radius: 50px;
	font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
   background: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
  padding: 4rem 2rem;
               background-color: #fff;
	min-height: 600px;
  display: flex;
                    align-items: center;
  justify-content: center;
}

.thankyou-container {
  max-width: 600px;
    text-align: center;
}

.success-icon		{
  margin-bottom: 2rem;
}

.success-icon svg {
    width: 100px;
  height   :100px;
	 animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
  font-size: 2.8rem;
   color: #2ecc71;
  margin-bottom: 0.5rem;
    font-weight: 700;
}

.thankyou-subtitle {


    font-size: 1.3rem;
    color:     #666;
	 margin-bottom: 2rem; 

	}

.thankyou-message {
    background: #f0f9ff;
  border-left   :      4px solid #667eea;
    padding: 2rem;
    border-radius: 8px;
  margin-bottom: 2.5rem;
}

.thankyou-message p {
	   color: #555;
  margin-bottom: 1rem;
   line-height : 1.8; 
	
}

.thankyou-message p:last-child
	{
    margin-bottom    :     0;
}

.next-steps {
     margin-bottom:        2.5rem;
}

.next-steps h3{


   color: #1a1a2e;
  font-size    :        1.5rem;
	margin-bottom: 1.5rem;
	}

.steps-grid {
	display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.step
{

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.5rem;
    border-radius: 8px;
   color: white;}

.step-number {
    font-size  :      2rem;
      font-weight: 700;
  margin-bottom: 0.5rem;
}

.step h4 {
	 font-size: 1rem;
  margin-bottom    :0.5rem;

}

.step p {
   font-size: 0.85rem;
   opacity    : 0.9;
} 

.contact-info-box {
   background: #fff9e6;
         border: 2px solid #ffc107;
  padding: 2rem;
  border-radius: 8px;
    margin-bottom:2rem;
}

.contact-info-box h3 {
	  color: #1a1a2e;
	margin-bottom: 0.8rem;


}

.contact-info-box p {
               margin-bottom    :   0.5rem;
      color: #666;
}

.contact-phone     {
   font-size     :1.3rem;
   color: #667eea;
    margin: 1rem 0 !important;
}

.action-buttons {
  display: flex;
	gap:  1rem;
  justify-content  :        center;
   flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
   padding: 1rem 2rem;
    text-decoration: none;
       border-radius   :  5px;
   font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.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.3);
}

.btn-secondary {
   background: #f0f0f0;
  color: #1a1a2e;
  border     :    2px solid #667eea;
}  

.btn-secondary:hover {
    background: #667eea;
   color: white;
}

.faq-quick {

	   padding: 4rem 2rem;
    background: #fafafa;

}

.faq-quick h2 {
    font-size: 2rem;
    margin-bottom     :   2rem;
   color: #1a1a2e;
   text-align     : center;
}

.faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.faq-quick-item {
   background: white;
    padding: 1.5rem;
	border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-quick-item h4 {
	    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;

}

.faq-quick-item p {
    color  :  #666;
     font-size: 0.95rem;
      line-height: 1.6; 

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-layout.reverse {
        flex-direction: column;
    }

    .service-detailed h2 {
        font-size: 1.8rem;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .thankyou-section {
        min-height: auto;
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .success-icon svg {
        width: 80px;
        height: 80px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .faq-quick-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem;
        min-height: 300px;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed {
        padding: 2rem;
    }

    .service-detail-text h4 {
        font-size: 1.1rem;
    }

    .cta-button-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .thankyou-container {
        padding: 1rem 0;
    }

    .contact-info-box {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
    min-height: 600px;
}

.policyContainer {
   max-width: 900px;
   margin :  0 auto;
   text-align: left;
}

.policyContainer h1 {
   font-size: 2.8rem;
  color: #1a1a2e;
      margin-bottom: 2rem;
   font-weight: 700;
}

.policyContainer h2    {
    font-size  :  1.8rem;
   color: #667eea;
   margin-top: 2rem;
  margin-bottom: 1rem;
   font-weight: 600;
}

.policyContainer p 
 {
  color: #666;
          margin-bottom: 1.5rem;
	 line-height: 1.8;
   font-size: 1.05rem;
  text-align: justify;
}  

.policyContainer h1 + .policyContainer h2 {
    margin-top: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}