.navbar {
    background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	 position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 80px;
}

.logo img {
    height: 94px;
   width: auto;
    display: block;
}

.nav-menu {
 display: flex;
   list-style: none;
    gap: 40px;
   margin: 0;
  padding: 0;
}

.nav-menu a {
     color: #2c3e50;

  text-decoration: none;

   font-weight: 500;

  font-size: 1rem;

  transition: color 0.3s ease;

    position: relative;
	}

.nav-menu a::after {
  content: '';
    position   :        absolute;
  bottom: -5px;
  left: 0;
  width:        0;
   height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;

}

.nav-menu a:hover::after {
  width: 100%; 

}

.burger-menu {
  display: none;
  background: none;
   border: none;
    cursor: pointer;
        flex-direction  :       column;
  gap: 6px;
   padding: 0;
}

.burger-menu span {
  width: 28px;
	height    :       3px;
   background: #2c3e50;
    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);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: white;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: #f8f9fa;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 70px;
    }
}* {
  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     :      #333;
	
}

.container {
    max-width :      1200px;
	 margin: 0 auto;
   padding: 0 20px;
}

.btn-primary		{
    display: inline-block;
   padding: 14px 40px;
  background: white;
   color: #667eea;
    text-decoration: none;
   border-radius: 50px;
    font-weight    :  600;
  transition :       all 0.3s ease;
         border: 2px solid white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary		{
   display:     inline-block;
    padding: 14px 40px;
   background: transparent;
   color: #667eea;
	 text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
     background: #667eea;
  color: white;
  transform: translateY(-2px);
     }

.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :       white;
   padding  :    100px 20px;
    text-align: center;
  min-height: 400px;
  display: flex;
                    align-items: center;
    justify-content   :center;
}

.services-hero h1 {
    margin-bottom: 20px;
  font-size: 3.5rem;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.3rem;
	opacity: 0.95;
    max-width :   700px;
    margin: 0 auto;


}

.services-overview {
  padding: 80px 20px;
    background: white;
}



.services-overview h2 {


   font-size: 2.5rem;
    margin-bottom: 40px;
  text-align: center;
   color: #2c3e50;


}

.overview-intro
{
    font-size: 1.1rem;
				 text-align: center;
  color: #666;
   max-width:        800px;
   margin: 0 auto;
  line-height: 1.8;
}

.service-detail {
	 padding: 80px 20px;
   background: #f8f9fa;
}

.service-item {
   display: grid;
     grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
  margin-bottom: 80px;
   background: white;
    padding: 50px;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item-reverse {
  grid-template-columns: 1fr 1fr;
}

.service-item-reverse .service-image {
    order:     2;
}

.service-item-reverse .service-content {
   order: 1;
}

.service-image     {
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
	width: 100%;
  transition: transform 0.3s ease;
     height   :        auto;
    display: block;
}

.service-item:hover .service-image img {
  transform: scale(1.02);

}

.service-content h2 {
  font-size  :        2rem;
  margin-bottom     :  20px;
    color: #2c3e50;
}

.service-content h3 {
 font-size: 1.3rem;
    margin-top: 30px;
         margin-bottom: 15px;
    color: #667eea;
}

.service-content p {
               color    :   #666;
  line-height: 1.8;
  margin-bottom :        15px;
}

.service-features {
   list-style: none;
  margin-bottom: 20px;
}

.service-features li {
                    padding: 10px 0;
               color: #555;
  position: relative;
   padding-left: 30px;
	
}

.service-features li::before {
  content: '✓';
   position: absolute;
   left: 0;
        color: #667eea;
                    font-weight: bold;
   font-size: 1.2rem;
}

.service-price {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 20px;
   border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 600;
   margin-top: 30px;
    text-align: center;
}

.service-comparison {
    padding: 80px 20px;
   background: white;
} 

.service-comparison h2 {
   font-size: 2.5rem;
     margin-bottom: 60px;
   text-align: center;
    color: #2c3e50;
}

.comparison-table {
  background     :      #f8f9fa;

	        border-radius: 12px;

		overflow: hidden;

	  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}  

.table-header {
          display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   font-weight: 600;
  padding: 20px;
	gap: 15px;
}

.table-row {
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    gap: 15px;
    align-items: center;
}

.table-row:last-child  {
    border-bottom: none;
}

.table-cell {
 text-align: center;
}

.table-row .table-cell:first-child		{
   text-align: left;
    font-weight: 500;
   color: #2c3e50;
}

.table-row:nth-child(even) {
  background: white;
}

.table-row:nth-child(odd) {

	      background: #f8f9fa;

}

.process-section {
   padding: 80px 20px;
   background: #f8f9fa;
}

.process-section h2 {
                    font-size: 2.5rem;
   margin-bottom    :    60px;
   text-align: center;
    color: #2c3e50;
}

.process-grid {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
  background: white;
   padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}  

.process-number {
     width: 60px;
      height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :    white;
    border-radius: 50%;
 display: flex;
    align-items: center;
    justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
	margin: 0 auto 20px;}

.process-card h3 {
	 color: #2c3e50;
   margin-bottom: 15px;
    font-size: 1.3rem;
}



.process-card p {
	    color: #666;
   line-height: 1.7;


}

.cta-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    text-align: center;
}

.cta-services h2 {
   font-size: 2.5rem;
    margin-bottom  : 30px;
}  

.cta-services p {
  font-size: 1.2rem;
   margin-bottom: 40px;
  opacity :     0.95;
  max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.cta-services .btn-primary {
   background: white;
    color: #667eea;
   font-size: 1.1rem;
}

.thank-you-section {
	 min-height:     80vh;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thank-you-container {
   max-width    :      700px;
	margin: 0 auto;
  background: white;
   padding: 80px 50px;
	 border-radius   :       20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.thank-you-icon {
    margin-bottom   :     40px;
}

.thank-you-icon svg {
    animation: slideIn 0.6s ease-out;
}@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thank-you-container h1 {
    font-size    :      2.8rem;
  color: #2c3e50;
	 margin-bottom: 15px;
 font-weight: 700;
}

.thank-you-main {
  font-size: 1.5rem;
  color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.thank-you-text {
	font-size: 1.05rem;
   color: #666;
    line-height:   1.8;
    margin-bottom: 50px;
}



.thank-you-info {
  display: grid;
     grid-template-columns: 1fr 1fr;
     gap   :30px;
       margin-bottom: 50px;
}

.info-card {
    background: #f8f9fa;
  padding: 30px;
 border-radius: 12px;
   border-left: 4px solid #667eea;

}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
   color: #2c3e50;
}

.info-card p {
   color: #666;
  line-height: 1.7;
	font-size: 0.95rem;
}

.thank-you-next-steps {
	border-radius: 12px;
  padding: 40px;
   margin-bottom: 50px;
  background  :     #f8f9fa;
   text-align: left;
}

.thank-you-next-steps h3 {
	color: #2c3e50;
   margin-bottom: 20px;
    font-size    :       1.2rem;
}

.next-steps-list {

    list-style: none;
     }

.next-steps-list li {
  padding: 12px 0;
   color: #666;
          position: relative;
  padding-left: 30px;
}

.next-steps-list li::before {
  content: '➜';
    position: absolute;
  left: 0;
  color: #667eea;
   font-weight: bold;

}

.next-steps-list a {
   color: #667eea;
	 text-decoration: none;
   font-weight: 600;
   transition: color 0.3s ease;
}

.next-steps-list a:hover {
     color: #764ba2;
   text-decoration: underline;
	}

.thank-you-actions {
  display: flex;

   gap :20px;

	justify-content: center;
}

footer {


   padding     :        60px 20px 30px;
   background: #2c3e50;
    color: white;
     }

.footer-content

{

  display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 50px;
     }

.footer-brand img {
	 height: 136px;
  width: auto;
	margin-bottom   :     20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height :     1.8;
  margin-bottom: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
   gap: 15px;
}

.footer-info p {
   display: flex;
   align-items: flex-start;
   gap: 10px;
  color: rgba(255,255,255,0.8);
   line-height     :       1.6;
}

.footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
   list-style: none;
}

.footer-links li {
   margin-bottom: 12px;
}

.footer-links a {

	  color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: 30px;

    text-align   :   center;

  color: rgba(255,255,255,0.6);

          font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration     :     none;
  transition: color 0.3s ease;
     margin: 0 15px;
}

.footer-bottom a:hover {
   color: white;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .service-item-reverse .service-image {
        order: initial;
    }

    .service-item-reverse .service-content {
        order: initial;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        text-align: left !important;
    }

    .table-row .table-cell:first-child {
        font-weight: 600;
        background: #e8eef5;
        padding: 10px;
        border-radius: 5px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .thank-you-info {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions a {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .thank-you-container {
        padding: 50px 25px;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 20px;
    }
}.policySection {
     min-height :        70vh;
    background: #f8f9fa;
	padding :      80px 2rem;
}

.policyContainer {
  max-width: 800px;
  margin: 0 auto;
    text-align: left;
      background: white;
   padding: 60px 50px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 40px;
    font-weight   :  700;
}

.policyContainer h2 {
    font-size: 1.8rem;
   color   :        #2c3e50;
	margin-bottom: 20px;
 margin-top: 30px;
  font-weight: 600;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

.policyContainer p {
  color: #555;
    margin-bottom: 15px;
   line-height: 1.8;
  font-size: 1.05rem;
}

.policyContainer strong {
    color: #2c3e50;
   font-weight: 600;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 40px 25px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 30px 15px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}