.main-nav {
  background     :      white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
   z-index: 1000;
}

.nav-wrapper  {
    display: flex;
   justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
      position: relative;
}

.nav-logo a {
    text-decoration:       none;
   display: flex;
   align-items: center;
   font-size: 1.5rem;
    font-weight: 700;
  color   :#2c3e50;
}

.logo-img {


   max-width: 140px;
       height: auto;
       display: block;}

.nav-links {
     display: flex;
   list-style  : none;
  gap: 35px;
}

.nav-links li a {
               color: #2c3e50;
  text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
    padding: 8px 12px;
}


.nav-links li a:hover {
       color: #667eea;}

.burger-menu {
   display: none;
	background: none;
   border  :  none;
    cursor  :     pointer;
       flex-direction   : column;
  justify-content     :    center;
  width: 30px;
	height    :      24px;
    padding: 0;
}

.burger-menu span {
   width: 25px;
    height: 3px;
  background: #2c3e50;
                    margin: 4px 0;
    border-radius: 2px;
   transition  :   all 0.3s ease;
	 display: block;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.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-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        max-height: 300px;
        padding: 20px 0;
    }
    
    .nav-links li {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 0;
    }
}.site-footer  {
       background: #2c3e50;
   color     :        #ecf0f1;
   padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	    gap :       40px;
	  margin-bottom   :      40px;
}

.footer-block h4 {
	color: white;
  margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-block ul li {
   margin-bottom: 12px;
}

.footer-block a {


   color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
     }

.footer-block a:hover


{
                    color: #667eea;
	
}

.footer-block p {
                    line-height: 1.8;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.footer-logo {
  margin-bottom: 15px;


}

.footer-logo img  
  {
    max-width :   160px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 25px;
  text-align    :center;
    color: #95a5a6;
}

.policySection {
   padding: 80px 2rem;
	 background: #f8f9fa;
}

.policyContainer
	{
   max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
   font-size: 2.5rem;
         color: #2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.policyContainer p {
   color    :      #7f8c8d; 
    margin-bottom: 1.5rem; 
 line-height: 1.7; 
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :white;
   padding: 100px 0;
    text-align: center;


}

.services-hero h1 {
      font-size: 3rem;
   margin-bottom   :20px;
  font-weight: 700;
}

.services-hero p

{
   font-size: 1.3rem;
       opacity    : 0.95;
  max-width: 700px;
	margin-left   :      auto;
    margin-right: auto;
}

.services-main
	{
    background: white;
  padding: 80px 0;
	
}



.services-intro {
    text-align: center;
      margin-bottom: 70px;
}


.services-intro h2 {
	                    font-size: 2.8rem;
	color: #2c3e50;
    margin-bottom   :25px;

}

.services-intro p {


   margin-left: auto; 
	   font-size: 1.15rem; 
		max-width: 800px; 
	  color: #555; 
	    margin-right: auto; 
	  line-height: 1.8;

}

.service-detail-grid {
  display     :       grid;
    gap   :     60px;
    margin-top: 50px;
}

.service-detail-item
{
	 display: grid;
    grid-template-columns  : 1fr 1fr;
 gap: 50px;
  align-items: start;
	}

.service-detail-item:nth-child(even)		{
     direction: rtl;
}

.service-detail-item:nth-child(even) .detail-content  {
     direction: ltr;
     }

.detail-image  
  {
  border-radius: 15px;
                    overflow     :       hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.detail-image img {
	 width: 100%;
  height: auto;
  display :    block;
} 

.detail-content h3 {
 font-size: 2rem;
  color: #667eea;
        margin-bottom  :20px;
	 font-weight: 700; 

}

.detail-content p {
    font-size: 1.1rem;
    color: #555;
   line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
   margin    : 30px 0;
	 padding: 0;
}

.service-features li {
    padding: 12px 0;
  padding-left: 30px;
    position: relative;
    color    :        #555;
    font-size: 1.05rem;
  line-height: 1.6;
}

.service-features li:before {
  position: absolute;
   left: 0;
  content: "→";
    font-weight: bold;
   font-size: 1.3rem;
         color: #f39c12;
}

.service-price {
	font-size: 1.5rem;
  color: #667eea;
    font-weight: 700;
  margin: 25px 0;
}

.btn-service-cta {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 14px 36px;
	border-radius    :    50px;
  text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);


}

.service-comparison {
  background: #f8f9fa;
    padding    :       80px 0;
}

.service-comparison h2 {
          font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
	text-align    : center;
}

.comparison-table {
    overflow-x:        auto; 
	
}

.comparison-table table {
   width: 100%;
	border-collapse: collapse;
    background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   border-radius   :    12px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	  color: white;
}

.comparison-table th

{
  padding: 25px 15px;
    text-align: center;
	 font-weight: 600;
       font-size: 0.95rem;
}

.comparison-table td
{
  padding: 20px 15px;
  text-align: center;
   border-bottom: 1px solid #e0e0e0;
	color: #555;
}

.comparison-table tbody tr:last-child td {

  border-bottom: none;


}

.comparison-table tbody tr:hover   {
    background: #f8f9fa;
}

.comparison-table tbody tr td:first-child {
  text-align: left;
  background: #f8f9fa;
  font-weight: 500;
}

.service-faq		{
    background: white;
    padding: 80px 0; 

}

.service-faq h2 {
  margin-bottom: 50px;
	 color   :      #2c3e50;
   font-size: 2.5rem;
    text-align: center;
}

.faq-items {
   display: grid;
   gap: 20px;
    max-width   :  900px;
   margin: 0 auto;
}

.faq-item {
   -webkit-transition   :     all 0.3s ease;
  -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  background: white;
    border     :2px solid #e0e0e0;
      border-radius: 12px;
  overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {

	   border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);

}

.faq-question {
	    display :   flex;
   justify-content: space-between;
    align-items: center;
        padding: 25px;
    cursor: pointer;
  background: #f8f9fa;
  user-select: none;
	}

.faq-question h4 {
  color: #2c3e50; 
	  font-size  :    1.15rem; 
	   margin: 0; 
		flex  :        1;
}

.faq-toggle {
         font-size: 2rem;
  color: #667eea;
   font-weight: bold;
  transition: transform 0.3s ease;
        width: 30px;
   text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);


}

.faq-answer {
    transition  :max-height 0.3s ease;
	max-height: 0;
 overflow: hidden;
    background: white;

}

.faq-item.active .faq-answer {
  max-height  :       500px;
}

.faq-answer p {
   padding: 25px;
  color: #555;
               line-height: 1.8;
  margin: 0;
}

.thankyou-hero {

	  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
   padding: 100px 0;
 min-height: 100vh;
   display: flex;
   align-items   : center;
	
     }

.thankyou-wrapper {

    text-align :      center;
  max-width: 700px;
    margin: 0 auto;
	}

.success-icon {
      margin-bottom: 40px;

}

.success-icon svg {

               width: 120px;
   height: 120px;
	 animation: scaleIn 0.6s ease-out;
	}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-hero h1 {
  font-size: 3rem;
    margin-bottom: 15px;
   -moz-animation: slideDown 0.6s ease-out;
  font-weight: 700;
		 animation: slideDown 0.6s ease-out;
  -webkit-animation: slideDown 0.6s ease-out;
}

.thankyou-subtitle {
   font-size: 1.4rem;
	 margin-bottom  :     50px;
       opacity: 0.95;
  animation  :slideDown 0.8s ease-out;}@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.thankyou-content {
  background: rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.thankyou-content p {
    font-size: 1.1rem;
  margin-bottom: 20px;
     line-height  : 1.8;
}

.confirmation-box {
  background: rgba(255, 255, 255, 0.2);
 padding: 35px;
    border-radius: 15px;
    margin     :  40px 0; 

}

.confirmation-box h3 {
               text-align: center;
 font-size: 1.6rem;
         margin-bottom: 30px;

}

.next-steps {
  list-style: none;
    padding   :     0;
  margin    :   0;
}

.next-steps li     {
               display: flex;
	margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.next-steps li:last-child {
               border-bottom: none; 
   margin-bottom: 0; 
 padding-bottom     :0;
}

.step-number {
       display: flex;
    align-items  :       center;
    justify-content: center;
  width: 45px;
   height: 45px;
   background: white;
  color :       #2ecc71;
    border-radius: 50%;
  font-weight: bold;
                    font-size    :    1.2rem;
   margin-right: 25px;
   flex-shrink:      0;

}  

.step-content h4 {
   margin: 0 0 10px 0;
    font-size   :       1.15rem;
}

.step-content p {

	     margin: 0;
   font-size: 1rem;
       opacity: 0.95; 

	}

.important-note {
  background: rgba(255, 255, 255, 0.15);
    padding: 25px;
               border-radius: 12px;
   margin: 30px 0;
	border-left: 4px solid white;
}

.important-note h3
{

	  font-size   :  1.3rem;
	 margin-bottom: 15px;



}

.important-note p {
  margin: 0; 
	  font-size: 1rem;
}

.action-buttons {
   gap: 20px;
  margin-top: 40px;
   display: flex;
   flex-wrap: wrap;
    justify-content: center;
}

.btn-return,
.btn-explore {
    display: inline-block;
   padding: 14px 32px;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
        transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 1rem;
}

.btn-return {
   background: white;
    color  :    #2ecc71;
}

.btn-return:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	
}

.btn-explore
	{
   background: transparent;
   color: white;
}

.btn-explore:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.next-offer

{
  background: white;
    padding: 80px 0;
}

.next-offer h2 {
   font-size: 2.5rem;
	 color: #2c3e50;
  margin-bottom: 50px;
               text-align: center;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;
}

.resource-card  {
    background: #f8f9fa;
	padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.resource-card:hover {
       border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {


  font-size   :   1.3rem;
  color: #667eea;
  margin-bottom: 15px;


}

.resource-card p {
  color: #555;
               line-height: 1.8;
     margin-bottom     :      20px;
}

.resource-link {

	  display: inline-block;
     color: #667eea;
    text-decoration: none;
   font-weight   :     600;
   transition: all 0.3s ease;
  border-bottom  : 2px solid #667eea;
}

.resource-link:hover {
	    color: #764ba2;
    border-bottom-color:      #764ba2;


     }@media (max-width: 1024px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item:nth-child(even) {
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .detail-content h3 {
        font-size: 1.6rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .services-main {
        padding: 50px 0;
    }

    .service-detail-grid {
        gap: 40px;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .service-comparison h2,
    .service-faq h2,
    .next-offer h2 {
        font-size: 2rem;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .thankyou-content {
        padding: 30px;
    }

    .confirmation-box {
        padding: 20px;
    }

    .next-steps li {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-return,
    .btn-explore {
        width: 100%;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 15px;
    }
}