*  
  {
    margin: 0;
    padding: 0;
    box-sizing    :   border-box;
}

html {
     scroll-behavior: smooth;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	  line-height: 1.6; 
	   color: #2c3e50; 
		background-color   :       #f8f9fa;
}

.navbar {
     background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    padding: 1rem 0;
   position: sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 2px 15px 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;
}

.nav-brand  
  {
   flex: 0 0 auto;


}

.logo-img {
    height: 50px;
  width : auto;
  filter: brightness(0) invert(1);}

.nav-menu


{
  display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
	color: white;
  text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;

}

.nav-link:hover     {
  background-color: rgba(255, 255, 255, 0.1);
	color: #00d4ff;
}  

.nav-toggle {
	 display: none; 
	   background: none; 
	   border: none; 
	   cursor :       pointer; 
	    flex-direction: column; 
	    gap:    6px; 
	    padding: 0.5rem; 

} 

.hamburger 
 {
    width    :   24px;
	height: 2px;
  background-color: white;
	border-radius: 2px;
    transition: all 0.3s ease;
}  

.nav-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}


.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
   margin: 0 auto;
  max-width :        1200px;
   grid-template-columns: 1fr 1fr;
    display: grid;
   gap     :       3rem;
  min-height   :   600px;
   padding: 4rem 2rem;
  align-items: center;
}

.hero-content h1 {
		font-size: 3rem;
   margin-bottom: 1.5rem;
   color: #1a2a3a;
  line-height: 1.2;
	}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
}

.hero-image img {
   width:    100%;
        height: auto;
	border-radius   :       12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
   padding: 1rem 2rem;
  border-radius :6px;
  text-decoration: none;
   font-weight: 600;
       transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.intro-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 3rem 2rem;
    text-align: center;
  margin: 2rem 0;
}  

.intro-wrapper {
     max-width :  800px;
  margin     :     0 auto;

}

.intro-wrapper h2 {
       font-size: 2.2rem;
   margin-bottom: 1rem;
   color: #1a2a3a;
}

.intro-wrapper p {
   line-height   :     1.8;
    font-size: 1rem;
          color   :     #2c3e50;
}

.features-section {
  max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem;
}

.features-section h2		{
   font-size: 2.5rem;
		 text-align:center;
		margin-bottom: 3rem;
	   color: #1a2a3a;
}

.features-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap    : 2rem; 

}

.feature-card {

	   background     :white;

	    border-radius: 10px;

	   padding: 2rem;

	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

	   transition :      all 0.3s ease;
     }


.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0099cc;
}

.feature-card p {


 color: #555;
  line-height: 1.7;
	margin-bottom: 1.5rem;}

.feature-card img {
  width :100%;
         height     :   250px;
  object-fit: cover;
   border-radius: 8px;

}

.strategies-section {
    display :    grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    max-width: 1200px;
       margin   :     4rem auto;
    padding: 0 2rem;
     }

.strategies-content {
               display  :    grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}



.strategy-item {
  background: #f0f8ff;
    padding: 2rem;
  border-radius     :   8px;
   border-left: 4px solid #00d4ff;
}

.strategy-item h3 {
    font-size: 1.2rem;
   margin-bottom: 0.8rem;
   color  :       #0099cc;
}

.strategy-item p {
  color: #555;
    line-height: 1.6;
   font-size: 0.95rem;
} 

.strategies-image img {
  width: 100%;
   height  :        auto;
			border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
  margin: 4rem 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
     text-align: center;
   margin-bottom: 3rem;
   color: white;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap :     2rem;
    max-width: 1200px;
   margin: 0 auto;
}  

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
        padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   border-top: 4px solid #00d4ff;
}

.testimonial-card p {
   color: #2c3e50;
	   font-style   :italic;
	       margin-bottom :   1rem;
	               line-height: 1.7;
	    font-size  :  0.95rem;
}


.testimonial-author {
	 color: #0099cc;
   font-weight     :600;
       display: block;
}

.cta-section {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   padding:4rem 2rem;
   text-align: center;
    margin    :    3rem 0;
}

.cta-section h2 {
     color    :  white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {


    font-size: 1.1rem; 
  color: rgba(255, 255, 255, 0.95); 
  margin-bottom    : 2rem; 
    max-width: 600px; 
  margin-left: auto; 
    margin-right: auto;


}

.cta-button-large {
	  display: inline-block;
   background: white;
  color   :        #0099cc;
    padding  :  1.2rem 2.5rem;
   border-radius: 6px;
   text-decoration: none;
  font-weight: 700;
   transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
	    max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem;


}

.contact-wrapper {
    background    : white;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-wrapper h2 {
    font-size    : 2.2rem;
	    margin-bottom: 1rem;
	    color: #1a2a3a;

}

.contact-wrapper > p {
   color: #555;
    margin-bottom: 2rem;
         font-size: 1rem;
}

.contact-form {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
   margin-bottom: 3rem;
}

.form-group {

	    grid-column: span 1;
         display: flex;
	flex-direction: column;
}

.form-group label {
   font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea

{
   padding: 0.8rem;
  border     :        2px solid #ecf0f1;
  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: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-group textarea{
  resize: vertical;
  min-height   : 120px;
}

.form-button {
    grid-column    :       1 / -1;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color:   white;
  padding: 1rem 2rem;
  border: none;
   border-radius: 6px;
  font-size: 1rem;
   font-weight: 600;
     cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.contact-info {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
    padding: 2rem;
	border-radius: 8px;
     border-left: 4px solid #00d4ff;
}  

.contact-info h3 {
    color: #0099cc;
	margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info p {
         color: #2c3e50; 
   line-height: 1.8;
}

.footer {
  background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  color: white;
  padding: 3rem 2rem 1.5rem;
   margin-top: 4rem;
}

.footer-container   {
   	 max-width: 1200px;
  margin  :      0 auto;


}

.footer-brand {
	 margin-bottom: 2rem;
}

.footer-logo {
	  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
	}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 
 {
  margin-bottom: 1rem;
        color: #00d4ff;
    font-size: 1.1rem;
}

.footer-section ul {
         list-style    :   none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
 transition: all 0.3s ease;
}

.footer-section a:hover {
  color    :#00d4ff;
}

.footer-section p 
 {
  color: rgba(255, 255, 255, 0.8);
	 line-height: 1.8;
}

.footer-bottom
	{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 2rem;
    text-align:center;
  color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c3e50;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .strategies-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strategies-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
               padding   :   4rem 2rem;
  text-align    :        center;
  color   :      white;
   min-height: 300px;
         display: flex;
   align-items: center;
	 justify-content: center;
}

.services-hero-content h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.services-hero-content p
	{
     font-size: 1.3rem;
    opacity: 0.95;
}

.services-main {
    padding: 4rem 2rem;
  background-color: #f8f9fa;}

.services-container
{
  max-width: 1200px;
    margin: 0 auto;


}

.services-main h2 {
				 font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
    color: #1a2a3a;
}

.services-intro {
  text-align: center;
         color:     #555;
    font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width :       800px;
  margin-left: auto;
    margin-right: auto;
  line-height: 1.8;
	
}

.services-grid     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap   :   2rem;
    margin-bottom: 3rem;
}

.service-card {
  background: white;
   border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition   :   all 0.3s ease;
  border-top: 4px solid #00d4ff;
  display :       flex;
    flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	


}  

.service-icon-wrapper {
  width: 80px;
      height: 80px;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    border-radius     :     10px;
    display: flex;
    align-items: center;
  justify-content: center;
   margin-bottom:      1.5rem;
}

.service-icon {

	   width:       50px;
   height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 153, 204, 0.2)); 
	


}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #0099cc;
}

.service-card p {
  color: #555;
   line-height: 1.7;
    margin-bottom: 1.5rem;
   flex-grow: 1;
}  

.service-features {
  list-style :   none;
    margin-bottom: 1.5rem;
}

.service-features li {
     color: #666;
  padding: 0.5rem 0;
  padding-left     :    1.5rem;
   position: relative;}

.service-features li:before {
  content: '✓';
  position: absolute;
    left  :  0;
    color: #00d4ff;
    font-weight: bold;
}

.service-price {
     background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
  padding: 1rem;
    border-radius: 6px;
	color: #0099cc;
   font-weight: 700;
         text-align: center;
	font-size  :        1.05rem;
}

.comparison-section {
  padding: 4rem 2rem; 
   background-color: white;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
   color: #1a2a3a;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius  : 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.comparison-table th {
  padding: 1.5rem;
    text-align: left;
    font-weight: 700;
  border: 1px solid #ecf0f1;
}

.comparison-table td		{
      padding  :        1.5rem;
   border: 1px solid #ecf0f1;
         color: #555;
}

.comparison-table tbody tr:nth-child(even) {
                    background-color: #f8f9fa;
}

.comparison-table .check {
                    color: #27ae60;
    font-weight: 700;
}

.comparison-table .cross {
  color    :       #e74c3c;
    font-weight: 700; 

}

.process-section {

	    padding: 4rem 2rem;

  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
	}  

.process-section h2

{
  font-size: 2.5rem;
    text-align:       center;
   margin-bottom: 3rem;
	color: #1a2a3a; 
	
}

.process-steps {
       display: flex;
  justify-content: center;
               align-items: center;
    flex-wrap: wrap;
   gap: 2rem;
 max-width: 1000px;
   margin: 0 auto;


}

.process-step {

   background: white;
   padding: 2rem;
   border-radius: 10px;
          text-align: center;
	 flex     :     0 1 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;


}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.step-number {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
    width: 60px;
  height    : 60px;
      border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content:     center;
  font-size    :1.8rem;
    font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.process-step h3 {
   color: #0099cc;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.process-step p {

	color: #555;
  font-size: 0.95rem;
    line-height   :1.6;

}

.process-arrow {
    width    :  40px;
  height: 40px;
	position  :      relative;
	display: none;
}

.process-arrow:after {
  content: ''; 
	   position: absolute; 
	   width: 100%; 
	  height: 3px; 
	  background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%); 
	   top: 50%; 
		left: 0; 
	  transform: translateY(-50%);
}

.process-arrow:before {
  content: '';
   position: absolute;
   width: 10px;
    height: 10px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.faq-section {
  padding: 4rem 2rem;
    background-color: white;
}

.faq-section h2 {
    font-size: 2.5rem;
      text-align: center;
       margin-bottom: 3rem;
       color: #1a2a3a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
    padding     :        2rem;
   border-radius: 10px;
  border-left: 4px solid #00d4ff;
    transition   :all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.faq-item h3 {


  color: #0099cc;
  margin-bottom: 1rem;
  font-size: 1.1rem;


}

.faq-item p {
   color: #555;
    font-size: 0.95rem;
  line-height: 1.7;
}  

.benefits-section {
  padding: 4rem 2rem;

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.benefits-section h2 {
    font-size   :       2.5rem;
			text-align:     center;
  margin-bottom: 3rem;
    color :white;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.95);
               padding     :2rem;
    border-radius: 10px;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
}

.benefit-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.benefit-number {
	font-size: 2.5rem;
   color: #00d4ff;
    font-weight: 700;
   margin-bottom: 0.5rem;
}

.benefit-item p


{
    color: #2c3e50;
   font-size: 1rem;
  line-height: 1.6;
}

.cta-services {
    padding: 4rem 2rem; 
	  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%); 
	    text-align: center; 
	   color :   white;
}

.cta-services h2 {
   font-size: 2.2rem;
   margin-bottom   :   1rem;
  color: white;
}

.cta-services p {
	font-size: 1.1rem;
      margin-bottom: 2rem;
    opacity: 0.95;
	
}

.thankyou-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  min-height: 80vh;
   display   :  flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container{
   background :    white;
  padding: 3rem;
  border-radius     : 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	max-width     :  700px;
	text-align: center;
  animation     :   slideUp 0.5s ease-out;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
		 margin-bottom: 2rem;
}

.success-img {
  width: 100px;
   height: 100px;
  filter: drop-shadow(0 5px 15px rgba(39, 174, 96, 0.3));
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size: 2.5rem;
   color: #27ae60;
  margin-bottom:        0.5rem;
}

.thankyou-subtitle {
  font-size: 1.2rem;
  color  :        #0099cc;
	margin-bottom  :        2rem;
   font-weight: 600;
}



.thankyou-content


{
  text-align: left;
   margin-bottom: 2rem;
}

.thankyou-content p{
    color: #555;
    line-height: 1.8;
  margin-bottom: 1.5rem;
   font-size: 1rem;
}

.next-steps {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
	padding: 2rem;
   border-radius: 10px;
    margin  :  2rem 0;
  border-left: 4px solid #00d4ff;
}

.next-steps h2 {
			color: #0099cc;
   margin-bottom: 1.5rem;
         font-size: 1.3rem;
    text-align: center;
}

.steps-list {
   display: flex;
   flex-direction: column;
   gap  :1.5rem;
}

.step-item {

	  display: flex;
	 gap: 1.5rem;
   align-items  :    flex-start;

}

.step-icon    {
               width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border-radius: 50%;
  display :     flex;
  align-items: center;
   justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
	
}

.step-text h3 {
   color: #0099cc;
  margin-bottom: 0.5rem;
   font-size: 1.05rem;
}

.step-text p {

   color: #666; 
	  font-size: 0.95rem; 
	    margin-bottom: 0;


}

.alternative-contact  
  {
	  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a8 100%);
    padding: 2rem;
	border-radius: 10px;
  margin    :       2rem 0;
   border-left: 4px solid #f39c12;
}

.alternative-contact h3 {
   color: #d68910;
   margin-bottom: 1rem;
}

.alternative-contact p 
 {
  color: #7d6608;
  margin-bottom: 0.8rem;
}

.contact-phone {
	   font-size: 1.2rem;
    color: #e67e22;
     }

.resources {
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
  padding :   2rem;
    border-radius: 10px;
  margin: 2rem 0;
   border-left  :  4px solid #27ae60;


}

.resources h3 {
   color: #27ae60;
    margin-bottom: 1rem;
}

.resources p {
    color: #1e8449;
		 margin-bottom: 1rem;
}

.resource-links {
    display: flex;
     gap: 1rem;
       flex-wrap   :     wrap;
     justify-content: center; 
	
}

.resource-link {

	    display: inline-block;
    background:        #27ae60;
   color: white;
  padding     :  0.8rem 1.5rem;
   border-radius: 6px;
   text-decoration    :       none;
  transition: all 0.3s ease;
  font-weight     :     500;
     }

.resource-link:hover {
    background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.social-note {
       color    :#888;
    font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ecf0f1;
     }

.testimonial-block {
   padding: 4rem 2rem;
  background-color: white;
}

.testimonial-highlight
	{
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
  padding: 3rem;
          border-radius: 10px;
  border-left: 4px solid #00d4ff;
          max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-highlight p {
   color: #2c3e50;
    font-size: 1.1rem;
   font-style: italic;
          line-height: 1.8;
	margin-bottom: 1.5rem;
}

.testimonial-highlight-author {
       color: #0099cc;
            font-weight: 600;
      display: block;
}@media (max-width: 1024px) {
    .process-steps {
        gap: 1rem;
    }

    .process-step {
        flex: 0 1 150px;
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        display: none;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .step-item {
        gap: 1rem;
    }

    .resource-links {
        flex-direction: column;
    }

    .resource-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-main h2,
    .comparison-section h2,
    .process-section h2,
    .faq-section h2,
    .benefits-section h2,
    .cta-services h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .alternative-contact {
        padding: 1.5rem;
    }

    .resources {
        padding: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
   background    :#f8f9fa;
	min-height: 80vh;
}

.policyContainer {


	max-width     : 800px;
   margin: 0 auto;
  text-align: left;
  background: white;
    padding   :       3rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);}

.policyContainer h1 {
    font-size: 2.8rem;
    color: #1a2a3a;
    margin-bottom: 2rem;
   font-weight: 700;
    padding-bottom: 1rem;
  border-bottom: 3px solid #00d4ff; 
	
}

.policyContainer h2 {
  font-size  :1.6rem;
   color: #0099cc;
    margin-top: 2rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.policyContainer p {
    color   : #555;
    margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size: 1rem;
               text-align: justify;
}

.policyContainer h2:first-of-type{
	   margin-top: 1rem;
     }

.policyContainer p strong {
          color: #2c3e50;
   font-weight: 600;
}

.policyContainer h2 {

		 border-left: 4px solid #00d4ff;
   padding-left: 1rem;
	
}

.policyContainer h2:hover
	{
   color: #00d4ff;
    transition: all 0.3s ease;
}

.policyContainer ul {
    padding-left: 1rem;
		 margin: 1.5rem 0;
  list-style-position: inside;
}

.policyContainer li {
    color: #555;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.policyContainer li:before {
  content: '';
   display   :inline-block;
  width: 6px;
  height: 6px;
  background-color: #00d4ff;
        border-radius: 50%;
    margin-right: 0.8rem;
    margin-left: -0.8rem;
}

.policyContainer {
    color    :  #2c3e50;
}

.policyContainer p {
    hyphens: auto;

   word-spacing  :   0.2em;
}@media print {
    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        max-width: 100%;
        box-shadow: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
        border-bottom: 2px solid #00d4ff;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
        padding-left: 0.8rem;
        border-left: 3px solid #00d4ff;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
    }

    .policyContainer ul {
        padding-left: 0.5rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 360px) {
    .policyContainer h1 {
        font-size: 1.4rem;
    }

    .policyContainer h2 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
    }
}

@media (prefers-color-scheme: dark) {
    .policySection {
        background: #1a1a1a;
    }

    .policyContainer {
        background: #2a2a2a;
        color: #e0e0e0;
    }

    .policyContainer h1 {
        color: #00d4ff;
    }

    .policyContainer h2 {
        color: #00d4ff;
    }

    .policyContainer p {
        color: #c0c0c0;
    }

    .policyContainer p strong {
        color: #e0e0e0;
    }

    .policyContainer li {
        color: #c0c0c0;
    }
}.policyContainer h2 {

	  transition: all 0.3s ease;}

.policyContainer h2:hover {
   padding-left: 1.2rem;
}