* {
	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;
         line-height: 1.6;
  color    :    #2c3e50;
   background-color  : #f8f9fa;
}

.main-navigation {
	position: sticky;
   top: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   z-index: 100;
}



.nav-container {
  max-width: 1200px; 
	    margin  :  0 auto; 
			 padding: 1rem 2rem; 
	  display: flex; 
	  justify-content  :  space-between; 
	  align-items: center;
}

.nav-brand img	{
   height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
   gap: 3rem;
}


.nav-link {
   text-decoration: none;
       color: #2c3e50;
   font-weight: 500;
   transition :all 0.3s ease;
  position: relative;
}

.nav-link:hover {
   color :     #3498db;

} 

.nav-link::after {
	  content: '';
      position: absolute;
           bottom: -5px;
      left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #3498db, #2980b9);
       transition: width 0.3s ease;
	}

.nav-link:hover::after {
  width: 100%;
}

.burger-menu {

   display   :    none;
  flex-direction   :column;
    background: none;
   border: none;
    cursor: pointer;
    gap: 5px;
	}

.burger-line {
	 -moz-border-radius: 2px;
  transition: all 0.3s ease;
  width :    25px;
  -webkit-border-radius: 2px;
  height: 3px;
  border-radius: 2px;
  background-color: #2c3e50;
}

.hero-section {
  align-items: center;
  grid-template-columns   :        1fr 1fr;
    margin    :      0 auto;
    gap: 3rem;
        max-width    :     1200px;
   display: grid;
   padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  background-clip: text;
}

.hero-content p {
   color: #555;
   line-height: 1.8;
	font-size: 1.1rem;
    margin-bottom     : 2rem;
}

.hero-cta {
   display     : inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color :white;
    text-decoration   :   none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.hero-image img {


    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	}

.services-preview {

	    padding: 5rem 2rem;

	  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f8 100%);
     }

.services-header {
    text-align: center;
	 margin-bottom: 4rem;
    max-width: 800px;
   margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 2.4rem;
   margin-bottom     :        1rem;
    color: #2c3e50;
}

.services-header p {
         font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2.5rem;
   max-width: 1200px;
	 margin: 0 auto;
}

.service-card {
               background   :    white;
    border-radius   : 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 
	
}

.service-card img {


   width: 100%;
    height: 200px;
	object-fit: cover;


}

.service-card h3 {
	font-size: 1.4rem;
   padding: 1.5rem 1.5rem 0.5rem;
	 color   :#2c3e50;
}

.service-card p   {
    padding    :   0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.benefits-section {
	 padding: 5rem 2rem;

   max-width: 1200px;

    margin: 0 auto;
}

.benefits-container h2 {
  font-size  :   2.4rem;
   text-align: center;
   margin-bottom: 3rem;
   color: #2c3e50;
}  

.benefits-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefit-item {

  padding: 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #fff 100%);
    border-radius: 10px;
   border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.benefit-item:hover		{
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.benefit-item h4 {
  font-size :  1.2rem;
	margin-bottom: 0.8rem;
  color     :#2980b9;
}

.benefit-item p {
  color: #555;
   font-size  :      0.95rem;
  line-height: 1.7;

}

.workspace-showcase
{
     padding: 4rem 2rem;

	   background: #f8f9fa;

	   text-align: center;
}

.workspace-showcase h2 {
  font-size: 2rem;
                    margin-bottom: 0.5rem;
	color     :   #2c3e50;
}

.workspace-showcase p {
	color: #7f8c8d;
  margin-bottom: 2rem;
}

.showcase-gallery {

  max-width: 900px;
		margin: 0 auto;

}

.showcase-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cta-consulting {
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color    :       white;
  text-align: center;
    margin: 2rem 0;
}

.cta-content h2 {
  margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    font-size  :    1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display     :      inline-block;
    padding: 14px 36px;
   background: white;
  color: #2980b9;
    text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
        transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
	
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	
}

.contact-section {
   padding: 5rem 2rem;
  background: white;
}

.contact-wrapper  
  {
   max-width :  700px;
    margin: 0 auto;
}

.contact-wrapper h2     {
    font-size: 2.2rem;
	 text-align: center;
   margin-bottom: 0.5rem;
  color: #2c3e50;
}

.contact-wrapper > p {
   text-align: center;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.contact-form {
     background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
     padding   : 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);


}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label
	{
    display: block;
   margin-bottom  :       0.6rem;
   font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
      width     :      100%;
   -o-transition   :   all 0.3s ease;
  padding: 12px 14px;
          -moz-border-radius: 6px;
    border    :        2px solid #e0e0e0;
  -moz-transition: all 0.3s ease;
    border-radius: 6px;
   -webkit-border-radius    :        6px;
   font-family: inherit;
   font-size: 1rem;
  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;
     }

.submit-button {
  width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    border: none;
   border-radius: 6px;
  font-size: 1rem;
   font-weight: 600;
    cursor: pointer;
       transition   :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.submit-button:active {
	  transform: translateY(0);
	}

.main-footer    {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color     :  #ecf0f1;
   padding: 3rem 2rem 1.5rem;
   margin-top: 3rem;


}

.footer-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 2.5rem;
    max-width: 1200px;
   margin: 0 auto 2rem; 
	
}

.footer-brand img {
                       height:       40px;
       margin-bottom: 1rem;
  filter: brightness(0) invert(1);

} 

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom :        1rem;
}

.footer-info p {
    font-size     :0.95rem;
    line-height: 1.8;
  color: #bdc3c7;
}

.footer-navigation h4,
.footer-policies h4 {
    font-size: 1.1rem;
   margin-bottom: 1rem; 
	
}

.footer-navigation ul,
.footer-policies ul {
      list-style: none;}

.footer-navigation li,
.footer-policies li {
  margin-bottom: 0.8rem;
}

.footer-navigation a,
.footer-policies a {
    -webkit-transition: all 0.3s ease;
  color: #bdc3c7;
  -moz-transition: all 0.3s ease;
   text-decoration: none;
  transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
	
}

.footer-navigation a:hover,
.footer-policies a:hover {
    color: #3498db;
  transform: translateX(4px);
}

.footer-bottom		{
					text-align     :   center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;
 font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-header h2 {
        font-size: 1.5rem;
    }

    .services-header p {
        font-size: 0.95rem;
    }

    .benefits-section {
        padding: 3rem 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1rem;
    }
}.services-hero {
	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
          color  :  white;
	padding: 5rem 2rem;
    text-align  :center;
     }

.services-hero-content h1 
 {
   font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {
  opacity  : 0.9;
   font-size: 1.2rem;
}

.services-detailed {
    background    :     white;
    padding  :       4rem 2rem;
}

.services-container {

	    max-width: 1200px; 
   margin: 0 auto;

     }

.service-detail-block {
   display: grid;
   		grid-template-columns: 1fr 1fr;
       gap: 3rem;
   	 align-items: center;
      margin-bottom :    5rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   	 padding: 2rem;
       border-radius  : 12px;
}

.service-detail-block.reverse {
         direction: rtl;
}

.service-detail-block.reverse > * {
    direction: ltr;
}

.service-detail-image img {
      width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); 
}

.service-detail-content h2 {
    font-size: 2rem;
  margin-bottom  :1rem;
    color:    #2c3e50;
}

.service-detail-content p {
	 color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-detail-content h3 {
		 font-size: 1.2rem;

   margin-bottom: 1rem;

  color    :     #2980b9;

   margin-top: 1.5rem;
}

.service-features {
   list-style: none;
         margin-bottom: 1.5rem;
}

.service-features li	{
               padding: 0.6rem 0;
    color     :     #555;
   padding-left: 1.5rem;
   position: relative;
}

.service-features li:before {
     color: #3498db;
  content: "→";
   left: 0;
    position: absolute;
		font-weight: bold;
}

.service-duration {
  font-size: 0.95rem;
     color     :   #7f8c8d;
    margin: 1rem 0;
   padding: 1rem;
  background: white;
    border-radius  :        6px;
}

.service-cta {
     display: inline-block;
       margin-top: 1rem;
  padding: 12px 28px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
	transition: all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.pricing-section {
      padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f8 100%);
          text-align: center;}

.pricing-section h2 {
  font-size: 2.4rem;
                    margin-bottom: 0.5rem;
   color: #2c3e50;
} 

.pricing-section > p {
  color: #7f8c8d;
 margin-bottom: 3rem;
}

.pricing-grid
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
    background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   position:       relative;
} 

.pricing-card:hover    {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #3498db;
  transform: scale(1.05);
}

.pricing-card.featured:hover {


  transform: scale(1.05) translateY(-8px);
	}

.popular-tag   {
   position :     absolute;
  top: -12px;
  left   :      50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
      font-weight: 600;
}  

.pricing-card h3 {


   font-size: 1.5rem;
  color   : #2c3e50;
   margin-bottom : 1rem;


}

.price {
     font-size: 2.4rem;
    font-weight: 700;
    color: #3498db;
         margin-bottom: 0;}


.price-period {
  color: #7f8c8d;
	font-size: 0.95rem;
   margin-bottom: 1.5rem;
}

.pricing-features {
   list-style: none;
	 text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li 
 {
    border-bottom: 1px solid #e0e0e0; 
    color:     #666; 
   padding :  0.7rem 0;
}

.pricing-features li:last-child {
   border-bottom: none; 

}

.pricing-cta {
   display: block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   text-decoration: none;
	 border-radius: 6px;
  font-weight: 600;
  transition :      all 0.3s ease;
}

.pricing-card.featured .pricing-cta {
     background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
	}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.comparison-section {
   padding: 5rem 2rem;
  background: white;
}


.comparison-section h2 
 {
  font-size: 2.2rem; 
	 text-align: center; 
	   margin-bottom: 3rem; 
	    color: #2c3e50;
}

.comparison-table {
    max-width  :      1000px;
   margin: 0 auto;
   overflow-x: auto;
}

.comparison-table table {
    width: 100%;
   border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead   {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 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  :     1.2rem;
}

.comparison-table tbody tr:hover	{
  background: #f9f9f9;
}

.comparison-table td:first-child {
  font-weight: 600;
   color: #2c3e50;
}

.comparison-table .yes {
   color    :      #27ae60;
    font-weight: 600;
}

.comparison-table .no {
  font-weight: 600;
      color: #e74c3c;
}

.comparison-table .partial {
  color :       #f39c12; 
  font-weight :    600;
}

.faq-section {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f8 100%);
}

.faq-section h2 {
   font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-container {
  max-width: 800px;
    margin: 0 auto;
}

.faq-item {
   background: white;
    margin-bottom: 1.5rem;
         border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
                    transition: all 0.3s ease;
}

.faq-question {

		padding   :   1.5rem;
    margin: 0;
   cursor: pointer;
  font-size: 1.1rem;
   font-weight: 600;
  color: #2c3e50;
	 user-select: none;
   position: relative;
   padding-right: 2.5rem;

}

.faq-question::after {
  content: "+";
    position: absolute;
  right: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.faq-answer {
   display: none;

   padding: 0 1.5rem 1.5rem;

  color: #666;

  line-height: 1.8; 

}

.faq-item.active .faq-answer {
          display: block;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
   color: #3498db; 
	
}

.cta-services {
                    padding: 4rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
         text-align: center;
}

.cta-services-content h2 {
  font-size: 2.2rem;
   margin-bottom: 1rem;


}

.cta-services-content p {
  font-size  : 1.1rem;
	margin-bottom: 2rem;
          opacity: 0.95;
}

.cta-services-button     {
  display: inline-block;
    padding    :      14px 36px;
    background: white;
   color: #2980b9;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-services-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-section		{
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f8 100%);
  min-height: calc(100vh - 200px);
   display     :        flex;
	 align-items: center;
    justify-content: center;
     }

.thankyou-container {
	 max-width: 600px;
    background: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.thankyou-icon {
  margin-bottom: 2rem;
}

.thankyou-icon svg {
    width: 80px;
   height: 80px;
    margin: 0 auto;
}

.thankyou-container h1 {
 font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom  :        0.5rem;
}

.thankyou-subtitle {


    color :#7f8c8d;
    font-size   :        1.1rem;
	margin-bottom:       2rem;
     }

.thankyou-content {
   text-align: left;
	margin-bottom   :        2.5rem;
}


.thankyou-content p {

	      color: #666;
    line-height: 1.8;
  margin-bottom: 1.5rem;

}

.thankyou-info-box {


  background: linear-gradient(135deg, #ecf0f1 0%, #f5f5f5 100%);
   padding: 1.5rem;
	 border-radius: 8px;
   margin: 1.5rem 0;
  border-left: 4px solid #3498db;

}

.thankyou-info-box h3  
  {
   font-size: 1.1rem;
	color: #2980b9;
  margin-bottom: 1rem;
}

.thankyou-steps {
    list-style: none;
    margin: 0;

}

.thankyou-steps li{
   display: flex;
  align-items: center;
	padding: 0.6rem 0;
          color: #666;

}

.step-number {
    display: inline-flex;
   align-items: center;
    justify-content: center;
  width: 28px;
      height: 28px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    border-radius: 50%;
	 font-weight: 600;
	font-size: 0.9rem;
   margin-right :      1rem;
   flex-shrink: 0;

}

.thankyou-contact-hint {

	  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding: 1.5rem;
  border-radius: 8px;
    margin: 1.5rem 0;


}

.thankyou-contact-hint p {
   margin: 0.5rem 0;
   color  :        #2c3e50;
}

.contact-phone {
   font-size: 1.3rem;
   color: #27ae60;
}

.thankyou-actions		{
   display: flex;
  gap: 1rem;
   justify-content: center;
}

.thankyou-button {
    display: inline-block; 
	padding :12px 24px; 
   border-radius: 6px; 
      text-decoration: none; 
    font-weight: 600; 
  transition: all 0.3s ease; 
    font-size: 0.95rem;
}

.thankyou-button.primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.thankyou-button.primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
     }

.thankyou-button.secondary {
   background :        white;
    color: #2980b9;
   border: 2px solid #3498db;
}

.thankyou-button.secondary:hover {
   background: #f0f7ff;
}

.next-steps-section {
    padding: 4rem 2rem;
	 background: white;
}

.next-steps-section h2 {
  font-size:      2rem;
  color:     #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.next-steps-section > p {
   text-align: center;
  color: #7f8c8d;
               margin-bottom: 2.5rem;
}

.next-steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
  max-width   :1000px;
    margin: 0 auto;
}

.next-steps-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding   :    2rem;
   border-radius: 10px;
  text-align: left;
}

.next-steps-card h3 {
  font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.next-steps-card p {
    color: #666;
     line-height: 1.7;
            margin-bottom: 1.5rem;
}

.next-steps-link {
        display: inline-block;
    color: #3498db;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease; 

}

.next-steps-link:hover {
  transform: translateX(4px);
  color: #2980b9;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-detail-block.reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button {
        width: 100%;
        text-align: center;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-block {
        padding: 1rem;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .next-steps-section {
        padding: 2rem 1rem;
    }
}.policySection {
        padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f8 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer {
	max-width:       800px;
    margin: 0 auto;
    text-align: left;
  background: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h2
{
   font-size  :       2.5rem;
      color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 700;
   line-height: 1.3;
}

.policyContainer h3 {

    font-size: 1.4rem;
	 color: #2980b9;
   margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight     :      600;

}

.policyContainer p {
    color: #555;
   margin-bottom: 1.5rem;
    line-height     : 1.8;
    font-size: 1rem;
}

.policyContainer strong {
  color: #2c3e50;
    font-weight: 600;
}

.policyContainer ul {
  list-style    :none;
   margin-bottom: 1.5rem;
   padding-left  :  0;


}

.policyContainer li {
    padding  :     0.6rem 0 0.6rem 1.5rem;
   color: #555;
	 position: relative;
   line-height     :1.7;
}

.policyContainer li:before {
  content: "•";
    position    :     absolute;
   left: 0;
   color: #3498db;
  font-weight: bold;
       font-size: 1.2rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}