* {
  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: #2c3e50;
   background-color: #f8f9fa;
}

.navbar    {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position :     sticky;
  top: 0;
    z-index: 1000;
}

.nav-container {
		max-width: 1200px;
   margin: 0 auto;
    padding:       1rem 2rem;
	display: flex;
    justify-content: space-between;
      align-items: center;
}

.logo-wrapper {


    flex-shrink: 0;
}

.navbar-logo {
   height :      64px; 
	   width     :auto; 
	          object-fit: contain;
}

.nav-menu {
  display: flex;
    gap: 2.5rem;
    list-style: none;
} 

.nav-link {
    text-decoration: none;
  color   :      #2c3e50;
	font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {

  color: #3498db;
	
}

.nav-link::after {
  content: '';
   position: absolute;
  width: 0;
    height: 2px;
          bottom: -5px;
    left: 0;
    background-color: #3498db;
	transition: width 0.3s ease;
}

.nav-link:hover::after     {

    width: 100%;}

.burger-menu {
	  display: none;
    flex-direction: column;
	 cursor: pointer;
	gap: 6px;
}

.burger-line {
	  width: 25px;
  height: 3px;
  background-color: #2c3e50;
	border-radius: 2px;
   transition: all 0.3s ease;
	}

.hero {
    max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
	display: flex;
  align-items:    center;
  gap: 3rem;

}

.hero-content		{
	 -ms-flex: 1;
   flex: 1;
}

.hero-content h1     {
  font-size   :    3.5rem;
   color: #1a1a1a;
   margin-bottom: 1rem;
    line-height: 1.2;
	
}

.hero-content p {
   font-size: 1.3rem;
			color: #555;
  margin-bottom: 2rem;
}

.hero-cta {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
	 text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.hero-image {
 flex: 1;
}

.hero-image img {
       width   :      100%;
    border-radius: 12px;
  object-fit: cover;
   height: 400px;
}

.expertise-section {
    background-color:        #fff;
  padding     : 4rem 2rem;

}



.section-header {
   text-align     :       center;
    margin: 0 auto 3rem;
   max-width: 600px;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
    font-size: 2.5rem;
}

.section-header p {
  font-size: 1.1rem;
    color: #666; 

}


.expertise-grid {
   max-width: 1200px;
   margin   :0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; 

}

.expertise-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f7 100%);
   padding: 2rem;
   border-radius: 12px;
    transition: all 0.3s ease;
   text-align: center;
    border-top  :       4px solid #3498db;
}

.expertise-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top-color: #2980b9;
	}

.expertise-icon {
   margin-bottom: 1.5rem;
} 

.expertise-icon img {
    width: 48px;
    height :   48px;
     margin: 0 auto;
  stroke: #3498db;
  fill: none;

}

.expertise-card h3  {
   font-size: 1.5rem;
      color :    #1a1a1a;
	margin-bottom :   0.5rem;


}

.expertise-card p {
  color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.workshops-section    {
  background: linear-gradient(135deg, #ecf0f1 0%, #e8eef2 100%);
   padding: 4rem 2rem;
}

.workshops-content {
   max-width: 1200px;
    margin: 0 auto;
	 display: flex;
   align-items   :    center;
                    gap: 3rem;
}

.workshops-text {
         flex: 1;
     }

.workshops-text h2 {


  font-size: 2.3rem;
   color: #1a1a1a;
    margin-bottom: 1rem;
	}

.workshops-text p{


   color: #555;
      margin-bottom: 1.5rem;
      line-height: 1.7;
     }

.workshops-list {
   margin-top: 1.5rem;
   list-style     :       none;
}

.workshops-list li {
  color: #444;
       padding: 0.8rem 0;
  padding-left: 1.5rem;
   position   :      relative;
	
}

.workshops-list li::before {
  content: '▸'; 
	  font-size    :      1.3rem; 
	                    left: 0; 
	  position: absolute; 
		 color  :    #3498db;
}

.workshops-image {

	    flex: 1;


}

.workshops-image img {
  width: 100%;
   border-radius: 12px;
 object-fit: cover;
       height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.assessment-section {
   	 background-color: #fff;
  padding  :    4rem 2rem;

}

.assessment-header {
  text-align: center;
   max-width: 600px;
			margin: 0 auto 3rem;


}

.assessment-header h2 
 {
    font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom  : 0.5rem;
}

.assessment-header p

{

	    color: #666;
  font-size     :   1.1rem; 
	


}

.assessment-flow {
    max-width: 1200px;
    margin: 0 auto;
  display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap  :        2rem;


}

.flow-step {
  background:    #f8f9fa;
       padding: 2rem;
      border-radius   :        12px;
      text-align: center;
      transition: all 0.3s ease;
}



.flow-step:hover {
	  transform: translateY(-5px);
    background: #ecf0f1;

	}

.step-number {
    display: inline-flex;
      align-items: center;
    justify-content: center;
	width :     50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
          color: white;
    font-size :1.5rem;
                    font-weight: bold;
    border-radius: 50%;
   margin-bottom: 1rem;
}

.flow-step h3 {
    font-size   :  1.3rem;

	    color: #1a1a1a;

	        margin-bottom    :   0.5rem;
}

.flow-step p {
  color: #666;
       margin-bottom: 1.5rem;
} 

.flow-step img {
	object-fit: cover;
  width: 100%;
     height: 200px;
  border-radius: 8px;
}

.conferences-section{
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
   padding :4rem 2rem;
  color: white;
}

.conferences-wrapper {
    max-width: 900px;
    margin: 0 auto;
       text-align     :center;
}

.conferences-wrapper h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
   color: white;
}

.conferences-wrapper p {
      font-size: 1.1rem;
  margin-bottom: 2.5rem;
 line-height: 1.7;
   opacity     :   0.95;

}  

.conference-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
     background: rgba(255, 255, 255, 0.15);
   padding: 1.5rem;
   border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	}

.highlight:hover    {
     background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
     }

.highlight h3 {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
   color: white;
}

.highlight p    {
  color: rgba(255, 255, 255, 0.9);
     font-size: 0.95rem;
}

.services-cta
	{
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.services-cta h2{
   margin-bottom: 1rem;
   font-size: 2.2rem;
}

.services-cta p {
    font-size:      1.1rem;
    margin-bottom: 2rem;
	 max-width: 600px;
      margin-left: auto;
    margin-right: auto; 

}

.cta-button {


	display    :     inline-block;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   	 color:   white;
   	padding  : 1rem 2.5rem;
   	border-radius: 8px;
         text-decoration: none;
                  font-weight: 600;
      transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);

}

.cta-button:hover {


  transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);


}

.contact-section {
	background-color: #fff;
                    padding: 4rem 2rem;
}

.contact-container   {
    max-width   : 600px;
     margin  :   0 auto;
}

.contact-section h2
	{
    color: #1a1a1a; 
    font-size :    2.3rem; 
   text-align: center; 
	margin-bottom: 0.5rem;
}

.contact-section > p


{
          text-align: center;
      color: #666;
  margin-bottom: 2.5rem;
   font-size   :        1.05rem;
}

.contact-form {
  display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.form-group     {
    display: flex;
  flex-direction: column;
}

.form-group label {
  color: #2c3e50;
                       font-weight: 600;
     margin-bottom: 0.5rem;
      font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem;
	border: 2px solid #ecf0f1;
	border-radius: 6px;
     font-family: inherit;
  font-size: 1rem;
   transition: all 0.3s ease;
  background-color   :  #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline  :       none;

	   border-color     :      #3498db;

	  background-color: white;

	  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {


  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
               color: white;
   padding: 1rem;
   border: none;
   border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
     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.5);
}

.submit-button:active   {
  transform: translateY(0);
	
}

.footer
	{
   background-color: #1a1a1a;
  padding: 3rem 2rem 1rem;
  color   :  #ecf0f1;
}

.footer-container 
 {

	  max-width: 1200px;
  margin    :    0 auto;
	}

.footer-logo-section {
  text-align :center;
   margin-bottom: 2.5rem;
	
}

.footer-logo {
    height: 86px;
    width: auto;
    object-fit    :     contain;
  filter: brightness(0) invert(1);
	
}

.footer-content


{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 2rem;
}

.footer-column h3 {
	  font-size: 1.1rem;

   color: white;

   margin-bottom   :       1rem;


}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {


    margin-bottom: 0.7rem;
}

.footer-column a {
  color: #bdc3c7;
  text-decoration: none;
          transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-address{
	color: #bdc3c7;
    line-height     :       1.7;
   margin-bottom: 1rem;
}

.footer-phone {
    color: #bdc3c7;
}

.footer-bottom {
	   text-align  :       center;
		padding-top: 2rem;
    border-top: 1px solid #34495e;
      color: #95a5a6;
    font-size     :0.9rem;}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .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);
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image img {
        height: 300px;
    }

    .workshops-content {
        flex-direction: column;
        gap: 2rem;
    }

    .workshops-image img {
        height: 300px;
    }

    .assessment-flow {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .conference-highlights {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        gap: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
	color: white;
   padding: 5rem 2rem;
    text-align: center; 
	
}

.services-hero-content h1 {
     font-size: 3rem;
         margin-bottom: 1rem;
    font-weight: 700;
	
}


.services-hero-content p {
		font-size: 1.3rem;
    margin :    0 auto;
    opacity: 0.95;
    max-width:   600px;
}

.service-detailed {
  padding: 4rem 2rem;
	background-color  :    #fff;
}

.service-detailed.alternate {
    background-color: #f8f9fa;
}

.service-card-detailed {
     max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
     }

.service-detailed.alternate .service-card-detailed {
	   grid-template-columns: 1fr 1fr;
	}

.service-content h2

{
		font-size: 2.2rem;
    color: #1a1a1a;
  margin-bottom: 1rem;
    line-height  :        1.3;
     }

.service-content p


{
 font-size: 1rem;
   color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;


}

.service-benefits h3   {
    font-size: 1.2rem;
    color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-benefits ul
	{
   list-style   :       none;
}

.service-benefits li {
   padding: 0.7rem 0;
	 padding-left: 1.5rem;
    color: #555;
    position :     relative;


}

.service-benefits li::before {
  content: '✓';
               position    :    absolute;
   left  :      0;
          color: #3498db;
     font-weight: bold;
   font-size: 1.1rem;
}

.service-image img    {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

.pricing-section {
      background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;

}

.pricing-section h2 {
	 font-size: 2.5rem;
    color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.pricing-section > p {
	    font-size: 1.1rem;

	  margin-bottom: 3rem;

	   color: #666;}

.pricing-cards {
  max-width: 1200px;

	margin: 0 auto;

   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 2rem; 

}

.pricing-card {
  background: #f8f9fa;

	    padding: 2.5rem 2rem;

	   border-radius: 12px;

	  border: 2px solid #ecf0f1;

		transition: all 0.3s ease;

	  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured


{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
                    color: white;
  border: none;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.pricing-card h3 {
   font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.pricing-card.featured h3	{
   color :       white;
	}

.price-tag {
	color: #7f8c8d;
	font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .price-tag	{
  color: rgba(255, 255, 255, 0.8);
}

.pricing-list {
  list-style: none;
	 margin-bottom: 2rem;
}

.pricing-list li {
	 padding: 0.6rem 0;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-card.featured .pricing-list li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.pricing-button {
                    display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   padding: 0.9rem 2rem;
     border-radius    :  6px;
  text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
    width: 100%;
    text-align     :   center;
} 

.pricing-button:hover
{
  transform: translateY(-2px);
	  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.pricing-card.featured .pricing-button.featured-btn{
   background: white;
    color: #3498db;
}

.pricing-card.featured .pricing-button.featured-btn:hover {
    background: #f0f3f7;
}

.process-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #e8eef2 100%);
    padding    :  4rem 2rem;
   text-align: center;
}

.process-section h2 {
          font-size     :      2.5rem;
    color: #1a1a1a;
   margin-bottom: 0.5rem;
}

.process-section > p {
	 color: #666;
    margin-bottom: 3rem;
  font-size: 1.1rem;
}

.process-timeline {

	max-width: 1000px;
   margin: 0 auto;
  display: flex;
   flex-direction:  column;
   gap: 2rem;
     } 

.timeline-item {
  background: white;
    padding: 2rem;
     border-radius: 10px;
   display: flex;
  align-items: center;
   gap: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-dot {

	         display: flex;
  align-items: center;
    justify-content: center;
   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   font-size: 1.5rem;
   font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
     }

.timeline-item h3    {


  font-size: 1.3rem;
  margin-bottom: 0.3rem;
    text-align: left;
	 color: #1a1a1a;
	}

.timeline-item p {
  color: #666;
	text-align: left; 

}

.timeline-connector {
   width: 2px;
    height: 30px;
  background: linear-gradient(180deg, #3498db 0%, transparent 100%);
   margin: 0 auto;
}

.thankyou-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

   color: white;

  padding: 4rem 2rem;

   min-height: 100vh;

    display: flex;

   align-items: center;

    justify-content: center;
}

.thankyou-container {
    max-width: 700px;
    text-align: center;
}

.success-icon {
   margin-bottom: 2rem;
}

.success-icon img {
   width: 100px;
    height: 100px;
  filter: brightness(0) invert(1);
}

.thankyou-hero h1 
 {
     font-size: 3rem;
   margin-bottom    :    0.5rem;
  font-weight: 700;
}

.thankyou-main {
    font-size: 1.5rem;
  margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-content {

	  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
	border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
	


}

.thankyou-content p


{
	font-size: 1rem;
     line-height: 1.6;
	 margin-bottom    :    1.5rem;
}

.confirmation-details h2 {
  font-size: 1.5rem;
   margin-bottom: 1.5rem;
    color: white;
	
} 

.details-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
   margin-bottom:        2rem;
}

.detail-item {
  background: rgba(255, 255, 255, 0.1);
   padding   :    1.5rem;
    border-radius    :        8px;
}

.detail-number {
   display: inline-flex; 
    align-items: center; 
          justify-content: center; 
                    width: 45px; 
  height: 45px; 
  background: rgba(255, 255, 255, 0.2); 
    color: white; 
       font-size :1.3rem; 
   font-weight: bold; 
   border-radius: 50%; 
    margin-bottom: 1rem;
}

.detail-item h3 {
	font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.detail-item p {
   font-size: 0.9rem;
  opacity: 0.9;

}

.next-steps {

	  background: rgba(255, 255, 255, 0.1);

	    padding: 1.5rem;

	  border-radius   :        8px;

	  margin-top: 1.5rem;

	   text-align: left;
     }

.next-steps h2 {
      font-size   :        1.3rem;
	 margin-bottom: 1rem;
    text-align: center; 
	

}



.recommendations {
  list-style: none;
}

.recommendations li {
   font-size: 0.95rem;
   padding-left: 1.5rem;
  padding   :        0.6rem 0;
   position: relative;

}

.recommendations li::before {
    left: 0;
  content: '→';
  position: absolute;
    color: white;
       font-weight: bold;
}

.recommendations a {
    color  :       white;
	text-decoration: underline;
    transition: opacity 0.3s ease;


}

.recommendations a:hover


{
               opacity: 0.8;
}

.cta-buttons {

		 flex-wrap :        wrap;
   display: flex;
  gap: 1rem;
  justify-content: center;

}

.button {
	    display: inline-block;
   padding: 1rem 2rem;
  border-radius: 6px;
    text-decoration: none;
  font-weight: 600;
	 transition: all 0.3s ease;



}

.primary-button {
 color     :   #27ae60;
         background: white;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    border: 2px solid white;
  color: white;
  background: transparent;
}

.secondary-button:hover {
    background: white;

	   color: #27ae60;
}

.faq-thankyou		{

    background-color: #fff;
   padding: 4rem 2rem; 
	}

.faq-thankyou h2 {
    color: #1a1a1a;
    font-size: 2.3rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-items {

  max-width: 900px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem; 
	


}

.faq-item {
	                    border-left    :4px solid #3498db;
	 padding: 1.5rem;
   background: #f8f9fa;
  border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.1rem;
	color    :  #1a1a1a;
    margin-bottom:  0.7rem;
}

.faq-item p {
       color: #666;
   font-size: 0.95rem;
    line-height: 1.6;

}

.faq-item a 
 {
  color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item a:hover {
   color     :   #2980b9;
   text-decoration: underline;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-main {
        font-size: 1.2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item h3,
    .timeline-item p {
        text-align: center;
    }

    .process-timeline {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .process-section h2 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 1rem;
    }

    .success-icon img {
        width: 80px;
        height: 80px;
    }
}.policy-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
	padding: 4rem 2rem;
   text-align: center;
}

.policy-hero-content h1 {
  font-size: 2.8rem;
	margin-bottom: 0.8rem;
    font-weight: 700;
}

.policy-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.policySection {
    padding: 4rem 2rem;
   background: #fff;
}

.policyContainer {
   max-width: 900px;
   margin: 0 auto;
    text-align: left;
}

.policyContainer h2
{
          font-size     :    1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
   margin-bottom: 1rem;
    font-weight: 700;
                    line-height: 1.3;
}

.policyContainer h2:first-of-type {
   margin-top: 0;
}


.policyContainer p {
  line-height: 1.8;
    color: #555;
	margin-bottom: 1.5rem;
  font-size: 1rem;


}

.policyContainer ul

{
         list-style: none;
    margin-bottom     :      1.5rem;
}  

.policyContainer ul li {
	 color: #555;
   margin-bottom: 0.8rem;
    padding-left: 1.5rem;
   position: relative;
   line-height: 1.6;
}

.policyContainer ul li::before {
  content: '•';
  position: absolute;
	left: 0;
  color: #3498db;
   font-size: 1.2rem;

}@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-hero {
        padding: 3rem 1rem;
    }

    .policySection {
        padding: 2.5rem 1rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-hero-content h1 {
        font-size: 1.6rem;
    }

    .policy-hero-content p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 1.5rem 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}