* {
  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: #ffffff;
}

.navbar {
   background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: sticky;
   top: 0;
  z-index: 100;
}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
}

.nav-brand {
  display: flex;
               align-items: center;
}

.logo-img{
    height :  50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
	list-style:     none;
   gap: 3rem;


} 

.nav-menu a {
    text-decoration: none;
   color: #2c3e50;
       font-weight: 500;
  transition: color 0.3s ease;


}

.nav-menu a:hover {
  color: #3498db; 
	
}

.burger-btn  {
   display: none; 
	  background: none; 
	       border: none; 
	    cursor: pointer; 
		 font-size :      1.5rem; 
	    color: #2c3e50;
}@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-container {
        padding: 0.8rem 1.5rem;
    }
}.hero {
   max-width   :  1200px;
    margin: 0 auto;
   padding: 4rem 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 4rem;
   align-items: center;
	
}

.hero-content h1 {
    font-size:   3.5rem;
  color: #2c3e50;
                    margin-bottom: 1.5rem;
			line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
   flex-wrap: wrap;
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    : white;
   padding: 1rem 2.5rem;
   border-radius: 8px;
		text-decoration: none;
    font-weight: 600;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: inline-block;
  cursor  :      pointer;
    border: none;
    font-size: 1rem;


}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
     background-color: #ecf0f1;
   -moz-transition: all 0.3s ease;
    color: #2c3e50;
    padding : 1rem 2.5rem;
          -webkit-border-radius: 8px;
   border-radius: 8px;
	 text-decoration: none;
  font-weight: 600;
          -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
    display: inline-block;
   border: 2px solid #3498db;
  cursor: pointer;
  font-size: 1rem;


}

.btn-secondary:hover {

   background-color: #3498db;
        color: white;
  transform: translateY(-3px);
  -moz-transform: translateY(-3px);
}

.hero-image {
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {

    width: 100%;
   height: auto;
    display: block;
	}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.about {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding:        4rem 2rem;
  margin :       3rem 0;
}

.about-container    {

    max-width: 1200px;
   margin: 0 auto;
	}

.about-container h2 {
	font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
  text-align: center;
}

.about-container > p    {
    text-align: center;
 font-size  :     1.1rem;
    margin-bottom    :   3rem;
   color: #555;
               max-width   :   700px;
    margin-left: auto;
   margin-right: auto;
}

.about-grid {
   display    :     grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	gap: 2rem;
}

.about-card    {
    background: white;
   padding: 2rem;
  border-radius :      10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.about-card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-card h3 
 {
  font-size: 1.4rem;
  color: #3498db;
	 margin-bottom: 1rem;
}

.about-card p

{
    color: #666;
   line-height     :  1.8;
}

.services-preview {
   max-width: 1200px;
    margin :   4rem auto;
  padding: 0 2rem;
}

.services-preview h2 {

	  font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
	color: #2c3e50;
	}

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
    background: white;
      border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; 
	
}


.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-item img {
  width: 100%;
  height: 200px;
   object-fit  :cover;
	 display: block;
}

.service-item h3    {
   font-size: 1.3rem;
               color: #2c3e50;
          padding: 1.5rem 1.5rem 0.5rem;
}

.service-item p {
 color  :      #666;
   padding  :   0.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
  line-height: 1.6;
}  

.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
	margin: 4rem 0; 

}

.testimonials h2 {
    font-size: 2.5rem;
   text-align     :       center;
    margin-bottom:      3rem;



}

.testimonials-grid {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
      padding: 2rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 1rem;
  margin-bottom     :1.5rem;
  font-style: italic;
    line-height   :    1.8;
}

.testimonial-card strong {
   display: block;

         margin-bottom: 0.3rem;

	font-size: 1.1rem;
	
}

.testimonial-card span {
	font-size :       0.9rem;
     opacity: 0.9;
}

.cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
      padding   :      3rem 2rem;
  text-align: center;
    margin: 4rem 0;
}

.cta-content h2 {
    font-size:     2.2rem;
  margin-bottom   : 1rem;
}

.cta-content p {
   font-size: 1.1rem;
	 margin-bottom     :   2rem;
   max-width: 700px;
  margin-left: auto;
        margin-right: auto;
  line-height: 1.8;
}

.btn-cta {
    background-color: white;
  font-weight     :    700;
	cursor: pointer;
   display: inline-block;
  border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
  text-decoration: none;
    color: #3498db;
   transition     :   all 0.3s ease;
  font-size: 1.1rem;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact {
	 padding: 3rem 2rem;
    max-width: 1200px;
  margin  :  4rem auto;


}

.contact-container {
    background: #f8f9fa;
   -moz-border-radius: 12px;
  padding: 3rem;
  border-radius: 12px;
    max-width: 700px;
  margin: 0 auto;
}

.contact h2

{
          font-size: 2rem;
	 text-align: center;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-container > p
	{
  text-align: center;
                    color: #666;
        margin-bottom: 2rem;
}

.contact-form {
   display: flex;
  flex-direction: column;
	gap: 1.5rem;
} 

.form-group		{
          display     : flex;
    flex-direction: column;
}

.form-group label {
  font-weight: 600;
 color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {

  padding: 0.75rem 1rem;
  border: 2px solid #ecf0f1;
  border-radius: 6px;
    font-size:1rem;
    font-family: inherit;
   transition: border-color 0.3s ease;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #3498db;
	background-color: #ecf7ff;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 1rem;
    border: none;
    border-radius: 6px;
  font-size :       1rem;
  font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
   margin-top :1rem;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.footer {


   background: #2c3e50;
  color: #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;


}

.footer-container  {
   max-width: 1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  margin-bottom     :    2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;
}

.footer-section a    {
    color: #ecf0f1;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p   {
	  margin-bottom: 0.8rem;
 line-height  :   1.8;
	}

.footer-logo {
	display: flex;
  align-items: center;
    justify-content: center;
}

.footer-img {
    height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom 
 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #bdc3c7;
}@media (max-width: 768px) {
    .services-grid,
    .testimonials-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: white;

      padding: 5rem 2rem;

  text-align: center;
}

.services-hero h1 {
	   font-size: 3rem;
   margin-bottom: 1rem;}

.services-hero p {
    font-size: 1.3rem;
        max-width :  700px;
      margin: 0 auto;
}

.services-full {
	    max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.services-container {
	   display: flex;
    flex-direction:       column;
   gap: 4rem;

}

.service-detail  {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
     align-items: center;
}

.service-detail.reversed {
	   direction    :      rtl;


}

.service-detail.reversed > * {
        direction  :      ltr;}

.service-detail-image {
   border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
 width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h2   {
  font-size: 2rem;
      color: #2c3e50;
     margin-bottom: 1.5rem;
}

.service-detail-content > p:first-of-type {
   color :     #666;
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-list  {
	list-style    : none;
   margin-bottom: 1.5rem; 

}

.service-list li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
	color: #555;
   position: relative;
  line-height: 1.6;

}

.service-list li:before {
  content: "✓";
	 color: #3498db;
    left   : 0;
  position: absolute;
                    font-weight: bold;
}

.service-duration,
.service-price 
 {
                    color: #2c3e50;

  margin-top: 1rem;

       font-size: 0.95rem;
}
@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reversed {
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 2rem;
    }
}.process-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
}

.process-section h2 {
      font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
	color  :   #2c3e50;

	}

.process-steps {
    max-width: 1200px;
  margin   :      0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap     :        2rem;
}

.process-step {
  background: white;
    padding: 2rem;
    border-radius: 10px;
          text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover    {
  transform: translateY(-8px);
}

.step-number {
  width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
  display: flex;
   align-items: center;
	justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
   margin    :        0 auto 1rem;
}

.process-step h3 {
  font-size: 1.2rem;
    color: #2c3e50;
   margin-bottom    :  0.8rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
   line-height: 1.6;
}

.pricing-section {
   max-width  : 1200px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.pricing-section h2 {
  font-size: 2.5rem;
   text-align    :    center;
   margin-bottom     : 3rem;
    color: #2c3e50;
}

.pricing-grid {
   display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.pricing-card {
               border: 2px solid #ecf0f1;

	  border-radius: 12px;

	    transition: all 0.3s ease;

	  padding: 2.5rem;

	   text-align: center;

	  background: white;
}

.pricing-card:hover {
	  transform: translateY(-10px);

	  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);



}

.pricing-card.featured {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
  border: none;
  transform: scale(1.05);
	}

.pricing-card h3 {
   font-size: 1.5rem;
         color: inherit;
    margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
    font-weight: bold;
   margin-bottom: 1.5rem;
   color: inherit;
}

.pricing-list {
    list-style: none;
    margin-bottom     :  2rem;
	text-align  :        left;
}

.pricing-list li {
      padding    :       0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
  opacity: 0.95;


}

.pricing-list li:last-child {
  border-bottom: none;
}

.btn-pricing  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	        padding: 0.9rem 2rem; 
	    border-radius: 6px; 
	   text-decoration: none; 
	   font-weight:600; 
	    display: inline-block; 
	   transition: all 0.3s ease; 
	  border: none; 
	   cursor   :  pointer; 
	   font-size:    0.95rem;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pricing-card.featured .btn-pricing   {
    background: white;
    color: #667eea;
}

.pricing-card.featured .btn-pricing:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.faq-section {
   max-width: 1000px;
  margin: 4rem auto;
	padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom :3rem;
  color: #2c3e50;
}

.faq-container {
  display: grid;
   grid-template-columns: 1fr;
       gap: 1.5rem;
}

.faq-item     {
  background: white;
    border-left: 4px solid #667eea;
    padding: 2rem;
   border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
   color     :    #2c3e50;
  margin-bottom: 0.8rem;

}

.faq-item p {
     color  :        #666;
	line-height: 1.8;
        font-size: 0.95rem;
}



.cta-services {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding     :       3rem 2rem;
   text-align: center;
    margin: 4rem 0;
     }

.cta-services h2 {


  font-size: 2.2rem;
  margin-bottom: 1rem;


}



.cta-services p {

  font-size: 1.1rem;
               margin-bottom: 2rem;
					max-width: 700px;
    margin-left: auto;
    margin-right: auto;

}

.thankyou-section {
    min-height: 70vh;
    display: flex;
  align-items: center;
    justify-content: center;
         padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.thankyou-container {
    background: white;
    padding: 3rem;
  border-radius :     12px;
    text-align    :       center;
    max-width: 600px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.success-icon	{
  width: 100px;
    height: 100px;
      margin: 0 auto 1.5rem;
     background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
       border-radius: 50%;
       display: flex;
      align-items: center;
   	justify-content: center;
      color: white;


}

.thankyou-container h1

{
               font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {
               font-size: 1.3rem;
    color:  #3498db;
   margin-bottom: 2rem;
}

.thankyou-content
{
     text-align: left;
  background: #f8f9fa;
  padding    :        2rem;
   border-radius :   8px;
  margin-bottom: 2rem;
     }

.thankyou-content p {
  color:     #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.thankyou-content p:last-child {
   margin-bottom: 0;

}

.phone-number
	{
	font-size: 1.3rem !important;
   color: #667eea;
  font-weight: bold !important;
  margin-top: 1rem !important;
}

.thankyou-actions {
  display: flex;
               gap: 1rem;
  flex-wrap: wrap;
  justify-content    :     center;
}

.btn-return {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color  :        white;
    padding: 1rem 2rem;
  border-radius: 6px;
    text-decoration: none;
   font-weight: 600;
  display: inline-block;
	 transition: all 0.3s ease;
   border: none;
    cursor: pointer;
}

.btn-return:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.next-steps{
	max-width: 1200px;

	  margin: 4rem auto;

	    padding: 3rem 2rem; 

}

.next-steps h2 {
   font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
          color: #2c3e50;
}

.steps-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-box {
  background: white;
  padding: 2rem;
   border-radius: 10px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-box:hover {
	  transform: translateY(-8px);
	
     }

.step-number-box {

  width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   color: white;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
	font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem;

}

.step-box h3 {
    font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.step-box p {
    color: #666;
    font-size: 0.9rem;
   line-height: 1.6;
}

.faq-short {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 3rem 2rem;
        margin: 3rem 0;
}

.faq-short h2 {
	 font-size: 2rem;
  text-align: center;
               margin-bottom: 2.5rem;
   color:    #2c3e50;
}

.faq-grid {

    max-width: 1000px;
  margin :0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1.5rem; 
	
}

.faq-box {
   background: white;
    padding: 1.5rem;
  border-radius    :      8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    font-size: 1rem;
	color     :        #2c3e50;
  margin-bottom: 0.8rem;
}

.faq-box p {
    color: #666;
	font-size: 0.9rem;
      line-height: 1.6;
}

.social-proof  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	  padding: 4rem 2rem;
	    text-align: center;
}

.social-proof h2 {
  font-size: 2.2rem;
    margin-bottom   :  1rem;
}

.social-proof p {
   font-size: 1.1rem;
  margin-bottom: 3rem;
   max-width:700px;
         margin-left: auto;
    margin-right: auto;
}

.stats-grid  {
                    max-width:      1000px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 2rem;

}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
  font-weight    : bold;
  margin-bottom: 0.5rem;
}

.stat-label {
     font-size: 1rem;
   opacity  : 0.9;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-return,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .faq-grid,
    .stats-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
}.policySection  {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 200px); 
	
}

.policyContainer {
  max-width: 900px;
   margin: 0 auto;
               text-align: left;
   background: white;
                    padding: 3rem;
     border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policyContainer h1 {
    font-size: 3rem;
  color: #2c3e50;
       margin-bottom: 2rem;
   font-weight: 700;
    border-bottom: 3px solid #667eea;
	padding-bottom: 1rem;
}  

.policyContainer h2 {
   	 font-size: 1.8rem;
	   color: #2c3e50;
	   margin-top: 2.5rem;
	   margin-bottom: 1rem;
	  font-weight: 600;
	   color: #3498db;


     }

.policyContainer p     {


    color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
     font-size: 1rem;}

.policyContainer p strong	{
  color: #2c3e50;
     font-weight    :   600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}