* {
   margin: 0;
  padding: 0;
 box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   color: #1a1a1a;
   background-color: #ffffff;
    line-height: 1.6; 
	
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
  position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.15);
}

.header-container {
	   max-width  :   1200px;
  margin: 0 auto;
    display: flex;
  justify-content     :     space-between;
   align-items: center;
	padding  :   0 2rem;}

.logo-section {

                    flex: 0 0 auto;
     }

.logo-img {
     height: 45px;
   width: auto;
}

.main-nav {
    display: flex;
   flex: 1;
   align-items     :  center;
					justify-content: flex-end;
}

.nav-list {
  display: flex;
    gap: 2.5rem;
    list-style:     none;
}

.nav-link {
   color: #ffffff;
   text-decoration   :        none;
    font-weight: 500;
			transition :       all 0.3s ease;
    position   :  relative; 
	
}

.nav-link:hover {
   opacity: 0.8; 
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.burger-menu {
   display: none;
	flex-direction: column;
    background: transparent;
	 border: none;
    cursor    : pointer;
    gap: 6px;
    padding: 8px;
}

.burger-menu span {
    background-color    :      #ffffff;
  border-radius: 2px;
    height: 3px;
   width  :  24px;
  transition   :  all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;


}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {


    max-width: 1200px;
   margin: 4rem auto;
   padding: 0 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
     }

.hero-content h1 {
          font-size: 3.5rem;

   line-height: 1.2;

    margin-bottom: 1.5rem;

  color: #1a1a1a;

  background: linear-gradient(135deg, #667eea, #764ba2);

    background-clip:      text;
}

.hero-subtitle {
  font-size: 1.1rem;
    color: #555;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button {

  display: inline-block;
   padding :     1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);


	}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
      width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.features-container {
	margin: 0 auto;
   max-width: 1200px;
}

.features-section h2,
.services-showcase h2,
.testimonials-section h2,
.contact-section h2 {
          font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
   color: #1a1a1a;
}

.features-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
}


.feature-card {

	  background     :       white;
   padding     :   2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;}  

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
   font-size: 2.5rem;
    font-weight: 700;
	 color: #667eea;
   margin-bottom: 1rem;
}

.feature-card h3 {
    font-size  :  1.3rem;
  margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.feature-card p {
   color: #666;
   line-height: 1.7;
}

.services-showcase {
   max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-wrapper {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
	}

.service-item {
   background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
   transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-3px);
}

.service-item img {
               width: 100%;
	  height: 220px;
	  object-fit: cover;
}

.service-info {
	 padding: 1.8rem;
}

.service-info h3		{


        font-size: 1.4rem;
	color: #1a1a1a;
  margin-bottom   :    0.8rem;



}

.service-info p {
  color: #666;

       line-height: 1.7;

	 font-size: 0.95rem;
}

.testimonials-section{

	  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
         padding: 5rem 2rem;
    margin: 4rem 0;
     }

.testimonials-section h2 {
	  color: white;
  margin-bottom: 3rem;}

.testimonials-container {
  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.1);
    padding: 2rem;
   border-radius: 12px;
   border-left: 4px solid #667eea;
  backdrop-filter: blur(10px);
}

.testimonial-text	{


   margin-bottom: 1.5rem;
  color: #ffffff;
    font-size :  1rem;
                    font-style: italic;
    line-height: 1.8;
     }

.testimonial-author {
  color: #aaa;
	 font-size   :0.9rem;
   font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-container {
   max-width: 800px;
   margin: 0 auto;
  text-align:   center;
}

.cta-container h2
	{
     color: white;
  font-size: 2.5rem;
    margin-bottom   :1rem;
     }

.cta-container p {
  color: rgba(255, 255, 255, 0.9);
	       font-size: 1.1rem;
	    margin-bottom:   2rem;
	   line-height: 1.8;
}

.cta-button-large {
  display: inline-block;
   padding     :     1.2rem 3rem;
   background: white;
    color: #667eea;
  text-decoration: none;
    border-radius  : 8px;
               font-weight: 700;
  font-size: 1.05rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-section   {
    max-width    :      1200px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.contact-container {
     max-width: 700px;
   margin: 0 auto;
}

.contact-subtitle   {
  text-align     :   center;
	 color: #666;
	 font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-form {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
		 margin-bottom:        1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
          padding: 1rem;
          border: 2px solid #e0e0e0;
      border-radius: 8px;
     font-family   :    inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
}

.form-input:focus,
.form-textarea:focus {
   outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
     min-height: 120px;
}

.submit-button  {
    width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
        border: none;
 border-radius: 8px;
	font-weight: 600;
  font-size: 1.05rem;
   cursor: pointer;
          transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-button:active
{
  transform: translateY(0);
}

.main-footer {
   background: #1a1a1a;
   color: #aaa;
    padding   : 3rem 2rem 1.5rem;
	margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
   grid-template-columns: auto 1fr;
   gap:   4rem;
  margin-bottom: 2rem; 
	
}

.footer-logo {
    flex   :   0 0 auto;
}

.footer-logo-img {
	height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
    color   :     white;
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a{
    color: #aaa;
               text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact,
.footer-text {
  font-size   :0.95rem;
    line-height: 1.7;
      color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #333;
   padding-top: 1.5rem;
  text-align: center;
               color: #777;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-list.active {
        max-height: 500px;
    }

    .nav-list li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-section,
    .services-showcase,
    .contact-section {
        padding: 3rem 1rem;
        margin: 2rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .services-wrapper,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }
}@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .features-section h2,
    .services-showcase h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
    }
}.services-hero 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align    :center;
  color: white;
}

.services-hero-content h1 
 {
					 font-size: 3rem;
   margin-bottom: 1rem;
   line-height: 1.2;


}

.services-hero-content p {
   font-size    :        1.3rem;
   max-width: 800px;
         margin   :  0 auto;
    opacity: 0.95;
}

.services-detailed-container {
                    max-width: 1200px;
	margin: 0 auto;
   padding  :     0 2rem;
}

.service-detail-item   {
    background: white;
    border-radius: 12px;
    overflow: hidden;
   margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition  : all 0.3s ease;
}

.service-detail-item:hover
	{
     box-shadow: 0 8px 35px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
	}

.service-detail-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding  :2rem;
    color :      white;
	display: flex;
          justify-content: space-between;
  align-items: center; 
	
}

.service-detail-header h2 {


               font-size    :     2rem;
    margin: 0;


}

.service-duration {
  background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
   font-size: 0.95rem;
    font-weight: 500;
}

.service-detail-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 2rem;
   padding     :    2.5rem;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img     {
    width: 100%;
    height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	
}

.service-detail-text h3 {
    font-size: 1.6rem;
  margin-bottom: 1rem;
         color    :   #1a1a1a;
}

.service-detail-text > p {
  color: #666;
   line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features


{
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin: 2rem 0;
}

.feature-block h4  
  {
    font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  border-bottom: 2px solid #667eea;
      padding-bottom: 0.5rem;
}

.feature-list {
  list-style    : none;
    padding  :        0;
}

.feature-list li {
   padding: 0.6rem 0;
    color: #555;
    line-height: 1.6;
    position: relative;
   padding-left   :      1.5rem;
}

.feature-list li:before {
  content: "▸";
	position: absolute;
   left  :   0;
	 color: #667eea;
    font-weight: bold;
}

.service-price-block

{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 1.5rem;
    border-radius: 8px;
  margin-top: 1.5rem;
        border-left: 4px solid #667eea;
}

.price-label {
  font-size: 0.95rem;
  color: #666;
	margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.2rem;
   font-weight: 700;
  color: #667eea;
    margin-bottom: 0.5rem;


}

.price-description {
    color: #999;
   font-size: 0.9rem;
}

.comparison-section {

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
   margin: 4rem 0;


}

.comparison-container {
    margin: 0 auto;
        max-width     :     1200px; 
	
}

.comparison-section h2 {
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.comparison-table-wrapper {

	    overflow-x : auto;}

.comparison-table {
   width:100%;
	    border-collapse: collapse;
	   background: white;
	    border-radius   :   8px;
	   overflow    :       hidden;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:   white;




}

.comparison-table th {
		 padding: 1.2rem;
  text-align: left;
	 font-weight: 600;
}

.comparison-table td {
   color: #555;
				 border-bottom: 1px solid #e0e0e0;
	 padding: 1rem 1.2rem; 
	
}

.comparison-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.comparison-table tbody tr:last-child td {
   border-bottom: none;
}

.faq-section {
    max-width: 1000px;
   margin: 4rem auto;
   padding: 0 2rem;
}

.faq-container {
   max-width: 900px;
   margin: 0 auto;


}



.faq-section h2 {
   text-align: center;
   font-size: 2.5rem;
				 margin-bottom :        3rem;
    color: #1a1a1a; 
	
}

.faq-items {
  display: grid;
   gap: 1rem;
}

.faq-item {
    background: white;
  border-radius: 8px;
   border  :1px solid #e0e0e0;
   overflow: hidden;
  transition: all 0.3s ease;
}



.faq-item:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1); 
	
}

.faq-question
	{


    padding: 1.5rem;
   cursor: pointer;
  display: flex;
  justify-content: space-between;
   align-items: center;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
   transition: all 0.3s ease;
	}

.faq-question:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.faq-question h3 {
   font-size: 1.1rem;
      color: #1a1a1a;
   margin: 0;
}

.faq-toggle {
   	font-size: 1.8rem;
    color: #667eea;
	font-weight: bold;
	transition: transform 0.3s ease;
	}

.faq-item.active .faq-toggle {
     transform: rotate(45deg);
	}

.faq-answer {
   max-height: 0;
  overflow: hidden;
    transition: max-height 0.3s ease;
   background: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
	   padding: 1.5rem;
	  line-height: 1.8;
	   color: #666;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   padding: 4rem 2rem;

	  margin: 4rem 0;

	   text-align: center;
}

.cta-services-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-services-container h2 {
        color: white;
	  font-size :     2.5rem;
	   margin-bottom: 1rem;
}

.cta-services-container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
    margin-bottom: 2rem;
   line-height: 1.8;
}

.thankyou-section {
    min-height: 100vh;
    display    :      flex;
    align-items: center;
	 justify-content: center;
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container {
       max-width: 900px;
       width: 100%;
}

.thankyou-content {
    background:white;
    border-radius  :  16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.success-icon {

  margin-bottom: 1.5rem;
    display  : flex;
   justify-content: center; 

	}

.success-icon svg     {
  color: #2ecc71;
	animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
   font-size:      2.8rem;
  margin-bottom :        0.5rem;
   color: #1a1a1a;
}

.thankyou-subtitle     {
	    font-size: 1.3rem;
	    color: #667eea;
	   margin-bottom :  2rem;
}

.thankyou-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
  padding: 1.5rem; 
   border-radius: 8px; 
        margin: 2rem 0; 
  color: #555; 
     line-height    :       1.8;
}

.thankyou-info p {
	margin: 0.5rem 0;
}

.next-steps	{
  margin: 2.5rem 0;
   text-align: left;
}

.next-steps h2 {
                    font-size: 1.8rem;
       margin-bottom: 1.5rem;
	 text-align: center;
  color: #1a1a1a;

}

.steps-list {
   display: grid;
 gap:     1.2rem;
}

.step-item {
          display: grid;
    grid-template-columns:     60px 1fr;
  gap: 1.5rem;
	 align-items     :    flex-start;
}

.step-number     {
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
  display: flex;
	align-items : center;
	justify-content: center;
                    font-size: 1.5rem;
  font-weight    :        bold;
   flex-shrink: 0;
}

.step-content h3	{
    font-size     : 1.1rem;
  margin-bottom: 0.5rem;
   color: #1a1a1a;
}

.step-content p {
    color:      #666; 
    line-height: 1.6;
}

.helpful-tips {
    margin   :        2.5rem 0;
}

.helpful-tips h2 {
          font-size: 1.8rem;
    margin-bottom: 1.5rem;
   color: #1a1a1a;

}

.tips-grid {
   display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     : 1.5rem;
}

.tip-card		{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 1.5rem;
    border-radius: 8px;
   border-left: 4px solid #667eea;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
   color: #1a1a1a;}

.tip-card p {
    color: #666;
                    font-size: 0.95rem;
     line-height: 1.6;
}

.faq-quick {
   margin: 2.5rem 0;
               text-align: left;
}

.faq-quick h2 {
   font-size: 1.8rem;
    margin-bottom     :    1.5rem;
  text-align: center;
               color: #1a1a1a;
}

.faq-quick-items {
    display: grid;
	gap: 1rem;
}

.faq-quick-item {
	background: white;
   padding: 1.2rem;
    border-radius: 8px;
  border-left: 3px solid #667eea;
}

.faq-quick-item h4 {
  font-size  :1rem; 
  margin-bottom     : 0.5rem; 
   color: #1a1a1a;
}

.faq-quick-item p {
   color  : #666;
    font-size: 0.95rem;
	line-height: 1.6;
    margin: 0;


}

.action-buttons {
   display: grid;
    grid-template-columns:       1fr 1fr;
		gap: 1rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    border-radius: 8px;
   transition: all 0.3s ease;
    padding: 1rem 2rem;
   text-decoration: none;
       font-weight     :       600;
   display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary


{
  background: white;
    color: #667eea;
   border: 2px solid #667eea;
}

.btn-secondary:hover {
	    background: #667eea;
	 color: white;


}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-detail-header h2 {
        font-size: 1.6rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.6rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 1rem;
    }

    .cta-services-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-header h2 {
        font-size: 1.2rem;
    }

    .service-detail-content {
        padding: 1rem;
    }

    .service-detail-image img {
        height: 200px;
        object-fit: cover;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }

    .next-steps h2,
    .helpful-tips h2,
    .faq-quick h2 {
        font-size: 1.3rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.policy-section {

  padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   min-height: 80vh;



}

.policy-container {
   max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.policy-container h1 {
	   font-size: 3rem;
  color :     #1a1a1a;
        margin-bottom:     2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    font-weight: 700;

}

.policy-content {
    background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
	 border-bottom     : 3px solid #667eea;
    color: #1a1a1a;
          font-weight: 600;
        margin-bottom     :  1rem;
	 font-size: 1.8rem;
   margin-top    :   2rem;
  padding-bottom: 0.8rem;
}

.policy-content h2:first-of-type    {
  margin-top: 0;
}

.policy-content p {
      color :#555;
     margin-bottom: 1.5rem;
                       line-height     : 1.9;
      font-size: 1rem;
       text-align: justify;
}

.policy-content p + p {
   margin-top: 1rem;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-content {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-content h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
    }
}