footer {
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
	color   :    white;
  padding:   3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-content  
  {
  max-width    :1200px;
      margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
   padding: 1rem 0;
	
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
   height: 50px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
   font-size: 1.1rem;
   margin-bottom  :1rem;
   color: #f39c12;
    font-weight    :   600;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
    line-height: 1.6; 

} 

.footer-links {
  list-style :      none;
  padding: 0;
}

.footer-links li {
         margin-bottom: 0.75rem;
}

.footer-links a {

  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
	transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover		{
   color: #f39c12;
  padding-left: 0.5rem;
}

.footer-contact {
   font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height :       1.8;
}

.footer-contact a {
	 color: #f39c12;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
  text-decoration: underline;
}

.footer-hours {
  font-size     :  0.95rem;
  color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
} 

.footer-bottom    {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	  padding-top: 1.5rem;
	  text-align  :     center;
	  color: rgba(255, 255, 255, 0.6);
	  font-size: 0.9rem;

}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding: 0.5rem 0;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}.service-detail 
 {

   background   :       white;
    padding: 2.5rem;
    margin-bottom: 2rem;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	 border-left: 5px solid #667eea;
  transition   :  all 0.3s ease;
	}

.service-detail:hover {

  box-shadow: 0 10px 25px rgba(0,0,0,0.12); 
	  transform: translateX(5px);
	}


.service-detail:nth-child(even) {
      border-left-color: #f39c12;


}

.service-detail:nth-child(3) {

	  border-left-color: #2ecc71;


}

.service-detail:nth-child(4) {
	 border-left-color: #e74c3c;
}

.service-detail:nth-child(5) {
   border-left-color    :     #3498db;


}

.service-detail:nth-child(6)

{
  border-left-color    :#9b59b6;
}

.benefits-list {
   list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
   padding: 0.5rem 0 0.5rem 2.5rem;
   color: #666;
    position: relative;
   margin-bottom: 0.8rem;
  line-height: 1.6;
    transition: all 0.3s ease;
}

.benefits-list li:before
	{

  content: "✓";
  position: absolute;
   left: 0;
   color: #2ecc71;
    font-weight: bold;
    font-size: 1.3rem;
   top: -2px;

}

.benefits-list li:hover {
   padding-left    : 2.8rem;

 color: #2c3e50;
}

.service-duration {

  background: linear-gradient(135deg, #f0f3f7 0%, #e8ecf1 100%);
 padding: 1.5rem;
   border-radius: 8px;
    margin-top: 1.5rem;
   color: #555;
    border-left: 4px solid #667eea;}

.service-duration strong {
       color: #667eea;
       font-weight: 600;
}

.pricing-grid {
  display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
	 margin-top: 3rem;
}

.pricing-card {


        background :     white;
	    padding: 2.5rem;
	   border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	     text-align: center;
	  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	    border-top: 4px solid #667eea;
	   position: relative;
	    overflow: hidden;
     }

.pricing-card:before {
  content: "";
    position: absolute;
  top: 0;
    left: -100%;
	width: 100%;
    height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;

}

.pricing-card:hover:before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-top-color: #f39c12;
}

.pricing-card h4 {
    font-size: 1.4rem;
   	color: #1a2332;
       margin-bottom: 1rem;
      font-weight: 700;
}

.pricing-card .price {
   font-size: 2.5rem;
		 color: #667eea;
   font-weight: 700;
   margin: 1.5rem 0 0.5rem;
}

.pricing-card .price-info {


   font-size: 0.9rem;
  color: #999;
    margin-bottom: 2rem;
     }

.pricing-card ul {


	list-style: none;
  text-align: left;
    margin: 2rem 0;
}

.pricing-card ul li {
	 padding: 0.75rem 0;
   padding-left: 1.5rem;
   border-bottom: 1px solid #f0f3f7;
  position :       relative;
   color: #666;
}


.pricing-card ul li:before {
  content: "•";

	    position: absolute;

	  left: 0;

		color: #667eea;

	  font-weight: bold;
}

.pricing-card ul li:last-child {
	border-bottom: none;
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f7 100%);
   padding: 4rem 0;
   border-radius: 15px;
}

.faq-item {
    background: white; 
		margin-bottom: 1.5rem; 
	  border-radius: 10px; 
	   overflow: hidden; 
	  box-shadow: 0 3px 10px rgba(0,0,0,0.05); 
	   transition:        all 0.3s ease; 

}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-question {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 1.5rem;
    cursor: pointer;
  display: flex;
    justify-content :  space-between;
   align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
               user-select :    none;
}

.faq-question:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  padding-left: 2rem;
}

.faq-toggle {
   font-size: 1.3rem;
	  transition: transform 0.3s ease;
	  -moz-transition: transform 0.3s ease;
	    -webkit-transition: transform 0.3s ease;
	   display: inline-block;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
	    padding: 0;
    overflow: hidden;
   transition: all 0.4s ease;
    background: white;
    max-height: 0;
	}

.faq-answer.active {
   padding :      1.5rem;
    max-height     :       600px;
}

.faq-answer p {
	color: #666;
  line-height: 1.9;
	 font-size: 0.95rem;


}

.testimonials {
    margin-top: 4rem;
}


.testimonial-item {
  background: white;
	padding: 2rem;
  margin-bottom  :1.5rem;
   border-radius    :       10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-left: 5px solid #f39c12;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item:before {
	  content: '"';
	position: absolute;
	top: -10px;
   left: 15px;
   font-size: 4rem;
	 color: #f39c12;
    opacity: 0.2;
}

.testimonial-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.testimonial-text {
        font-style: italic;
  color: #666;
	margin-bottom: 1rem;
	line-height   :   1.9;
   position: relative;
  z-index: 1;
} 

.testimonial-author {
  font-weight: 600;
    color: #1a2332;
  font-size: 0.95rem;
}@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-detail h3 {
        font-size: 1.4rem;
    }

    .benefits-list li {
        padding-left: 2rem;
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card h4 {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-question span:first-child {
        margin-right: 0.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .service-detail h3 {
        font-size: 1.1rem;
    }

    .benefits-list li {
        padding-left: 1.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .pricing-card .price {
        font-size: 1.5rem;
    }

    .pricing-card h4 {
        font-size: 1rem;
    }

    .pricing-card ul li {
        padding: 0.5rem 0 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .faq-section {
        padding: 2rem 0;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .faq-answer.active {
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .testimonial-item {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }
}.policySection {
       padding: 80px 2rem;
	background:        #f8f9fa;
  min-height: calc(100vh - 200px);


}

.policyContainer {

          max-width: 800px;
	margin: 0 auto;
     text-align: left;
    background: white;
    padding: 3rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policyContainer h2   {
   font-size   :       2.5rem;
   color: #1a2332;
    margin-bottom: 2rem;
    font-weight: 700;
  padding-bottom: 1rem;
                    border-bottom: 3px solid #667eea;
}

.policyContainer h3 {
   font-size: 1.5rem;
    color: #2c3e50;
   margin-top: 2rem;
   margin-bottom     : 1rem;
	 font-weight: 600;
  transition: color 0.3s ease;
}

.policyContainer h3:hover {
    color: #667eea;
}

.policyContainer p {
    color: #555;
  line-height: 1.9;
   text-align: justify;
  margin-bottom: 1.5rem;
      font-size: 1.05rem;
}

.policyContainer p:first-of-type {
   font-size: 1.1rem;
  color: #666;
    font-style: italic; 

}

.policyContainer h3:first-of-type {
	                    margin-top: 0;
  color: #667eea;
	

}

.policyContainer ul,
.policyContainer ol {
	margin: 1.5rem 0 1.5rem 2rem;
   color: #555;
}

.policyContainer li {
	 margin-bottom: 0.75rem;
    line-height   :        1.8;
}

.policyContainer strong {
    color: #1a2332;
   font-weight: 600;
}

.policyContainer {
   animation: fadeIn 0.6s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
        max-width: 750px;
    }

    .policyContainer h2 {
        font-size: 2.2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin: 1rem 0 1rem 1.5rem;
    }

    .policyContainer li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.75rem;
    }

    .policyContainer {
        padding: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1.05rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin: 0.75rem 0 0.75rem 1.2rem;
    }

    .policyContainer li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
}

@media print {
    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .policyContainer h2 {
        border-bottom: 2px solid #333;
        page-break-after: avoid;
    }

    .policyContainer h3 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}