* {
   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;
}

.container {
       max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      padding   :        0;
	 position: sticky;
	 top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 1rem 0;
}

.nav-container    {

	  max-width: 1200px;
  margin: 0 auto;
                    padding: 0 20px;
   display: flex;
    justify-content: space-between;
   align-items    : center;
     }

.nav-logo {
  display: flex;
    align-items: center;
}

.logo-img {
  width: auto;
			height: 50px;
}

.nav-menu {
   display: flex;
  list-style: none;
	gap: 2rem;
}

.nav-link {

	    color: #ffffff;
    text-decoration    :      none;
  font-weight     : 500;
   transition: color 0.3s ease;
  font-size: 1rem;


}

.nav-link:hover {
			color: #00d4ff;
}



.hamburger {
   display   :   none;
       flex-direction: column;
      cursor: pointer;
   	gap: 5px;
}

.hamburger span    {
	 width    :    25px;
        height: 3px;
  -webkit-transition: all 0.3s ease;
    background-color: #ffffff;
	-moz-transition: all 0.3s ease;
   border-radius: 2px;
   transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px); 

}

.nav-menu.active {
   display: flex;
    position :   absolute;
 top: 70px;
   left: 0;
   width     :        100%;
   background: #1a1a2e;
  flex-direction    :      column;
    gap: 0;
   padding: 2rem 0;
}

.nav-item.active {
  background: rgba(0, 212, 255, 0.1);
}

.nav-item.active .nav-link {
	   color: #00d4ff;


}

.hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
  padding: 80px 20px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
   gap: 40px; 
  align-items  :  center;

}

.hero-content h1 {
     font-size: 2.8rem;
    margin-bottom :    1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem; 
  margin-bottom: 2rem; 
    opacity: 0.95;
} 

.cta-button {

	 color: #1a1a2e;
  font-size: 1rem;
    border-radius: 50px;
   transition: all 0.3s ease;
   background-color: #00d4ff;
    font-weight: 600;
    display: inline-block;
   padding: 14px 35px;
   text-decoration: none;
	}

.cta-button:hover {
    background-color: #00a8cc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.hero-image    {
  overflow: hidden;
  border-radius: 10px;
}

.hero-image img    {
   width: 100%;
    height: auto;
       object-fit: cover;
    display :   block; 
	
}

.intro-section {
  text-align: center;
   background: white;
   padding: 60px 20px;
}

.intro-section h2 {

	   font-size: 2rem;
  margin-bottom: 1.5rem;
        color: #1a1a2e;
}

.intro-section p  {
   font-size: 1.1rem;
  max-width: 700px;
   margin: 0 auto;
   color: #555;}

.programs {
  padding   :       80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.programs h2 {
    color: #1a1a2e;
	 font-size :     2rem;
        text-align: center;
    margin-bottom  :      3rem;
}

.programs-grid {


	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :        30px;

}

.program-card  
  {
	 background: white;
	border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}  

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
  height: 250px;
   object-fit: cover;
                    display: block;
}

.program-card h3 {
   font-size: 1.5rem;
  padding: 1.5rem;
  color  :  #1a1a2e;
   border-bottom: 3px solid #667eea;
}

.program-card p	{


                    padding: 1.5rem;
   color: #555;
   font-size: 0.95rem;
	}

.services-section  {
  background:      white;
  padding: 80px 20px;
} 

.services-section h2 {
   font-size: 2rem;
   text-align    :  center;
  margin-bottom: 3rem;
    color: #1a1a2e;
}

.services-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; 

}

.service-item {
       text-align: center;
   padding  :2rem;
  border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
	}

.service-item:hover {
    background: #e8f4f8;
  transform: scale(1.05);
}

.service-icon {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
   justify-content: center;
    align-items: center;
}

.service-icon img     {
	width: 50px;
    height: 50px;
      stroke: #667eea;
   fill: none;
  stroke-width: 2;
   stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(2px 2px 4px rgba(102, 126, 234, 0.2));
  transition    :all 0.3s ease;
}

.service-item:hover .service-icon img {
    stroke: #764ba2;
  filter: drop-shadow(2px 2px 6px rgba(118, 75, 162, 0.3));
}

.service-item h3 {

	    font-size: 1.3rem;
  margin-bottom: 0.8rem;
   color: #1a1a2e;
     }

.service-item p {
    color: #666; 
   font-size: 0.95rem;
}

.featured-workshop


{

  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;

}

.featured-workshop > .container {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
	
}

.workshop-content h2 {
	 font-size: 2.2rem;
   margin-bottom: 1.5rem;
       line-height: 1.3;
}

.workshop-content p {
   font-size: 1.05rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.workshop-features {
  list-style: none; 

}

.workshop-features li {
	padding: 10px 0;
   padding-left: 25px;
  position  :   relative;
               font-size: 1rem;
}

.workshop-features li:before    {
  content: "✓";
    position:      absolute;
   left     :   0;
  color: #00d4ff;
	font-weight: bold;
  font-size: 1.2rem;
}

.workshop-image {
    border-radius: 10px;
    overflow  :  hidden;
}

.workshop-image img {
	 display: block;
     width: 100%;
     height: auto;
}

.cta-section {
  padding:80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
    text-align: center;
}

.cta-section h2

{
   font-size: 2.2rem;
   margin-bottom: 1rem;


}

.cta-section p {
	 font-size: 1.1rem;
  margin-bottom    : 2rem;
                    max-width: 700px;
   margin-left: auto;
    margin-right: auto;
}

.cta-button-primary {
    display: inline-block;
   background-color: #00d4ff;
    color: #1a1a2e;
   padding: 16px 40px;
   border-radius   :      50px;
  text-decoration: none;
   font-weight: 600;
   font-size:   1.05rem;
	transition: all 0.3s ease;
}

.cta-button-primary:hover {
   background-color: #00a8cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4); 

}

.contact-section {
	padding: 80px 20px;
  background: white;
}

.contact-section h2
{
  font-size: 2rem;
               text-align: center;
  margin-bottom: 1rem;
   color   :       #1a1a2e;
}

.contact-section > .container > p {
   text-align     :    center;
  margin-bottom  :     3rem;
  color: #666;
    font-size     :      1.05rem;
}

.contact-form
	{
          max-width: 600px;
   margin: 0 auto;
  background: #f8f9fa;
    padding:   2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);


}

.form-group {
	margin-bottom     :  1.5rem;
}

.form-group label {
  display :       block;

  color: #1a1a2e;

	 font-weight  :    600;

   margin-bottom     :       0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
	 padding: 12px;
   border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
				 outline: none;
	  border-color:        #667eea;
	    background-color: #ffffff;
	  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {


    resize: vertical;
   min-height: 120px;
	}

.submit-button {
    width    :        100%;
  padding: 14px;
  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;
}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: white;
  padding: 60px 20px 30px;
}

.footer-container {
   max-width: 1200px;
			margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
	margin-bottom: 2rem;
	
}

.footer-logo {
    display: flex;
  align-items: flex-start;
}

.footer-logo-img {
   height: 50px;
	width    :   auto;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
                       font-size: 1.1rem;
   margin-bottom: 1rem;
    color: #00d4ff; 
	}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {


   color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease; 



}

.footer-section ul li a:hover {
      color: #00d4ff;
}

.footer-section p{
   color: #ccc;
    margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.phone-contact {
    color: #00d4ff;
    font-weight: 600;


}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top     :1.5rem;
    text-align: center;
  color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a2e;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 0.8rem 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .featured-workshop > .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workshop-content h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .programs h2,
    .services-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .submit-button {
        padding: 12px;
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.services-hero-content h1 {
    line-height: 1.2;
  margin-bottom: 1rem;
	font-size    :        2.8rem;


} 

.services-hero-content p {
  font-size: 1.1rem;
			max-width: 700px;
  margin: 0 auto;
   opacity: 0.95;
}

.services-detailed {
       padding: 80px 20px;
   background: white;
}



.service-detail-card {
         display     :       grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {

	  grid-template-columns: 1fr 1fr;


}

.service-detail-card.reverse .service-detail-image
	{
  order: 2;
}

.service-detail-card.reverse .service-detail-content {
   order: 1;
	
}

.service-detail-image {
   overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
   width: 100%;
   height: auto;
   display: block;
    object-fit: cover;
}

.service-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
   color: #1a1a2e;
}

.service-detail-content > p {
         font-size: 1.05rem;
   color: #555;
         margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-detail-content h3 {
  font-size: 1.3rem;
     color   :  #1a1a2e;
    margin-bottom: 1rem;
   margin-top: 1.5rem;
}

.service-features {

    list-style: none;
  margin-bottom: 2rem;
	}

.service-features li  {
                    padding: 10px 0;
   padding-left: 25px;
    position: relative;
   color: #555;
  font-size: 0.95rem;
}

.service-features li:before {
  content: "✓";
    position: absolute;
    left  :   0;
  color     :  #667eea;
    font-weight: bold;
	 font-size: 1.2rem;
}

.service-pricing {
    display: flex;
  flex-direction: column;
  gap: 10px;
    margin-top: 2rem;
   padding: 1.5rem;
   background: #f8f9fa;
    border-left: 4px solid #667eea;
  border-radius: 5px;

}

.service-pricing .price {


    font-size: 1.1rem;
   font-weight: 600;
  color: #667eea;

}

.service-pricing .package {
  font-size: 0.95rem;
    color: #666;
}

.services-comparison {


  padding: 80px 20px; 
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	}

.services-comparison h2
	{
  text-align: center;
  color: #1a1a2e;
	 margin-bottom: 3rem;
    font-size: 2rem;
}

.comparison-table {
  background: white;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e0e0e0;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.comparison-cell {
  padding: 20px;
   font-size: 0.95rem;
}

.comparison-cell.header {
	font-weight: 600;
   font-size: 1rem;
}

.comparison-row:hover {
   background: #f8f9fa;
}

.comparison-row.header-row:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	}

.why-choose {

		 padding: 80px 20px;
  background: white;
     }

.why-choose h2 {
    font-size: 2rem;
   text-align  :    center;
   margin-bottom: 3rem;
    color: #1a1a2e;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;


}

.reason-card {
                    text-align: center;
    padding: 2rem;
  border-radius: 8px;
  background: #f8f9fa;
    transition: all 0.3s ease;
}

.reason-card:hover {
	 background: #e8f4f8;
  transform: translateY(-5px);
}

.reason-icon {
  align-items   :     center;
	display: flex;
   height  :    60px;
    justify-content: center;
    margin-bottom: 1.5rem; 
	
}

.reason-icon img
{
   width: 50px;
  height: 50px;
  stroke: #667eea;
    fill: none;
   stroke-width: 2;
    stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(2px 2px 4px rgba(102, 126, 234, 0.2));
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon img {
       stroke: #764ba2;
  filter: drop-shadow(2px 2px 6px rgba(118, 75, 162, 0.3));
}

.reason-card h3 {
          font-size: 1.3rem;
  margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.reason-card p {
   color: #666;
     font-size: 0.95rem;
}

.testimonials {
 padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials h2 {
  font-size     :    2rem;
	text-align: center;
  margin-bottom     :3rem;
    color: #1a1a2e;
}

.testimonials-grid {
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
}

.testimonial-card {
	 background: white;
   padding   :2rem;
     border-radius:10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
   transition: all 0.3s ease;
	}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonial-text

{

	  font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;}

.testimonial-author {
   font-weight: 600;
  color: #667eea;
   font-size: 0.95rem;
}

.cta-services {
   padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
	 text-align: center;
}



.cta-services h2 {
       font-size: 2.2rem;
          margin-bottom  :     1rem;
}

.cta-services p {
    max-width: 700px;
                    margin-left: auto;
   font-size: 1.1rem;
   margin-right: auto;
			margin-bottom    :    2rem;
}

.cta-button-large {
  display: inline-block;
   background-color: #00d4ff;
      color: #1a1a2e;
  padding:  18px 45px;
  border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #00a8cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.thankyou-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 80px);
   display: flex;
   align-items: center;
  justify-content: center;
}


.thankyou-container {
   text-align:    center;

	     max-width: 700px;

	  background: white;

	  padding: 3rem;

	    border-radius: 15px;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 

}

.success-icon {
   margin-bottom: 2rem;
  height: 100px;
	 display    :        flex;
               justify-content: center;
    align-items: center;
}

.success-icon img {
		 width :        100px;
  height: 100px;
    stroke: #2ecc71;
   fill: #2ecc71;
  stroke-width: 1;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));


}

.thankyou-container h1 {
    font-size: 2.5rem;
   color: #1a1a2e;
          margin-bottom: 1rem;
}  

.success-message{


  font-size: 1.1rem; 
	    color: #555; 
	  margin-bottom: 2.5rem; 
	    line-height: 1.7;

}

.thankyou-content {
    margin: 3rem 0;
    text-align: left;
   background: #f8f9fa;
  padding   :        2rem;
	border-radius: 10px;
}

.thankyou-content h2 {
   font-size: 1.5rem;
			color: #1a1a2e;
   margin-bottom: 2rem;
	text-align: center;
}

.steps		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	 gap    :    20px;
}

.step {
    text-align: center;
}

.step-number {
  display: flex; 
	  align-items: center; 
	    justify-content: center; 
	    width: 50px; 
	    height     :     50px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  color: white; 
		border-radius: 50%; 
	    font-size: 1.5rem; 
	    font-weight: 600; 
	  margin: 0 auto 1rem;
}

.step h3 {
  font-size :       1rem;
   color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;

	       color: #666;
}

.thankyou-info {
    margin-top: 2rem;
    text-align: center;
  background: white;
	padding     :      2rem;
    border-radius: 10px;
}

.thankyou-info h2 {
    font-size :     1.3rem;
  color    : #1a1a2e;
  margin-bottom :       1rem;
}

.thankyou-info p {
          color: #666;
  margin-bottom: 1.5rem;
}

.resources-list {
   flex-direction: column;

	  gap: 10px;

	     list-style  :        none;

	    display: flex;
}

.resources-list li a {
   color: #667eea;
      text-decoration: none;
       font-weight: 500;
     transition :  color 0.3s ease;


}

.resources-list li a:hover {

	color: #764ba2;
   text-decoration  :      underline;
}

.action-buttons {
    display: flex;

	    gap: 15px;

	  margin-top: 2.5rem;

	  justify-content: center;

	    flex-wrap: wrap;
}

.button-primary {
         display: inline-block;
       background-color: #00d4ff;
  color: #1a1a2e;
    padding: 14px 35px;
  border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
               font-size: 1rem;
	}

.button-primary:hover
{
   background-color: #00a8cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.button-secondary {
   -webkit-border-radius: 50px;
   	display: inline-block;
       -moz-transition: all 0.3s ease;
                       -webkit-transition: all 0.3s ease;
      background-color: transparent;
           color: #667eea;
       padding: 14px 35px;
      border: 2px solid #667eea;
         border-radius: 50px;
      text-decoration: none;
       font-weight  :       600;
       transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      font-size: 1rem; 

}

.button-secondary:hover {
	background-color: #667eea;
  color     :  white;
  transform: translateY(-2px); 
	
}

.faq-section {
  padding :        80px 20px;
  background: white;
}

.faq-section h2 {
  font-size: 2rem;
   text-align: center;
	margin-bottom: 3rem;
               color: #1a1a2e;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.1rem;
	 color: #1a1a2e;
   margin-bottom    : 0.8rem; 

}

.faq-item p {
	    color: #666;
 font-size: 0.95rem;
  line-height     :   1.6;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: unset;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 15px;
        font-size: 0.9rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .success-icon img {
        width: 80px;
        height: 80px;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cta-button-large {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}.policySection     {
     padding: 80px 2rem;
      background: #f8f9fa;
  min-height: calc(100vh - 80px);
	}

.policyContainer {
   max-width :     800px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
  font-size: 3rem;
    color   :#1a1a2e;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer h2 {
    font-size: 1.8rem;

  color: #1a1a2e;

   margin-bottom: 1.2rem;

  margin-top    : 2.5rem;

  font-weight :      600;

   border-bottom: 3px solid #667eea;

   padding-bottom: 0.8rem;
}

.policyContainer p {
	color: #555;
  margin-bottom: 1.5rem;
    line-height    :    1.8;
  font-size: 1rem;
	text-align: justify;
}

.policyContainer h2:first-of-type {
	 margin-top: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        background: #f8f9fa;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}