* {


   margin: 0;
    padding: 0;
  box-sizing :       border-box;
     }

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
   background-color: #ffffff;
  line-height: 1.6;
}

.navigation-bar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  padding: 1rem 0;
  position   :   sticky;
	top   :0;
   z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container  {

	   max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}


.logo-section {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex    :      0 0 auto;
	
}

.logo-brand {
   height: 40px;
    width: auto;
  object-fit: contain; 

}

.burger-menu {
   display: none;
  flex-direction: column;
	 background:      none;
   border: none;
                    cursor :  pointer;
   padding: 0.5rem;
}

.burger-line {
	         width: 25px; 
  height:       3px; 
  background-color: #ecf0f1; 
    margin: 5px 0; 
  transition: var(--transition);


}

.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(7px, -7px);
}

.nav-menu {
  display    :       flex;
	    list-style :     none;
	     gap: 2rem;
}

.nav-menu li a {
  color: #ecf0f1;
	    text-decoration: none;
	    font-weight: 500;
	  transition: var(--transition);
	   padding: 0.5rem 1rem;
	    border-radius: 4px;
	
}

.nav-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.hero-section {
    display: grid;
    grid-template-columns :       1fr 1fr;
    align-items: center;
	gap: 4rem;
    padding: 6rem 2rem;
   max-width: 1200px;
	 margin: 0 auto;
} 

.hero-content h1		{
    font-size: 3.5rem;
   font-weight: 700;
  color: var(--primary-color);
	 margin-bottom: 1.5rem;
  line-height     :   1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
  color: var(--text-light);
    margin-bottom: 2rem;
	 max-width  :     90%;
}

.hero-cta-button {
   display:inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
   color: white;
	 padding: 1rem 2.5rem;
   border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 

}

.hero-cta-button:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {
    position :   relative;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
   width: 100%;
    height: auto;
	display: block;
}

.features-showcase {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	 padding: 6rem 2rem;
  margin: 3rem 0;


}

.features-grid {
    max-width: 1200px;
   margin: 0 auto;
  display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
	   background: white;
    padding: 2.5rem 2rem;
   border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
     }

.feature-card:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}

.feature-card h3 {
    font-size: 1.3rem; 
	   margin-bottom: 1rem; 
	  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
   line-height: 1.8;
}

.feature-icon-wrapper {
   display: inline-flex;
       align-items: center;
      justify-content: center;
   	width: 50px;
       height: 50px;
     background-color: rgba(52, 152, 219, 0.1);
            border-radius: 8px;
      margin-bottom: 1.5rem;
}

.feature-icon {
  width: 28px;

	               height: 28px;

	  stroke: var(--secondary-color);

	 fill: none;

	   stroke-width: 2;
}

.consultation-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 4rem 2rem;
	 text-align: center;
   margin   :  4rem 0;
}

.consultation-container	{
    max-width: 800px;
  margin: 0 auto;
}

.consultation-container h2
{
    font-weight: 700;
  margin-bottom: 1rem;
               font-size  :    2.5rem;
  color: white;
}

.consultation-container p {
   font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
} 

.consultation-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color) 0%, #c0392b 100%);
    color: white;
  padding   :   1rem 3rem;
	border-radius: 50px;
   text-decoration  :       none;
   font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.consultation-button:hover {
  transform: scale(1.05);
     box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.services-preview {
     padding  :  6rem 2rem;
    max-width: 1200px;
   margin   :      0 auto;
}

.section-title

{
       font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
  color: var(--primary-color);
    font-weight: 700;


}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-item {
   background: white;
                    border-radius:        12px;
    overflow    :     hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15); 
	
}

.service-item img {
         width: 100%;
   height:       220px;
  object-fit  :    cover;
}

.service-item h3 {
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.service-item p {
   padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
       line-height: 1.7;
}

.contact-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 6rem 2rem;
		 margin: 4rem 0 0 0;
}

.contact-title

{
  font-size   :2.5rem;
    text-align: center;
   margin-bottom   :  3rem;
  color: var(--primary-color);
   font-weight: 700;
	
}

.contact-container {
   max-width: 1000px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form {
  background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group		{
	 margin-bottom: 1.5rem;
}

.form-input {


    width  :100%;
      padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
    border-radius: 6px;
   font-size:   1rem;
   font-family: inherit;
  transition: var(--transition);
  color: var(--text-dark);
	}

.form-input:focus {
    outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
   resize: vertical;
   min-height: 120px;
}

.submit-button {
   width: 100%;

   padding: 1rem;

  background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);

   color: white;

    border: none;

  border-radius: 6px;

  font-size: 1rem;

               font-weight: 600;

	cursor: pointer;

  transition: var(--transition);

  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);

}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.3);


}

.contact-info {
     background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
   font-size: 1.5rem;
	 margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-item {
    margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-item .label {
   font-weight  :   600;
  color: var(--primary-color);
}

.main-footer {
     background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%); 
	   color: #ecf0f1; 
	  padding: 4rem 2rem 2rem;}

.footer-content {
  max-width     :    1200px;
  margin   :       0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :  3rem;
   margin-bottom: 2rem;
}

.footer-brand {
   align-items: center;
   display: flex;
}

.footer-logo {
    height: 50px;
  width :        auto;
  filter: brightness(0) invert(1);
   object-fit: contain;
}

.footer-section h4 {
	 font-size: 1.1rem;
       margin-bottom: 1rem;
     color: white;
     font-weight: 600;
}

.footer-section ul {

   list-style     :  none;

}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
  transition: var(--transition);
     display:     inline-block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-section p {
   color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom  
  {
	  max-width: 1200px;
  margin: 0 auto;
   text-align: center;
	padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-self: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .consultation-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}.services-hero		{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 5rem 2rem;
  text-align: center;
   color     :white;
}

.services-hero-content h1 {
    font-size :      3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero-content p {
  font-size:   1.3rem; 
  color: #ecf0f1; 
   max-width: 600px; 
  margin: 0 auto;
}  

.services-detailed {
    padding: 6rem 2rem;
   max-width: 1200px;
    margin     :    0 auto;
}

.services-container {

	    display: flex;
    flex-direction :    column;
   gap:  4rem;

}

.service-card-detailed {
   display   :       grid;
  grid-template-columns: 1fr 1.2fr;
  gap  : 3rem;
    align-items    :     center;
    background: white;
    border-radius :      12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card-detailed.alternate {
	grid-template-columns: 1.2fr 1fr;
}

.service-card-detailed.alternate .service-image-wrapper {
   order: 2;
}

.service-card-detailed.alternate .service-content {
	order :    1;
}  

.service-image-wrapper {
    overflow: hidden;
   height    :        350px;
}

.service-image-wrapper img	{
	    width: 100%;
  height: 100%;
	object-fit: cover;}

.service-content {
   padding: 3rem 2.5rem;
}

.service-content h2 {
  font-size  :    2rem;
	  color: #2c3e50;
	   margin-bottom     :  1.5rem;
	    font-weight: 700;
}

.service-content p {
  color:   #7f8c8d;
  line-height: 1.8;
   margin-bottom: 1.5rem;
    font-size: 1.05rem;


}

.service-features

{
      list-style:       none;
       margin: 2rem 0;
   	padding: 0;
}

.service-features li {
   padding-left: 1.5rem;
  margin-bottom: 1rem;
  position:relative;
   color: #2c3e50;
               font-weight: 500;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
     background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    padding: 1rem 1.5rem;
   border-radius: 8px;
    color: #2980b9;
  font-weight: 600;
    margin-top: 2rem;
     }

.pricing-comparison {
	 padding :  6rem 2rem;
          background: #f8f9fa;
  margin: 4rem 0;
}

.pricing-comparison h2 {
     font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
          color: #2c3e50;
	
}

.pricing-table		{
	 max-width: 1200px;
    margin: 0 auto;
   overflow-x     :   auto;
}

.pricing-table table {
   width: 100%;
    border-collapse: collapse;
	background: white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
} 

.pricing-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.pricing-table th {
  padding: 1.5rem;
    text-align: left;
  font-weight: 600;
               font-size: 1.05rem;
}

.pricing-table td {
  padding :   1.5rem;
  border-bottom: 1px solid #ecf0f1;
    color: #2c3e50;
}

.pricing-table tbody tr:last-child td 
 {


  border-bottom: none;
	}

.pricing-table tbody tr:nth-child(even) {

 background-color: #f8f9fa;


}

.pricing-table tbody tr:hover {
   background-color: #f0f3f5;
}

.services-faq {
  padding: 6rem 2rem;
   	max-width: 900px;
      margin: 0 auto;
}

.services-faq h2 {
    font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
       color    :      #2c3e50;
}

.faq-container {
	display     :     flex;
   flex-direction: column;
        gap: 1rem;
}

.faq-item {
   background: white;
   border: 2px solid #ecf0f1;
   border-radius     :   8px;
  overflow: hidden; 
	
}

.faq-question {
	width     :        100%;
   padding: 1.5rem;
    background: white;
  border  :      none;
    cursor: pointer;
    display: flex;
   justify-content: space-between;
   align-items   :        center;
  font-size: 1.1rem;
  font-weight: 600;
      color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%); 

}

.faq-toggle {
				 font-size: 1.5rem;
  color: #3498db;
  transition: transform 0.3s ease;


}

.faq-question.active .faq-toggle {

  transform: rotate(45deg);


}

.faq-answer {
	 padding:       1.5rem;
  background-color: #f8f9fa;
    color: #7f8c8d;
	line-height: 1.8;
                    border-top: 2px solid #ecf0f1;
}

.faq-answer p {
    margin   :0;
}

.services-cta
	{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
       padding: 4rem 2rem;
  text-align: center;
   margin: 4rem 0 0 0;
     color: white;
}

.services-cta h2 {
	  font-size    :2.5rem;
  margin-bottom: 1rem;
    font-weight: 700;}  

.services-cta p {
  color: #ecf0f1;
	 font-size: 1.2rem;
   margin-bottom: 2rem;
}

.services-cta-button {
   display: inline-block;
    background: white;
       color: #3498db;
  padding: 1rem 3rem;
  border-radius   :   50px;
    text-decoration: none;
    font-weight: 600;
   transition  :    all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	
}

.thankyou-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
   min-height: 80vh;
		display: flex;
    align-items   :     center;
   justify-content: center;
}

.thankyou-container {
     max-width: 700px;
   background :     white;
  padding: 4rem;
    border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
   text-align: center;}

.success-icon-wrapper {
   display: inline-flex;

		align-items    :      center;

	   justify-content: center;

	  width: 80px;

		height: 80px;

	  background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(39, 174, 96, 0.05) 100%);

	  border-radius: 50%;

	    margin-bottom: 2rem;
}

.success-icon {
    width: 48px;
    height   : 48px;
    stroke: #27ae60;
        fill: none;
  stroke-width: 2;
} 

.thankyou-container h1   {

	   font-size: 2.5rem; 
   color: #2c3e50; 
    margin-bottom   :     0.5rem; 
       font-weight :     700;

}

.thankyou-subtitle {
   font-size   : 1.2rem;
  color: #27ae60;
         margin-bottom: 2rem;
    font-weight: 600;
}

.thankyou-content {
    margin: 2rem 0;
	text-align: left;
}

.thankyou-content p {
   color: #7f8c8d;
    line-height: 1.8;
  margin-bottom: 2rem;
     font-size: 1.05rem;
}

.thankyou-timeline	{
   margin: 3rem 0;
   display  :        flex;
   flex-direction: column;
	gap: 1.5rem;
}

.timeline-item  {
     display: flex;
   gap     :    1.5rem;
    padding: 1.5rem;
   background   :  #f8f9fa;
         border-radius: 8px;
   text-align: left;
}

.timeline-marker {
   width: 16px;
               height: 16px;
	background: #3498db;
   border-radius:      50%;
    margin-top: 0.5rem;
	 flex-shrink: 0;


}

.timeline-item h3 {
  font-size: 1.05rem;
	 color   :      #2c3e50;
   margin-bottom: 0.5rem;
  font-weight  :600;
}

.timeline-item p {
	color  :        #7f8c8d;
   font-size: 0.95rem;
	margin-bottom: 0;
}

.thankyou-info-box {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(52, 152, 219, 0.03) 100%);
	   padding: 2rem;
	    border-radius: 8px;
	                    border-left     :    4px solid #3498db;
	   margin: 2rem 0;
	    text-align    :        left;


}

.thankyou-info-box h3 {

	  color: #2c3e50;
    font-size: 1.2rem;
  margin-bottom: 1rem;
				 font-weight: 600;


}

.thankyou-info-box ul {
   list-style  :        none;
    padding: 0;
    margin: 0;
}

.thankyou-info-box li {
      color:      #7f8c8d;
    margin-bottom: 0.75rem;
   padding-left: 1.5rem;
    position: relative;
                    line-height: 1.6;
} 

.thankyou-info-box li:before {


  content: "•";
  position: absolute;
	left: 0;
  color: #3498db;
   font-weight: bold;}

.thankyou-actions {

   display :  flex;
       gap: 1rem;
     margin-top: 3rem;
      flex-direction:  column;

}

.thankyou-button {
   padding: 1rem 2rem;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  text-decoration: none;
   -o-transition: all 0.3s ease;
  font-weight: 600;
    transition: all 0.3s ease;
   -webkit-transition  :all 0.3s ease;
  display: inline-block;
}

.thankyou-button.primary 
 {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
	
}

.thankyou-button.primary:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.3); 
	
     }

.thankyou-button.secondary {
  background: white;
  color: #3498db;
    border:  2px solid #3498db;
}

.thankyou-button.secondary:hover {
   background   :      #f8f9fa;
}



.next-steps {
    padding: 6rem 2rem;

   max-width: 1200px;

  margin: 0 auto;
}

.next-steps h2

{
	 font-size: 2.5rem;
   text-align: center;
	margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
  display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 

}

.step-card {
               background: white;
    padding: 2rem;
   border-radius  :      12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
   text-align     :       center;
    transition  :   all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon-wrapper {
   display :     inline-flex;
   align-items: center;
   justify-content: center;
    width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
  border-radius: 12px;
	margin-bottom  :       1.5rem;
}

.step-icon {
  width: 32px;
    height: 32px;
  stroke: #3498db;
   fill  : none;
  stroke-width: 2;
}

.step-card h3  
  {
    font-weight: 600;
    font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.step-card p {
    color :     #7f8c8d;
  line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-link {
  display: inline-block;
    color: #3498db;
   text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
   padding-bottom: 0.5rem;
  border-bottom   :    2px solid transparent;
}

.step-link:hover {
 border-bottom-color: #3498db;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
    }

    .service-card-detailed.alternate {
        grid-template-columns: 1fr;
    }

    .service-card-detailed.alternate .service-image-wrapper,
    .service-card-detailed.alternate .service-content {
        order: initial;
    }

    .service-image-wrapper {
        height: 250px;
    }

    .service-content {
        padding: 2rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }

    .services-faq {
        padding: 3rem 1rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-timeline {
        gap: 1rem;
    }

    .timeline-item {
        padding: 1rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }

    .thankyou-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }
}.policy-hero {

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 5rem 2rem;
   text-align: center;
   color: white;

}

.policy-hero h1 {
   font-size:      3rem;
  font-weight: 700;
  margin    :      0;
}

.policySection {
	padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
	    max-width: 800px;
   text-align: left;
  margin: 0 auto;


}

.policyContainer h2 {
  font-size: 2.5rem;

	    color: #2c3e50;

		margin :      2.5rem 0 1.5rem 0;

	  font-weight: 700;

	  line-height: 1.3;
}

.policyContainer h2:first-of-type {
	 margin-top: 0;
}

.policyContainer p {
    color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size: 1.05rem;
   text-align: justify;
}

.policyContainer p:last-child {
   margin-bottom: 0;


}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.5rem;
    }

    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}