* {

    margin: 0;
   padding: 0;
  box-sizing    :      border-box;
     }

body    {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
          background-color: #ffffff;
}

html    {
	   scroll-behavior  :       smooth;
}

.navbar {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       padding: 1rem 0;
   position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.2);

}

.nav-container
	{
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  display : flex;
    justify-content: space-between;
   align-items: center;}

.nav-brand {
	display    :     flex;
          align-items :        center;
}

.logo-img {
    height: 45px;
      width: auto;
  filter: brightness(0) invert(1);
}

.nav-links  {
  display: flex;
	list-style: none;
  gap: 2rem;
}

.nav-links a {
    color: #ffffff;
  text-decoration:    none;
     font-weight: 500;
  transition: all 0.3s ease;
      font-size: 1rem;
}

.nav-links a:hover {
   opacity: 0.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.burger-menu {
    display: none;
  flex-direction: column;
    background: none;
	border: none;
	cursor:      pointer;
	 gap: 6px;
}

.burger-menu span {
  width: 28px;
	height: 3px;
    background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2)    {
    opacity:      0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
     }

.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding  :   4rem 1.5rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items    : center;
  max-width :       1200px;
   margin: 0 auto;
}

.hero-content h1    {
    font-size: 2.5rem;
        margin-bottom: 1.5rem;
    color: #2c3e50;
  line-height: 1.2;
}

.hero-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  color: #555;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   padding: 0.9rem 2rem;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
	transition   :     all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
     }

.hero-image img
	{
   width    :   100%;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about {
  padding: 4rem 1.5rem;
	        background-color: #ffffff;
}  

.about-grid {
	    max-width: 1200px;
   margin: 0 auto;
  display  :   grid;
 grid-template-columns: 1fr 1fr;
      gap: 3rem;
    align-items: center;

}



.about-text h2 {
   font-size: 2rem;
    margin-bottom: 1.5rem;
  color: #2c3e50;


}

.about-text p {
   margin-bottom : 1.5rem;
       font-size: 1rem;
   color: #555;
    line-height :1.8;
}

.about-image img {
    width: 100%;
      border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-preview {
    padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
}

.services-preview h2 {
               text-align   :      center;
	   font-size: 2rem;
	   margin-bottom: 3rem;
}

.services-grid {
  max-width     :  1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
       border-radius:     12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15); 
	
}

.service-card h3    {
  font-size: 1.3rem;
   margin-bottom: 1rem;
}

.service-card p {
  font-size    :    0.95rem;
	line-height: 1.6;
}

.expertise		{
    padding: 4rem 1.5rem;
  background-color : #f8f9fa;
}

.expertise h2 
 {
   font-size: 2rem;
    text-align   :       center;
   color   :      #2c3e50;
  margin-bottom :      3rem;


}


.expertise-content {
    max-width: 1200px;
	         margin: 0 auto 3rem;
	    display: grid;
	  grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	   text-align: center; 

}

.expertise-item 
 {
   padding: 2rem;
   background: #ffffff;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expertise-number {
    font-size: 2.5rem; 
  font-weight: 700; 
   color: #667eea; 
    margin-bottom: 0.5rem; 
	
}

.expertise-item p {
  font-size: 1rem;
    color: #555;
} 

.expertise-image {
   max-width: 1200px;
  margin: 0 auto;
}

.expertise-image img {
	width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
	
}

.workflow
	{
    padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
}

.workflow h2 {
   text-align: center;
  font-size: 2rem;
   margin-bottom    :       3rem;
}

.workflow-steps {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step {
   text-align: center;
                    padding: 2rem;
}

.step-number {
    font-size    :       2.5rem;
   font-weight: 700;
	margin-bottom: 1rem;
    opacity: 0.8;
}

.step h3 {


    font-size: 1.2rem;
  margin-bottom: 1rem;


}

.step p {
      line-height: 1.6;
   font-size     : 0.95rem;
    opacity: 0.9;
}

.cta-section {
    padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
          text-align: center;
 color    :   #ffffff;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom  :     1rem;
}  

.cta-section p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
}

.cta-button-large {
  display: inline-block;
         background: #ffffff;
	color: #11998e;
	padding: 1rem 2.5rem;
	border-radius: 50px;
    text-decoration    :        none;
  font-weight: 700;
    font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gallery-section {
    padding: 4rem 1.5rem;
   background-color: #ffffff;
}

.gallery-section h2 {
   text-align    : center;
   font-size: 2rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.gallery-grid {


   max-width: 1200px;
			margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;}

.gallery-grid img {

    width:        100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition:     all 0.3s ease;
     }

.gallery-grid img:hover		{


  transform: scale(1.05); 
	  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);}

.contact-section {
       padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 

	}

.contact-section h2 {
	text-align    :   center;
	  font-size: 2rem;
	  margin-bottom: 0.5rem;
	  color: #2c3e50;
}

.contact-section > p    {
	text-align: center;
  margin-bottom: 2rem;
   color: #555;
   font-size: 1.05rem;
}

.contact-form  {
    max-width: 600px;
  margin: 0 auto;
	background: #ffffff;
   padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

}

.form-group {
   margin-bottom: 1.5rem;


}

.form-group label {
  display: block;

    margin-bottom: 0.5rem;

    font-weight: 600;

    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
  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: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
     }

.form-group textarea {
  resize: vertical;
}


.submit-button {
   width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
       border: none;
   border-radius: 8px;
   font-size: 1.05rem;
    font-weight: 600;
	cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ecf0f1;
  padding: 3rem 1.5rem 1.5rem;

}

.footer-content {
   max-width   :        1200px;
	 margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	}

.footer-section h4 {
	  margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-logo {
   height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section ul {
	 list-style   :    none;

}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {


   color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;}

.footer-section a:hover {
     color   :   #ecf0f1;

}

.footer-section p {
    margin-bottom: 0.7rem;
  font-size: 0.95rem;
   line-height: 1.6;
}

.footer-bottom {
   text-align :      center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.8rem 0;
    }

    .burger-menu {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a,
    .footer-section p {
        color: #bdc3c7;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .expertise-number {
        font-size: 2rem;
    }
}.services-hero	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
   padding: 3rem 1.5rem;
   text-align :  center;
   margin-top: 60px;
}

.services-hero h1 {
    font-size    :       2.5rem; 
	margin-bottom    :      1rem; 
    line-height: 1.2;
}

.services-hero p {
  opacity   : 0.95;
	 font-size: 1.1rem;
}

.services-main {
               max-width: 1200px;
    margin: 0 auto;
   padding: 3rem 1.5rem;
}

.service-detail {
          margin-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
	padding-bottom: 3rem;
}

.service-detail:last-child     {
  border-bottom: none;
}

.service-detail-header {
	margin-bottom: 2rem;
}

.service-detail-header h2{
    font-size: 2rem;
  color: #2c3e50;
  position: relative;
    padding-bottom: 1rem; 
	
}

.service-detail-header h2::after {
  content: '';
   position: absolute;
  bottom: 0;
	left: 0;
   width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.service-detail-content {
	 display   :     grid;
    grid-template-columns: 1fr 1fr;
  gap: 2rem;
   align-items: center;
}

.service-detail-text  
  {
    padding: 1rem;
}

.service-detail-text p {


   margin-bottom: 1.5rem;
    font-size    :     1rem;
  color     :#555;
   line-height :  1.8;
     }

.service-detail-text h3 {
   font-size: 1.3rem;
   color: #2c3e50;
               margin-bottom    :       1rem;
    margin-top:  1.5rem;
}

.service-list {
    list-style: none;
   margin-bottom: 1.5rem;
}

.service-list li {
    padding    :        0.8rem 0;
	padding-left: 2rem;
  position :  relative;
     color: #555;
    line-height: 1.6;
}

.service-list li::before {

  content: '✓';

	  position: absolute;

	    left  :    0;

	   color: #667eea;

	     font-weight: bold;

	       font-size   :      1.2rem;
}

.service-detail-image {

	  overflow: hidden;
     }

.service-detail-image img {
  width: 100%;
  height: 350px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
}

.service-detail-image img:hover {
  transform: scale(1.05);
}

.services-comparison {
  background-color: #f8f9fa;
   padding: 4rem 1.5rem;
}

.services-comparison h2 {
  text-align: center;
          font-size   :     2rem;
 color: #2c3e50;
   margin-bottom  :   3rem;
}

.comparison-table 
 {


  max-width: 1000px;
    margin :0 auto;
    overflow-x : auto;
     }

.comparison-table table     {
    width: 100%;
  border-collapse: collapse;
    background: #ffffff;
      border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
}

.comparison-table th {
      padding: 1.2rem;
   text-align: left;
      font-weight: 600;
               font-size: 1rem;
}

.comparison-table td     {
  padding: 1.2rem;
  border-bottom   :      1px solid #f0f0f0;
    color: #555;
}

.comparison-table tbody tr:hover {
  background-color: #f9f9f9;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.services-faq {
    max-width: 900px;
	 margin: 0 auto;
   padding: 4rem 1.5rem;
}

.services-faq h2 {

   text-align: center;
	font-size: 2rem;
   color: #2c3e50;
     margin-bottom: 3rem;

}

.faq-container {
    display: flex;
	flex-direction: column;
    gap  :      1.5rem;
}

.faq-item {
        background: #ffffff;
  border: 1px solid #e0e0e0;
     border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
  cursor: pointer;
    display     :      flex;
    justify-content: space-between;
    align-items: center;
   user-select: none;
}

.faq-question h3
	{
       margin: 0;
  font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-toggle {
     font-size   :  1.5rem;
   color: #667eea;
    font-weight: bold;
   transition: all 0.3s ease;}

.faq-item.active .faq-toggle {


  transform: rotate(45deg);
	color: #764ba2;
	
}

.faq-answer {
  max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease; 

}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    padding-top: 0;

}  

.faq-answer p {


    margin: 0;
    color: #555;
  line-height: 1.8;
	font-size :     1rem; 
	}

.services-cta {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
          color: #ffffff; 
    padding: 3rem 1.5rem; 
    text-align: center;
}



.services-cta h2   {
   margin-bottom: 1rem;
   font-size: 2rem;
}

.services-cta p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.services-cta .cta-button {
    background: #ffffff;
	 color: #f5576c;
}

.thank-you-section {
   min-height: 70vh;
   	padding: 4rem 1.5rem;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     margin-top: 60px;
     display: flex;
      align-items: center;
     justify-content:   center;
}

.thank-you-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding  : 3rem;
     border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
	
}

.thank-you-icon {

  margin-bottom: 2rem;


}

.thank-you-icon svg {
	 animation :        checkmark 0.6s ease-in-out;
}@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}.thank-you-section h1 {
  font-size    :     2rem;
      color  :      #2c3e50;
	 margin-bottom: 0.5rem;
}

.thank-you-subtitle {
  font-size: 1.1rem;
   color: #667eea;
   margin-bottom: 2rem;
  font-weight: 600;


}

.thank-you-content {
   text-align: left;
    margin-bottom: 2rem;
}

.thank-you-content p  
  {
   margin-bottom: 1.5rem;
   color: #555;
    line-height: 1.8;
    font-size     :       1rem;
}

.thank-you-info   {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f0f0 100%);
  padding: 1.5rem;
   border-radius: 12px;
   margin-bottom  : 1.5rem;
}

.thank-you-info h3 {
                    color  :#2c3e50;
  margin-bottom: 1rem;
   font-size: 1.1rem;
     }

.info-list {
   counter-reset: step;
    margin: 0;
  list-style: none;
}

.info-list li    {
   counter-increment: step;
    padding: 0.8rem 0;
    padding-left: 2rem;
  position:      relative;
  color: #555;
}

.info-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
    width: 1.5rem;
   height:1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.8rem;
    font-weight: bold;
}

.thank-you-features {
	margin-bottom: 1.5rem;

}

.thank-you-features h3
	{
  color    :  #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.features-grid {
	display   :        grid;
  grid-template-columns: repeat(3, 1fr);
   gap  :       1rem;
}

.feature-item  
  {
    background: #f8f9fa;
      padding: 1rem;
    border-radius: 8px;
  text-align: center;
}

.feature-icon {

	    margin-bottom: 0.5rem;
  color: #667eea;
}

.feature-item p 
 {
  font-size: 0.9rem;
  margin :       0;
}

.feature-item strong  
  {
    color: #2c3e50;
    display: block;
	margin-bottom: 0.3rem;
}

.thank-you-note {
  background: #fff9e6;
  border-left     :        4px solid #f39c12;
    padding: 1rem;
    border-radius: 8px;
				 margin-bottom: 1rem;
}

.thank-you-note p {

    margin: 0;
   color: #7a6d2a;
     }

.thank-you-actions {
    display: flex;
   gap: 1rem;
    justify-content: center;
	flex-wrap: wrap; 

}

.btn-primary,
.btn-secondary {
	 display: inline-block;
   padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
	font-weight: 600;
  transition: all 0.3s ease;
  border: none;
    cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}  

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
        background: #ffffff;
   color     :     #667eea;
	border: 2px solid #667eea;
}



.btn-secondary:hover {
   background     :#667eea;
  color    :    #ffffff;
}

.next-steps {

	    background-color     :   #f8f9fa;
   padding: 3rem 1.5rem;

}

.next-steps h2 {
  text-align: center;
    font-size: 2rem;
   color: #2c3e50;
  margin-bottom: 2rem;
}

.next-steps-grid {
  max-width: 1000px;
  margin: 0 auto;
   display :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
   background: #ffffff;
   padding: 2rem;
		 border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
         text-align: center;
   transition: all 0.3s ease;
	}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-card h3 
 {
  color: #2c3e50;
 margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-card p {
  color: #555;
  line-height: 1.6;

}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-image img {
        height: 250px;
    }

    .services-comparison {
        padding: 2rem 1rem;
    }

    .comparison-table table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .thank-you-container {
        padding: 2rem;
        margin: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-header h2 {
        font-size: 1.5rem;
    }

    .thank-you-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .thank-you-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .thank-you-section h1 {
        font-size: 1.5rem;
    }

    .thank-you-subtitle {
        font-size: 1rem;
    }

    .info-list li {
        font-size: 0.95rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin-top: 60px;
  min-height: calc(100vh - 350px);
}

.policyContainer {
    max-width: 900px;
      margin: 0 auto;
   text-align: left;
    background: #ffffff;
    padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policyContainer h1 {
   font-size: 2.8rem;
  color     :  #2c3e50;
   margin-bottom: 2rem;
  font-weight: 700;
 padding-bottom: 1.5rem;
  border-bottom: 3px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	
}

.policyContainer h2 {
	font-size: 1.8rem;
   color:        #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
   font-weight: 600;
     position: relative;
	padding-left: 1.5rem;
}

.policyContainer h2::before {
  content: '';
          position: absolute;
         left: 0;
   top: 50%;
  transform: translateY(-50%);
 width: 4px;
	 height: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 border-radius  :  2px;
}

.policyContainer p {
  color: #555;
   margin-bottom: 1.5rem;
 line-height: 1.9;
	 font-size: 1.05rem;
    text-align    : justify;
}

.policyContainer ul {
   list-style: none; 
	        margin: 1.5rem 0; 
	   padding-left: 0;
}

.policyContainer li {
    margin-bottom: 1rem;
  padding-left: 2rem;
		 position: relative;
   color     :     #555;
  line-height: 1.8; 
	
}

.policyContainer li::before {
  content: '▸';
  position:       absolute;
  left: 0;
 color: #667eea;
  font-size: 1.5rem;
   font-weight: bold;
}

.policyContainer a {
   color: #667eea; 
  text-decoration     :        none; 
   transition: all 0.3s ease; 
   font-weight: 500;
}

.policyContainer a:hover {
  color    :    #764ba2;
  text-decoration: underline;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        margin-top: 60px;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 12px;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }

    .policyContainer li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.8rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h2::before {
        width: 3px;
        height: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .policyContainer li {
        font-size: 0.9rem;
        padding-left: 1.6rem;
        margin-bottom: 0.8rem;
    }
}html {
   scroll-behavior:      smooth;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        margin-top: 0;
        padding: 20px;
        background: #ffffff;
    }

    .policyContainer {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .policyContainer h1 {
        page-break-after: avoid;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        widows: 2;
        orphans: 2;
    }
}