* {
   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; 

}



.nav-primary {
  background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
   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: 1rem 2rem;
  display: flex;
   justify-content: space-between;
  align-items: center;
}

.nav-logo-section {
    flex: 0 0 auto;
}

.nav-logo {
  height  : 40px;
   width: auto;
}

.nav-menu		{
  display: flex; 
	   list-style: none; 
	  gap :   2rem;
}

.nav-link {
	color: #ecf0f1;
    text-decoration    :   none;
   font-weight :       500;
   transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link:hover {
      color: #3498db;
     }

.nav-burger {
	 display: none;
	 flex-direction: column;
	 background:       none;
   border: none;
   cursor   :     pointer;
                    gap    :6px;
}

.burger-line {
	 width  :        25px;
   height: 3px;
 background-color:        #ecf0f1;
   transition: all 0.3s ease;
   border-radius: 2px;
}

.nav-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-burger.active .burger-line:nth-child(2) {

   opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.mobile-open {
  display: flex;
    flex-direction: column;
        position: absolute;
   top: 60px;
	left: 0;
    right: 0;
  background: linear-gradient(180deg, #1a5f7a 0%, #2c3e50 100%);
    padding: 1.5rem;
 gap: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-section {
	display     :grid;
         grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    max-width: 1200px;
   margin: 0 auto;
	 padding: 4rem 2rem;
}

.hero-content h1    {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
   color: #1a5f7a;
   margin-bottom: 1.5rem;
}

.hero-subtitle  
  {

	    font-size: 1.2rem;
	    color :       #555;
	  margin-bottom: 2rem;
	    line-height: 1.5;


}

.cta-button  
  {
	 display    :    inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    padding: 0.9rem 2.2rem;
  border-radius: 5px;
  text-decoration: none;
    font-weight     :600;
   transition: all 0.3s ease;
    border: none;
	cursor    :       pointer;
  font-size: 1rem;
}


.cta-button:hover     {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hero-image {
   width: 100%;
     height: auto;
  border-radius    :  8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-section {
	   background-color: #f8fafb;
		padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto;}

.about-container h2,
.benefits-section h2,
.services-preview-section h2,
.cta-section h2,
.contact-section h2 {
    font-size: 2.5rem;
		color: #1a5f7a;
	   margin-bottom: 2rem;
	    text-align: center;
}

.about-container p {
	 font-size: 1.05rem;
    color: #34495e;
    margin-bottom   : 1.5rem;
  line-height: 1.8;
	text-align:       justify;
}

.benefits-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  padding: 4rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
}



.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap:    2rem;
   margin-top: 2rem;
}

.benefit-card {
	background     :        white;
                    padding     :  2rem;
   border-radius :        8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   text-align :   center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.benefit-icon {
  display: flex;
  justify-content: center;
                    margin-bottom: 1rem;
}

.svg-icon {
    width: 50px;
  height: 50px;
	}


.svg-icon {
       stroke: #3498db; 
		fill: none; 
		stroke-width: 2; 
	   stroke-linecap: round; 
	    stroke-linejoin: round; 
	  transition  :all 0.3s ease;
}

.benefit-card:hover .svg-icon {
   stroke: #2980b9;
  filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.4));
}

.benefit-card h3 {
  font-size: 1.3rem;
    color: #1a5f7a;
   margin-bottom: 1rem;
}

.benefit-card p {


  font-size: 0.95rem;
  color:   #555;
   line-height: 1.6;}

.services-preview-section {
  background-color: #ffffff;
   padding: 4rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.services-showcase {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
     margin:    2rem 0;


}

.service-item {
     background: white;
   border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.09);
     transition: all 0.3s ease;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(26, 95, 122, 0.2);
}

.service-image {
    object-fit: cover;
               height: 220px;
   width: 100%;
}  

.service-item h3 {
               font-size: 1.2rem;
   color: #1a5f7a;
  padding: 1.5rem 1.5rem 0.8rem 1.5rem; 

}

.service-item p {
    color: #666;
   font-size: 0.95rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
   line-height: 1.5;
}

.service-link {
  display: inline-block;
  color: #3498db;
	 text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
        padding:  0.5rem 0;
	border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-link:hover {

	    border-bottom-color    :  #3498db; 
	
     }

.cta-section {
	  background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
  color: white;
    padding: 4rem 2rem;
   text-align: center;
    max-width: 1200px;
   margin: 0 auto;
  border-radius: 8px;


}

.cta-content h2 {
  color :        white;
  font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.1rem;
      margin-bottom: 2rem;
    line-height: 1.6;
	
}

.cta-button-large

{
  display: inline-block;
   background: #3498db;
   color: white;
   padding: 1.1rem 2.8rem;
   border-radius: 5px;
     text-decoration: none;
 font-weight: 700;
   font-size :      1.1rem;
   transition: all 0.3s ease;
}


.cta-button-large:hover {
  background: #2980b9;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.contact-section     {
		background-color    :  #f8fafb;
   padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;


}

.contact-container {
  max-width: 700px;
   margin: 0 auto;}

.contact-form {
	background: white;
        padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   margin-top: 2rem;
	
}

.form-group {
  margin-bottom    :   1.5rem;
}



.form-group label {
	    display     :        block;
      margin-bottom : 0.5rem;
   color: #1a5f7a;
               font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.8rem 1rem;
   border: 1px solid #ddd;
    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: #3498db;
     box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea  
  {
  resize: vertical;
	min-height: 130px;
}

.submit-button  {
  width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color    :     white;
   border  : none;
   border-radius: 5px;
    font-size: 1rem;
       font-weight: 700;
               cursor: pointer;
       transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer-main {
  background: linear-gradient(180deg, #1a5f7a 0%, #0d3a4a 100%);
   color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-container

{
  max-width: 1200px;
    margin: 0 auto;
	display: grid;
    grid-template-columns: auto 1fr;
   gap: 3rem;
   margin-bottom: 2rem;
}

.footer-logo-section {
   	display: flex;
   align-items:     flex-start; 
	

}

.footer-logo {
	height: 45px;

    width: auto;

}

.footer-content {
          display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap: 2rem;
}

.footer-column h4 {
         color: #3498db;
  font-size: 1.1rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.footer-menu {
   list-style: none;
}



.footer-menu li	{
  margin-bottom: 0.7rem;
}

.footer-menu a {
    color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
    color: #3498db;
}

.footer-address {
    line-height: 1.6;
   font-size: 0.95rem;
 margin-bottom: 1rem;
}

.footer-phone {
    font-weight: 600;
   color: #3498db;
    font-size: 1rem;
}

.footer-column p {
  line-height: 1.6;
   font-size: 0.95rem;
   color  :       #bdc3c7;
}

.footer-bottom {
     border-top: 1px solid rgba(52, 152, 219, 0.3);
	padding-top : 1.5rem;
   text-align: center;
   color: #95a5a6;
   font-size   :     0.9rem;
   max-width :1200px;
    margin: 0 auto;

     }@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-container h2,
    .benefits-section h2,
    .services-preview-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .about-container h2,
    .benefits-section h2,
    .services-preview-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
   color: white;
   padding: 5rem 2rem;
    text-align: center;
} 

.services-hero-content h1  
  {
    font-size: 2.8rem;
    font-weight: 700;
  margin-bottom: 1rem;
}



.services-hero-content p {
  font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto;
   line-height:  1.6; 

}

.services-main 
 {
   padding: 4rem 2rem;
   margin: 0 auto;
	 max-width: 1200px;
}

.services-container {

  flex-direction: column;
  gap: 4rem;
  display: flex;
     }

.service-detailed {


   display     :   grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
               align-items: center;


}

.service-detailed.alt {
  grid-template-columns: 1fr 1fr;
}

.service-detailed.alt .service-detail-image {
       order   : 2;}

.service-detailed.alt .service-detail-content {
  order: 1;
}

.service-detail-image {
  display: flex;
          justify-content: center;
}

.service-detail-img {

	   width: 100%;
	max-width:       500px;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
   transition    :    transform 0.3s ease;
}

.service-detailed:hover .service-detail-img
	{
  transform: scale(1.03);
}

.service-detail-content h2 {
   font-size: 2rem;
    color: #1a5f7a;
	 margin-bottom: 1.2rem;

}

.service-detail-content p {
   font-size     :     1rem;
	color   : #555;
    line-height    :  1.8;
   margin-bottom: 1.5rem;
}

.service-features {
     list-style: none; 
   margin: 1.5rem 0; 
  padding: 0;
}

.service-features li		{

		 padding: 0.6rem 0;
    padding-left: 1.8rem;
  position: relative;
   color: #34495e;
  font-size: 0.95rem;


}

.service-features li::before {
  content: "✓";
   position: absolute;
    left     :  0;
   color: #3498db;
  font-weight: bold;
  font-size: 1.1rem; 

}

.service-duration,
.service-investment {
   margin-top: 1.5rem;
  font-weight: 600;
     color: #2c3e50;
  font-size: 0.95rem;
}

.service-investment {
	color :        #27ae60;
}

.packages-section {
  background: linear-gradient(180deg, #f8fafb 0%, #eef2f7 100%);
	padding: 4rem 2rem;
  max-width: 1200px;
   margin    :0 auto;}

.packages-section h2 {
       font-size  :2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 3rem;
     }

.packages-grid {
    display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card  
  {
  background   :     white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
   position    :    relative;
}

.package-card:hover		{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.package-card.featured {
   border: 2px solid #3498db;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-10px); 
	
}

.package-badge

{
    position: absolute; 
	    top: -12px; 
	    left: 50%; 
	  transform: translateX(-50%); 
	  background: #3498db; 
	  color: white; 
	  padding: 0.5rem 1.2rem; 
	     border-radius :  25px; 
	   font-size :0.8rem; 
		font-weight: 700; 
	   text-transform: uppercase;
}

.package-card h3 {
	font-size: 1.5rem;
  color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.package-desc {
  color :#888;
                    font-size: 0.9rem;
   margin-bottom: 1.5rem;
}

.package-list {
   list-style: none;

	  margin: 1.5rem 0;

	    padding: 0;
}

.package-list li


{
          padding: 0.6rem 0;
 padding-left: 1.5rem;
    position: relative;
   color: #555;
   font-size: 0.95rem; 
	
}

.package-list li::before {
    color: #3498db;
	font-weight: bold;
  left: 0;
  content: "•";
  position: absolute;
}

.package-price {
    font-size    :      1.8rem;
 color: #27ae60;
		font-weight: 700;
  margin-top: 1.5rem;
    padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.faq-section {
    max-width: 1200px;
	 background: white;
               margin: 0 auto;
        padding: 4rem 2rem;
}

.faq-container h2 {

   font-size: 2.5rem;
  color: #1a5f7a;
  text-align  :  center;
					margin-bottom: 3rem; 

     }

.faq-items {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}



.faq-item {
	background: #f8fafb;
  padding   : 1.8rem;
 border-radius: 8px;
	border-left: 4px solid #3498db;
        transition:      all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
	font-weight   :       700;
  font-size: 1.05rem;
    color: #1a5f7a;
   margin-bottom :        0.8rem;
}

.faq-answer     {
	color: #555;
    font-size: 0.95rem;
	line-height: 1.6;
}


.cta-services {
  background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
          color: white;
   padding: 3rem 2rem;
   text-align: center;
		max-width: 1200px;
      margin: 0 auto;
  border-radius: 8px;
}

.cta-services h2 {
	font-size: 2rem;
                    color: white;
    margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.cta-button-services {
	          display: inline-block;
    background: #3498db;
  color: white;
    padding: 1rem 2.5rem;
   border-radius     :      5px;
      text-decoration :  none;
   font-weight     :  700;
   font-size: 1rem;
   transition: all 0.3s ease;


}

.cta-button-services:hover {
	background: #2980b9;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.thankyou-section	{
  background: linear-gradient(135deg, #f8fafb 0%, #eef2f7 100%);
	padding: 5rem 2rem;
  min-height: 70vh;
    display: flex;
    align-items   :     center;
  justify-content: center;
	 max-width: 1200px;
   margin:     0 auto;
}

.thankyou-container {
   background: white;
	padding: 3rem;
        border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
   max-width: 700px;
    width   :       100%;
  text-align: center;
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
   height: 80px;
    stroke: #27ae60;
    fill: none;
    stroke-width    :       2;
      stroke-linecap: round;
    stroke-linejoin: round;
   animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
	 font-size: 2.2rem;
  color: #1a5f7a;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  margin-bottom: 2rem;
   color: #27ae60;
   font-weight: 600;
   font-size: 1.1rem;
	
}

.thankyou-content {
    text-align: left;
    margin: 2rem 0;
}

.thankyou-content p {
	 color: #555;
    font-size: 0.95rem;
	line-height: 1.7;
  margin-bottom: 1rem;
}

.thankyou-info-box {
   background:    #f0f4f8;
    padding: 2rem;
    border-radius: 8px;
	margin: 2rem 0;
    border-left: 4px solid #3498db;

}

.thankyou-info-box h3 {
	    color: #1a5f7a;
    margin-bottom: 1rem;
	font-size: 1.1rem;
	}

.thankyou-steps {
   list-style: none;
    padding: 0;
}

.thankyou-steps li {
	   padding-left: 3rem;
   position: relative;
	font-size: 0.95rem;
  padding     :     0.8rem 0;
	line-height: 1.5;
  color: #555;
	}

.step-number {
    position: absolute;
    left: 0;
                    top: 0.8rem;
  background: #3498db;
  color: white;
     width: 28px;
       height    :        28px;
   border-radius:       50%;
   display: flex;
         align-items  :     center;
  justify-content  :     center;
	 font-weight  :   bold;
       font-size: 0.9rem;
	
}

.thankyou-note {
  background :      #fff9e6;
  padding: 1rem;
    border-radius: 5px;
  margin-top: 1.5rem;
     color: #666;
   font-size: 0.9rem;
    text-align: center;


}

.thankyou-buttons {


  display: flex;
   gap: 1rem;
  justify-content: center;
   margin-top: 2rem;
	flex-wrap: wrap; 
	
	}

.button-primary,
.button-secondary {
	  padding: 0.9rem 1.8rem;
    text-decoration: none;
   font-weight   :   600;
   border-radius  :     5px;
	display: inline-block;
    transition  :       all 0.3s ease;
     }

.button-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.button-secondary {
	  background: white;
	color: #3498db;
  border: 2px solid #3498db;


}

.button-secondary:hover {
    background: #f0f4f8; 
	
}

.next-steps-section {
   background: white;
    padding  :   4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.next-steps-container h2 {
  font-size: 2.2rem;
    color: #1a5f7a;
    text-align: center;
 margin-bottom: 3rem;
}

.next-steps-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card
{
    background: #f8fafb;
    padding: 2rem;
     border-radius: 8px;
    text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
	background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.step-icon {

	    margin-bottom:  1rem;


}

.step-card-icon {

   width: 60px;
       height: 60px;
  stroke: #3498db;
   fill    :       none;
    stroke-width: 2;
  stroke-linecap:   round;
   stroke-linejoin: round;
       transition: all 0.3s ease;
}

.step-card:hover .step-card-icon {
  stroke: #2980b9;
  filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.4));
}

.step-card h3 {

  font-size: 1.1rem;
   color: #1a5f7a;
    margin-bottom : 0.8rem;
}

.step-card p {
  font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

.faq-quick-section {

	  background: linear-gradient(180deg, #f8fafb 0%, #eef2f7 100%);
  padding:      4rem 2rem;
	 max-width    :    1200px;
        margin: 0 auto;
     }

.faq-quick-container h2 {
		font-size: 2.2rem;
   color: #1a5f7a;
   text-align: center;
  margin-bottom: 3rem;
}

.faq-quick-items {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}



.faq-quick-item {
	    background: white;
		padding: 1.5rem;
	    border-radius: 8px;
	  box-shadow: 0 3px 15px rgba(0,0,0,0.06);}

.faq-quick-item h4 {
       color: #1a5f7a;
   margin-bottom: 0.8rem;
               font-size: 1rem;}

.faq-quick-item p {
	 color: #666;
  font-size: 0.9rem;
   line-height: 1.6;


}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detailed,
    .service-detailed.alt {
        grid-template-columns: 1fr;
    }

    .service-detailed.alt .service-detail-image,
    .service-detailed.alt .service-detail-content {
        order: auto;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .packages-section h2,
    .faq-container h2,
    .next-steps-container h2,
    .faq-quick-container h2 {
        font-size: 1.8rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .packages-section h2,
    .faq-container h2,
    .next-steps-container h2,
    .faq-quick-container h2 {
        font-size: 1.5rem;
    }

    .package-card,
    .step-card,
    .faq-quick-item {
        padding: 1.2rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }
}.policySection {
   padding: 80px 2rem;

   background     :      #f8f9fa;
}

.policyContainer {
         max-width: 800px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h2	{
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.policyContainer p

{
    color: #7f8c8d; 
	    margin-bottom: 1.5rem; 
			 line-height  : 1.7; 
	  font-size:       1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}