* {
	margin: 0;
    padding: 0;
    box-sizing   :        border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

html{


    scroll-behavior : smooth;


}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding :  1rem 0;
  position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {


   max-width: 1200px;

   margin   :      0 auto;

  padding: 0 20px;

    display: flex;

    justify-content: space-between;

   align-items: center;


}

.nav-logo img {
    height: 50px;
      width   :       auto;
      display: block;
     filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
    gap  :  2rem;
  align-items: center;


}

.nav-link {
    color   :    #ecf0f1;

	    text-decoration: none;

	  font-weight: 500;

	  transition: all 0.3s ease;

	  position: relative;
}



.nav-link::after


{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
    width: 0;
   height   : 2px;
   background:        #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
     width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
   cursor: pointer;
}

.burger-line {
	width: 25px;
  height: 3px;
    background: #ecf0f1;
  -webkit-transition     :    all 0.3s ease;
    margin: 5px 0;
   transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
}

.hero-section {
    max-width: 1200px;
   margin   :        0 auto;
	padding   :80px 20px;
  display   :   grid;
    grid-template-columns: 1fr 1fr;
          gap: 4rem;
    align-items: center; 
	
}

.hero-content h1  
  {
        font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
   color: #2c3e50;
   line-height: 1.2;
}

.hero-content p     {
    font-size: 1.1rem;
    color: #555;
       margin-bottom  : 2rem;
  line-height  :1.8;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
	padding: 15px 35px;
    border-radius: 50px;
   text-decoration: none;
  font-weight:   600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}  

.hero-image img {
   width: 100%;
    height :     auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-container {
    max-width   :  1200px;
   margin: 0 auto;
   padding: 0 20px;
}



.features-section {
      background: white;
    padding: 80px 20px;}

.features-section h2 {
	 text-align: center;
       font-size: 2.5rem;
       margin-bottom: 3rem;
       color: #2c3e50;
}

.features-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

}

.feature-card {
  background: #f8f9fa; 
    padding: 2rem; 
  border-radius: 12px; 
      transition: all 0.3s ease; 
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color     :    #3498db;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.feature-icon {
        width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
   display: flex;
    align-items :    center;
   justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.feature-card h3	{
    font-size: 1.4rem;

		 margin-bottom: 1rem;

  color: #2c3e50;
}

.feature-card p {
    line-height     :  1.7;
  color: #666;
}

.services-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 80px 20px;
}

.services-overview h2


{
  text-align: center;
   				 font-size: 2.5rem;
      margin-bottom: 3rem;
     color: #2c3e50;
}

.services-list

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
}

.service-item {
	 background: white;
   border-radius: 12px;
    overflow: hidden;
    transition:  all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-item img


{
   width: 100%;
   height: 200px;
	 object-fit: cover;
				 display   :        block;
}

.service-item h3 {
        font-size: 1.3rem;
	   padding   : 1.5rem 1.5rem 0.5rem;
	       color    :        #2c3e50;
}

.service-item p {
    padding: 0 1.5rem 1.5rem;
   color: #666;
  line-height    :    1.6;
}

.cta-section {

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
	padding: 60px 20px;
   text-align: center;


}



.cta-section h2 {
   font-size: 2.2rem;
        margin-bottom  :        1rem;
}

.cta-section p {
   font-size  :  1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-large {
    padding: 18px 45px;
       font-size: 1.1rem;
      background: white;
     color: #3498db;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
     }

.cta-large:hover  {
	 background: #ecf0f1;
  transform: translateY(-3px);
	
}

.benefits-section
	{
    background: white;
	padding: 80px 20px;
}

.benefits-section h2 {
   text-align     :    center;
   font-size :      2.5rem;
  margin-bottom: 3rem;
               color: #2c3e50;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.benefit-item {
   padding: 2rem;
   border-left: 5px solid #3498db;
   background: #f8f9fa;
    border-radius: 8px;
   transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.benefit-number {
	   font-size: 2.5rem;
	 font-weight: 700;
    color: #3498db;
   margin-bottom: 0.5rem;


     }

.benefit-item h3 {
  font-size: 1.2rem;
               margin-bottom :    0.8rem;
    color: #2c3e50;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

.contact-section  
  {
   background: #f8f9fa;

   padding :    80px 20px;
}

.contact-section h2 {
  text-align :      center;
     font-size: 2.5rem;
     margin-bottom: 1rem;
          color: #2c3e50;
}

.contact-intro {
	text-align: center;
    max-width     :    600px;
 margin: 0 auto 3rem;
       color: #666;
    font-size: 1.05rem;
  line-height: 1.7;
}

.contact-form  {
	    max-width    :       600px;
  margin: 0 auto;
   background    :       white;
  padding   :   2.5rem;
   border-radius     :     12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	}

.form-group {
   margin-bottom: 1.5rem;
}  

.form-group label {
   display     :      block;
    margin-bottom: 0.5rem;
 font-weight: 600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   font-family :       inherit;
   transition: all 0.3s ease;
				 width: 100%;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  color: #2c3e50;
   padding  :   12px 15px;
    font-size: 1rem; 
	
     }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color  :   #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
                    min-height: 120px;
  resize  :  vertical; 
	
}

.form-submit {
  width: 100%;
          padding: 14px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: #ecf0f1;
   padding: 60px 20px 20px;
}

.footer-content {
	 max-width  : 1200px;
  margin     :0 auto;
  display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2.5rem;
  margin-bottom   :2rem;


}

.footer-section h4 {
    font-size   : 1.1rem;
	margin-bottom: 1.5rem;
   color: white;
}

.footer-logo {
  height: 60px;
               width: auto;
  display :        block;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-branding {
   display: flex;
   flex-direction     :   column; 
	
}

.footer-links ul,
.footer-services ul {

    list-style: none;
	}

.footer-links li,
.footer-services li {


   margin-bottom: 0.8rem;
	}

.footer-links a,
.footer-services a


{
  color: #bdc3c7;
  text-decoration   :     none;
       transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover 
 {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 1rem;

	   color: #bdc3c7;

	   line-height    :     1.8;}

.footer-contact strong {
    color: #ecf0f1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	  padding-top: 2rem;
	  text-align: center;
	   color  :    #95a5a6;
		 max-width:        1200px;
	    margin    :        0 auto;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #34495e;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        align-items: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-burger {
        display: flex;
    }

    .burger-line.active:nth-child(1) {
        transform: rotate(45deg) translateY(15px);
    }

    .burger-line.active:nth-child(2) {
        opacity: 0;
    }

    .burger-line.active:nth-child(3) {
        transform: rotate(-45deg) translateY(-15px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-section h2,
    .services-overview h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .services-list,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .features-section h2,
    .services-overview h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
  padding: 80px 20px;
        text-align   :       center;
}

.hero-content-services h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
   font-weight: 700;
}

.hero-content-services p {
	   font-size: 1.2rem;
    opacity: 0.9;
   max-width: 700px;
   margin: 0 auto;
	}

.services-detailed {
 padding: 80px 20px;
   background :   white;

}

.service-detailed-item {
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  margin-bottom   : 6rem;
}

.service-detailed-item.service-reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detailed-item.service-reverse .service-detail-image {

		order: 2;

}

.service-detailed-item.service-reverse .service-detail-content {
    order: 1;
}

.service-detail-image img {
	width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

.service-detail-content h2 {
   font-size: 2.2rem;
   color: #2c3e50;
	margin-bottom: 1rem;
   font-weight: 700;
}

.service-detail-content > p {
  font-size  :1.05rem;
          color: #666;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size   :  1.3rem;
  color :    #2c3e50;
   margin-bottom: 1rem;
       margin-top: 1.5rem;
}

.service-features {

		 list-style: none;
	margin-bottom: 1.5rem;}

.service-features li {
    padding: 0.8rem 0;
	padding-left:30px;
    position: relative;
   color: #555;
	 line-height: 1.6;
	
}

.service-features li::before {
  content: '✓';
	  position: absolute;
		 left: 0;
	    color: #3498db;
		font-weight: bold;
	  font-size     :1.2rem;
}

.service-meta   {
    flex-wrap: wrap;
	padding-top: 1.5rem;
   border-top: 2px solid #ecf0f1;
               display: flex;
	margin-top: 2rem;
    gap: 2rem;
}

.service-duration,
.service-format {
   font-size: 0.95rem;
  color: #666;
  display  :      flex;
    align-items :    center;
}

.service-duration::before,
.service-format::before {
  content: '';
  width   :      8px;
    height: 8px;
   background: #3498db;
    border-radius: 50%;
  margin-right: 0.8rem;
}

.pricing-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 80px 20px;
}

.pricing-section h2 {
   text-align: center;
  font-size :     2.5rem;
                    margin-bottom: 3rem;
	color: #2c3e50;
}

.pricing-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap     :        2rem;
  max-width: 1200px;
    margin: 0 auto;


}

.pricing-card {
   background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition     :all 0.3s ease;
  position: relative;
    display: flex;
    flex-direction:   column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}



.pricing-card.pricing-featured {

		border: 3px solid #3498db;
  transform: scale(1.05);


}

.pricing-card.pricing-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
               position: absolute;
    top: -12px;
    left   :     20px;
   background: #3498db;
    color: white;
    padding: 5px 15px;
	 border-radius: 20px;
   font-size:  0.85rem;
    font-weight: 600;


}

.pricing-card h3 {
  font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.pricing-price
{
	    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
   margin-bottom: 1.5rem;


}

.pricing-list {


   list-style     :     none;
	 margin-bottom: 2rem;
   flex-grow    : 1;


}

.pricing-list li {
    padding: 0.7rem 0;
      padding-left: 25px;
  position: relative;
    color: #666;
 line-height: 1.6;
}

.pricing-list li::before {
  content: '→';
 position: absolute;
    left: 0;
    color: #3498db;
	 font-weight: bold;
}

.pricing-cta {
	         display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color     :     white;
	padding: 12px 25px;
  border-radius: 8px;
   text-decoration: none;
   text-align: center;
   font-weight: 600;
  transition  :        all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
     }

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);


}

.comparison-section{
   background: white;
   padding: 80px 20px;
}

.comparison-section h2 {

   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;


}

.comparison-table {
    max-width: 1000px;
  margin: 0 auto;
                    overflow-x: auto;
}

.comparison-table table {
    width :        100%;
  border-collapse: collapse;
    background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
}

.comparison-table th {
  padding: 1.5rem;
   text-align: left;
   font-weight: 600;
  border: 1px solid #ecf0f1;
}

.comparison-table td {
    padding: 1.5rem;
  border   :    1px solid #ecf0f1;
   color     :      #555;
}

.comparison-table tbody tr:nth-child(even) {
         background:      #f8f9fa;
}

.comparison-table tbody tr:hover {
  background: #ecf0f1;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 80px 20px;
}  

.faq-section h2 {
               text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
               max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
                    background:  white;
  padding  :      2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size  :  1.1rem;
  color: #2c3e50;
        margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
	color: #666;
  line-height: 1.7;
}

.thankyou-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	padding: 80px 20px;
  min-height: calc(100vh - 200px);
    display  :flex;
	align-items: center;
}

.thankyou-content {
	background: white;
   padding: 4rem 3rem;
    border-radius   : 15px;
    text-align   :       center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon img {
    width: 80px;
			height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 15px;
  border-radius: 50%;
  filter: brightness(0) invert(1);
}

.thankyou-content h1   {
	 font-size: 2.5rem;
  color  :  #2c3e50;
    margin-bottom: 1rem;
  font-weight:    700;
}


.thankyou-message {
     font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
    margin-bottom: 2.5rem;
	}

.thankyou-info {
   display: grid;
	  grid-template-columns: 1fr 1fr;
	   gap: 2rem;
	    margin-bottom: 2.5rem;
	       text-align: left;
}

.info-item h3 {
  color: #2c3e50;
	margin-bottom: 0.8rem;
   font-weight   :600;
  font-size: 1.1rem;
}

.info-item p {
   color: #666;
    font-size: 0.95rem;
  line-height: 1.6;
}

.thankyou-actions {
   display: flex;
    gap: 1rem;
   justify-content: center;
    margin-bottom: 2.5rem;
}

.action-button {
    font-weight: 600; 
   transition: all 0.3s ease; 
   border-radius: 8px; 
  display: inline-block; 
  text-decoration: none; 
    padding: 12px 30px;
}

.action-primary  
  {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); 
	
}

.action-primary:hover  {

  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);

}

.action-secondary {
        background: #ecf0f1;
      color: #2c3e50;
           border: 2px solid #3498db;
}

.action-secondary:hover {
    background:      #3498db;
   color: white;
}

.thankyou-timeline {
    margin-top: 2.5rem;
	padding-top: 2.5rem;
	 border-top: 2px solid #ecf0f1;
    text-align: left;
}

.thankyou-timeline h3 {
   text-align: center;
  font-size: 1.3rem;
  color: #2c3e50;
                    margin-bottom: 2rem;
}

.timeline {
                    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap  :    1.5rem;
}

.timeline-item {
    display: flex;
  flex-direction: column;
  align-items: center;
   text-align: center;
}

.timeline-marker {
	width: 50px;
	height: 50px;
    background: #ecf0f1;
          border    :  3px solid #3498db;
   border-radius  :       50%;
   display: flex;
  align-items     :center;
    justify-content: center;
        font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
       font-size: 1.2rem;
}

.timeline-item.timeline-active .timeline-marker {
  color: white;
    background: #3498db;
}

.timeline-content strong {
    display: block;
   font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.85rem;
   color: #666;
}

.testimonial-preview {
   margin-top: 2rem;
       padding: 1.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color     :white;
	border-radius     :      10px;}

.testimonial-preview h3 {
   color: white;
   margin-bottom: 0.8rem;


}

.testimonial-preview p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero {
        padding: 50px 20px;
    }

    .hero-content-services h1 {
        font-size: 2rem;
    }

    .hero-content-services p {
        font-size: 1rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detailed-item.service-reverse .service-detail-image {
        order: 1;
    }

    .service-detailed-item.service-reverse .service-detail-content {
        order: 2;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.pricing-featured {
        transform: scale(1);
    }

    .pricing-card.pricing-featured:hover {
        transform: translateY(-10px);
    }

    .comparison-table table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-info {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .services-hero {
        padding: 40px 20px;
    }

    .hero-content-services h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-section h2,
    .comparison-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .thankyou-content {
        padding: 1.5rem 1rem;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }
}.policySection {


	 padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 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.08);
	
}

.policyContainer h1 {
  font-size: 2.8rem;
  color     :  #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
	 padding-bottom: 1rem;
   border-bottom: 3px solid #3498db;
}

.policyContainer h2 {
    font-size     :1.6rem;
   color: #2c3e50;
   margin-bottom: 1rem;
	margin-top :       2rem;
  font-weight: 600;
}



.policyContainer p {
  color: #555;
  margin-bottom: 1.5rem;
   line-height   :  1.8;
    font-size: 1rem;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
} @media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}