* {
   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   :  #2c3e50;
   background: #fafbfc;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 700;
   margin: 0.8em 0 0.4em 0;
	color: #1a252f;
}

h1 {
   font-size: 3.2rem;
    line-height: 1.2;

}

h2 {
	 font-size  :2.4rem;
    margin-bottom:     2rem;
   position: relative;
    padding-bottom: 1rem;
}

h3

{
  font-size: 1.6rem;
   color: #34495e;
}

h4 {
   font-size: 1.2rem;
    color: #34495e;
}

p	{
    margin-bottom: 1rem;
  font-size     :        1rem;
    line-height: 1.7;
}

a {
  color: #2980b9;
    text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

.nav-header	{
	background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
         position:  sticky;
    top     :      0;
    z-index: 100;
}

.nav-container {
   max-width: 1200px;
 margin: 0 auto;
   padding: 1.2rem 2rem;
    display   :    flex;
    justify-content:  space-between;
        align-items: center;
}

.nav-logo {
	flex: 0 0 auto;
}

.logo-img {
  height: 50px;
       width: auto;
     display: block;
}

.nav-menu {

	  align-items: center;
    gap: 2.5rem;
    display :      flex;
     }

.nav-link {
   font-size: 1.05rem;
  font-weight: 500;
   color: #2c3e50;
    transition: color 0.3s ease;
        position: relative;
    padding-bottom: 0.3rem;
}

.nav-link::after {
  content: '';
    position: absolute;
   bottom: 0;
   left: 0;
    width: 0;
    height: 2px;
  background: #2980b9;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.burger-toggle {
	 display: none;
  background: none;
  border: none;
       cursor: pointer;
    padding     :  0.5rem;
       flex-direction: column;
   gap: 6px;
}

.burger-line {
   width: 26px;
    height   : 3px;
         background     :     #2c3e50;
    border-radius  :       2px;
  transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}

.burger-toggle.active .burger-line:nth-child(2){
   opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
}

.hero-section {


	 max-width: 1200px;
  margin: 0 auto;
   padding: 6rem 2rem;
	 display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.hero-content h1 {
  color: #1a252f;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero-subtitle {
     font-size: 1.2rem;
   color: #555;
    margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
   display    :      inline-block;
    padding: 0.9rem 2.2rem;
  background: #2980b9;
   color: white;
    border-radius: 6px;
   font-weight: 600;
   transition: all 0.3s ease;
		 border: 2px solid #2980b9;
}

.cta-button:hover    {
    background     :     #3498db;
    border-color: #3498db;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.hero-image img {
	width: 100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-preview {
  background   :        #f8f9fa;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin    :    0 auto;
}

.services-preview h2 {
     text-align    :center; 
  margin-bottom: 3rem;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;


}

.service-card {
         background: white;
   padding: 2rem;
    border-radius     :10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
  border-left   :     4px solid #2980b9;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

	  transform: translateY(-4px);
}

.service-header {
  margin-bottom: 1rem;
}

.service-header h3 {
  font-size    :        1.3rem;
   color: #1a252f;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height  :     1.7;
}

.transformation-section {

	  max-width: 1200px;
	margin: 0 auto;
                    padding: 5rem 2rem;
    display :  grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;


}



.transformation-content h2 {
	margin-bottom: 2rem;
}



.benefits-list {
	 display     :    flex;
   flex-direction: column;
   gap: 2rem; 

}

.benefit-item
{
 padding: 1.5rem;
    -moz-border-radius: 8px;
	background: #f8f9fa;
  border-radius    :       8px;
   -webkit-border-radius: 8px;
  border-left :4px solid #3498db;
}



.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
	 color: #2980b9; 
	
}

.benefit-item p    {

   color     :      #555;
      font-size   :   0.95rem;
  margin: 0;}

.transformation-image img{
   width: 100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-section {
   background: #f8f9fa;
    padding: 5rem 2rem;
}

.gallery-section h2 {
	  max-width: 1200px;
    margin: 0 auto 3rem;
	text-align: center;}

.gallery-grid
	{
  max-width: 1200px;
  margin     :    0 auto;
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;

}

.gallery-item {
  overflow :       hidden;
          border-radius     :      10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   aspect-ratio: 16 / 10;
}

.gallery-item img {
       width: 100%;
    object-fit: cover;
  transition    :       transform 0.4s ease;
	 height: 100%;
}

.gallery-item:hover img {

  transform: scale(1.05);

}

.cta-section {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
               padding: 4rem 2rem;
  text-align    :        center;
}

.cta-box {
   max-width: 700px;
  margin: 0 auto;
               color: white;
}

.cta-box h2 {
	color     :    white;
    margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.95);
    font-size   :    1.1rem;
 margin-bottom: 2rem;
	
}

.cta-button-large {
               transition: all 0.3s ease;
   padding     :    1.1rem 2.8rem;
	 font-size: 1.05rem;
    color  :    #2980b9;
  border-radius: 6px;
  display:    inline-block;
    background: white;
    border: 2px solid white;
                    font-weight: 600;
}

.cta-button-large:hover {
   background     :   #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
   	max-width:     1200px;
  margin :    0 auto;
    padding   :     5rem 2rem;


	}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h2 {
  text-align  :      center;
   margin-bottom:    1rem;
}

.contact-intro {

   text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
   font-size: 1.05rem;}

.contact-form {
 background: #f8f9fa;
   	 padding: 2.5rem;
       border-radius: 10px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);


}

.form-group {
  display: flex;
   margin-bottom: 1.8rem;
  flex-direction: column;
}

.form-group label {
    font-weight: 600;
  color: #2c3e50;
	 margin-bottom     :        0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: inherit;

	  border  :  2px solid #ddd;

	    background:       white;

	  transition: border-color 0.3s ease;

	        font-size: 1rem;

	   padding: 0.9rem 1rem;

	   border-radius     :6px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus


{
  outline: none;
 border-color: #2980b9;
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
         width    :        100%;
	 padding: 1rem;
    background: #2980b9;
  color: white;
   border    :none;
               border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background :       #3498db;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.main-footer
	{
  background: #1a252f;
    color: #ecf0f1;
   padding: 3rem 2rem 1.5rem;
     }

.footer-content {
   max-width: 1200px;
	margin: 0 auto 2rem;
   display: grid;
  grid-template-columns: auto 1fr 1fr;
    gap: 4rem;
  align-items: start;
}

.footer-logo-img {
  height: 50px;
   width   :        auto;
   display: block;
  filter: brightness(0) invert(1);

}

.footer-info {
  gap: 3rem;
  display: flex;
}

.footer-address,
.footer-phone		{


    font-size: 0.95rem;
    line-height: 1.8;
	}



.footer-address p,
.footer-phone p {
  color: #ecf0f1;
  margin: 0;
	
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
    color: #ecf0f1;
   font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
   color: #3498db;

}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.2);
	 padding-top: 1.5rem;
   text-align: center;
  color: #bdc3c7;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .burger-toggle {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .transformation-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-preview {
        padding: 3rem 1rem;
    }

    .transformation-section {
        padding: 3rem 1rem;
    }

    .gallery-section {
        padding: 3rem 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .footer-content {
        padding: 2rem 0;
    }
}.services-hero

{
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
    padding: 5rem 2rem;
  text-align: center;
}



.services-hero-content h1 {
	color: white;
    font-size: 3rem;
   margin-bottom: 1rem;
}

.services-hero-content p {
	 font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
   margin: 0;
}



.services-detailed   {
  max-width: 1200px;
    margin: 0 auto;
    padding  :     4rem 2rem;
}


.services-container {
    display: flex;

  flex-direction  :   column;

   gap: 4rem; 
	
}

.service-block {
   display: grid;
	grid-template-columns: 1fr;
  gap: 2rem;
   padding: 2.5rem;
	background: #f8f9fa;
    border-radius: 12px;
  border-left: 5px solid #2980b9;
}

.service-block-reverse {
    border-left: none;
  border-right: 5px solid #3498db;
}

.service-block-header {
       border-bottom: 2px solid #ddd;
    padding-bottom: 1.5rem;


}

.service-block-header h2     {
  margin: 0;
  color: #1a252f;
    font-size: 2rem;
}

.service-block-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2.5rem;
    align-items   :    start;
}

.service-block-image {
                    overflow: hidden;
   border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-block-image img
{
  width: 100%;
  height: auto;
   display: block;
                    transition: transform 0.4s ease;
}

.service-block:hover .service-block-image img {
	  transform: scale(1.03);
     }

.service-block-text h3  
  {
    font-size: 1.5rem; 
	   color   :     #2980b9; 
	  margin-bottom: 1rem;
}

.service-list
	{
  list-style: none;
   padding  :   0;
	 margin   :  1.5rem 0;
}

.service-list li {
   padding: 0.6rem 0 0.6rem 2rem;
   position: relative;
  color: #555;
	line-height: 1.7;
  font-size: 0.95rem;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
     top    : 0.9rem;
   width: 8px;
   height: 8px;
    background: #2980b9;
   border-radius: 50%;
}

.service-duration {
  margin :      1.5rem 0;
    padding: 1rem;
  -webkit-border-radius: 6px;
	 background     :        white;
   -moz-border-radius: 6px;
   border-left    : 3px solid #3498db;
    border-radius: 6px;
    color: #666;
  font-size: 0.9rem;
}

.service-cta     {
   display: inline-block;
  padding   :    0.85rem 2rem;
  background: #2980b9;
  color: white;
  border-radius: 6px;
    font-weight   :     600;
   transition: all 0.3s ease;
   text-decoration: none;
    margin-top :  1rem;
}

.service-cta:hover {
    background: #3498db; 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.service-comparison


{
   background: #f8f9fa;
    padding: 4rem 2rem;
}

.service-comparison h2 {
   text-align: center;
  max-width: 1200px;
                    margin: 0 auto 3rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
   background: white;
   border-radius: 10px;
         overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 

}

.comparison-header     {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
    background     :#2980b9;
      color: white;
	 font-weight :     600;
    gap: 0;
} 

.comparison-cell {
  padding: 1.2rem;
	 border-right: 1px solid #ddd;
   font-size: 0.95rem;
}

.comparison-cell:last-child {
       border-right: none;


}

.header-cell   {
    background: #2980b9;
  color :     white;
  border-right: 1px solid rgba(255, 255, 255, 0.2);

}

.comparison-row


{
    display: grid;
  grid-template-columns: repeat(4, 1fr);
         border-bottom: 1px solid #eee;
   gap     :    0;
}

.comparison-row:last-child{
	 border-bottom: none;
}

.comparison-row:nth-child(even) {
	background: #f8f9fa;
}

.comparison-row .comparison-cell {
    padding :       1.2rem;
  color  :        #555;
	 border-right: 1px solid #eee;
                    font-size:       0.9rem;
}

.comparison-row .comparison-cell:last-child {
        border-right: none;
}

.faq-section {

	  max-width: 900px;
    margin: 0 auto;
        padding: 4rem 2rem;


}

.faq-section h2
	{
   text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.faq-item

{
   border: 1px solid #ddd;
   border-radius   :    8px;
    overflow: hidden;
  background: white;
}

.faq-trigger {


  width: 100%;
   -moz-transition: all 0.3s ease;
                    padding: 1.5rem;
	background     :     #f8f9fa;
    border: none;
  text-align     :      left;
   font-size: 1rem;
	 -webkit-transition: all 0.3s ease;
    font-weight: 600;
  color: #1a252f;
  cursor    :        pointer;
   transition: all 0.3s ease;
  display: flex;
   justify-content: space-between;
   align-items: center;


}

.faq-trigger:hover {
    background: #eee;
}

.faq-trigger::after {
  content: '+';
 font-size: 1.5rem;
    color: #2980b9;
   transition    :    transform 0.3s ease;
                    flex-shrink: 0;
				 margin-left: 1rem;
}

.faq-item.active .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-content {
 max-height: 0;
    overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {

    max-height   : 500px;
   padding: 1.5rem;

}

.faq-content p {
   color     : #666;
   line-height    :      1.7;
    margin:     0;
}

.closing-cta {

  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
   padding: 4rem 2rem;
  text-align: center;
	}

.closing-cta h2{

  color: white;
   margin-bottom: 1rem;

}

.closing-cta p	{
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom:       2rem;
}

.cta-button-primary {
    display: inline-block;
                    padding:       1rem 2.5rem;
      background: white;
	 color: #2980b9;
    border-radius: 6px;
  font-weight: 600;
	text-decoration: none;
  transition: all 0.3s ease; 

}

.cta-button-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  min-height :      60vh;
  display: flex;
  align-items: center;
    justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%); 
	
}

.thankyou-container
{
  width: 100%;
	max-width  :  700px;
}

.thankyou-card {
    background:       white;
    padding: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: slideUp 0.6s ease;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-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-icon svg {
   stroke: white; 
	
}

.thankyou-card h1 {
   color: #27ae60;
    font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.thankyou-card h2 {
   color: #34495e;
   font-size     :   1.5rem;
  margin-bottom: 1.5rem;
    border: none;
  padding: 0;
}

.thankyou-description {
    color: #666;
	font-size: 1.05rem;
          line-height: 1.8;
  margin-bottom: 2rem;
}

.thankyou-info {
  background: #f8f9fa;
    padding: 2rem;
  border-radius: 8px;
     margin: 2rem 0;
   text-align: left;
}

.info-box h3

{
   color: #2980b9;

	   margin-top     :  0;

	    margin-bottom: 1rem;
	}

.info-list {
    list-style: none;
  padding     :    0; 

}



.info-list li {
   padding: 0.5rem 0 0.5rem 2rem; 
	    position: relative; 
	    color: #555;
}

.info-list li::before

{
    color: #27ae60;
  content: '✓';
	 left: 0;
  font-weight: bold;
    position: absolute;

}

.thankyou-actions {
  display: flex;
   gap: 1rem;
    margin: 2.5rem 0;
	justify-content: center;
    flex-wrap: wrap;
}

.button-home,
.button-services {
                    padding: 0.9rem 2rem;
      border-radius: 6px;
	 font-weight :     600;
	 text-decoration: none;
	transition:   all 0.3s ease;
  display: inline-block;
}


.button-home {
    background: #2980b9;
  color: white;
	
}

.button-home:hover {

	background     :       #3498db;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.button-services  {
  background: #ecf0f1;
	 color: #2c3e50;
   border  :       2px solid #2980b9;
}

.button-services:hover {
   background: #d5dbdb;
}

.thankyou-footer {
                    color: #999;
	 font-size: 0.9rem;
 margin-top: 2rem;
}

.next-steps-section {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.next-steps-section h2 {
       text-align: center;
  max-width: 1200px;
        margin: 0 auto 3rem;
} 

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
}

.step-card {
   background: white;
   padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   text-align: center;
   transition: all 0.3s ease;
}



.step-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); 
  transform: translateY(-4px);
}

.step-number {


      width: 50px;
   height: 50px;
        background: #2980b9;
	color: white;
	 border-radius: 50%;
                    display  :     flex;
    align-items: center;
  justify-content: center;
  font-size: 1.5rem;
   font-weight:    700;
   margin: 0 auto 1rem;
	}

.step-card h3 {


    color: #1a252f;
   margin: 0 0 0.8rem 0;

}

.step-card p {
  color: #666;
	 font-size: 0.9rem;
    margin: 0;
}

.testimonials-section {
      padding: 4rem 2rem;

}

.testimonials-section h2 {
    text-align: center;
    max-width: 1200px;
   margin    :   0 auto 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    :  white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #3498db;


}

.testimonial-text {
	   color: #555;
  font-size: 1rem;
  font-style: italic;
  margin-bottom:  1rem;
   line-height: 1.7;

}

.testimonial-author {
	color: #2980b9;
    font-weight: 600;
  font-size: 0.9rem;
    margin    :        0;
}

.faq-contact {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   padding: 3rem 2rem;
  text-align: center;
	color :  white;
}

.faq-contact-container   {
  max-width: 600px;
	margin: 0 auto;
}

.faq-contact h2 {
    color: white;
	margin-bottom: 1rem;
}

.faq-contact p {
     color: rgba(255, 255, 255, 0.9);

  margin-bottom: 2rem;

    font-size: 1.05rem;
	}  

.contact-details {
   display: flex;
   flex-direction: column;
    gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding:  2rem;
    border-radius: 8px;
}

.detail-item {
    display: flex;
   gap     :     1rem;
  justify-content    :  center;
  align-items: center;
}

.detail-label {
  font-weight: 600;
    min-width: 100px;
}

.detail-value {
                    color: #ecf0f1;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-block-content {
        grid-template-columns: 1fr;
    }

    .comparison-table,
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 1rem;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .header-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .button-home,
    .button-services {
        width: 100%;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-detailed {
        padding: 2rem 1rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .service-block-header h2 {
        font-size: 1.3rem;
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .closing-cta {
        padding: 2rem 1rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-card {
        padding: 1.5rem;
    }

    .thankyou-card h1 {
        font-size: 1.8rem;
    }

    .next-steps-section {
        padding: 2rem 1rem;
    }

    .faq-contact {
        padding: 2rem 1rem;
    }
}.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;
    }
}