* {
    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: #ffffff;
}

.navbar    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 1rem 0;
      position: sticky;
                  top :      0;
     z-index: 999;
     box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
} 

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
  display: flex;
   justify-content: space-between;
  align-items: center;
}


.nav-logo img {
      height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {

	display: flex;
   gap: 3rem;
    align-items: center;

}

.nav-link {

    color :       #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
		 position: relative;




}

.nav-link:hover {
   color: #fff9e6;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
               position: absolute;
  bottom: -5px;
       left: 0;
  width: 0;
	 height: 2px;
	 background-color    :#fff9e6;
  transition :    width 0.3s ease;
}

.nav-link:hover::after {
         width  :   100%;
}

.hamburger    {

     display: none;
               flex-direction: column;
  cursor: pointer;
   gap: 5px;


}

.hamburger span


{
    width: 25px;
	 height: 3px;
   background-color: #ffffff;
				 border-radius: 3px;
    transition :    all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {

	     opacity: 0;


}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
  padding: 80px 2rem; 
   display :   grid; 
	grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
   align-items: center; 
    max-width: 1400px; 
   margin: 0 auto;
}

.hero-content h1 {
   font-size: 3.5rem;
    font-weight: 800;
    color:      #1a2332;
	margin-bottom: 1.5rem;
       line-height   :      1.2;
}

.hero-content p {
	font-size: 1.2rem;
    color:  #475569;
  margin-bottom     :  2.5rem;
	 line-height: 1.8;

}

.cta-button {
   display: inline-block;
               padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
	 border-radius: 50px;
  font-weight: 600;
   transition   :     all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border: none;
   cursor     :    pointer;
       font-size :       1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
   background  :   #ffffff;
   color: #667eea;
  border: 2px solid #667eea;
}

.cta-button.secondary:hover {
   background: #667eea;
               color: #ffffff;
}

.cta-button.large {
   padding: 18px 50px;
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us{
  padding: 80px 2rem;
  background-color: #ffffff;
  max-width: 1400px;
   margin: 0 auto;
}

.section-header {
  text-align: center;
 margin-bottom: 4rem;
}

.section-header h2 {

          font-size    :    2.8rem;
    color: #1a2332;
 margin-bottom:   1rem;
		font-weight: 800;}

.section-header p {
	  font-size    :  1.1rem;
      color: #667eea;
   font-weight: 600;
	}

.why-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
	
}

.why-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding   :    2.5rem;
  border-radius: 12px;
	border-left: 4px solid #667eea;
  transition   :       all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
   border-left-color: #764ba2;


}

.why-card h3 {
    font-weight: 700;
  color: #2c3e50;
    font-size    :    1.4rem;
  margin-bottom : 1rem;
}

.why-card p {
   color: #5a6c7d;
   line-height: 1.8;
	font-size: 0.95rem;
}

.services-preview
{
					padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  max-width: 1400px;
   margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;


}

.services-intro h2 {
  font-size :2.8rem;
  margin-bottom: 1rem;
          font-weight: 800;


}

.services-intro p {

  opacity: 0.95;
    font-size: 1.1rem;
}

.services-showcase {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:2.5rem;
	}

.service-item


{
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
   overflow: hidden;
   transition     :       all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item img {
   width: 100%;
    height:220px;
	object-fit: cover;
}

.service-item h3 
 {
   font-weight: 700;
   color: #2c3e50;
    padding: 1.5rem 1.5rem 0.5rem;
   font-size: 1.5rem;
}

.service-item p {
	   line-height: 1.7;
    color: #5a6c7d;
   padding: 0 1.5rem 1rem;
  font-size: 0.95rem;
	} 

.service-tag {
    display: inline-block;
   margin: 0 1.5rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 12px;
	border-radius: 20px;
  font-size: 0.8rem;
 font-weight: 600;
}

.process {

		padding     :      80px 2rem;
    background-color: #ffffff;
       max-width: 1400px;
   margin: 0 auto;}

.process h2

{
   text-align: center;
  font-size: 2.8rem;
  color: #1a2332;
    margin-bottom    : 4rem;
   font-weight: 800;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  position: relative; 

}

.process-steps::before {
  content: '';
     position: absolute;
    top  :      50px;
    left     :        0;
   right: 0;
   height   :       2px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
    z-index: 0;
}

.step
{
    background: #f5f7fa;
  padding: 2rem;
   border-radius :    12px;
    text-align     :   center;
  position: relative;
  z-index: 1;
    transition: all 0.3s ease;
}

.step:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  transform: translateY(-5px);
}

.step-number {
    display :   flex;
  align-items: center;
  justify-content: center;
    width: 50px;
   height     :50px;
      margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    : #ffffff;
   border-radius: 50%;
   font-size: 1.5rem;
    font-weight: 800;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step:hover .step-number    {
   background: #ffffff;
   color: #667eea;
}

.step h3 {
   font-weight: 700;
  font-size: 1.3rem;
   margin-bottom: 1rem;
}

.step p {
	        font-size: 0.9rem;
	line-height  :1.6;
   opacity: 0.9; 
	
}

.testimonials  {
	padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
      max-width: 1400px;
 margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.8rem;
	 color:  #1a2332;
    margin-bottom: 4rem;
  font-weight: 800;
}

.testimonials-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;

}

.testimonial {
   background: #ffffff;
               padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
   transition: all 0.3s ease;
}

.testimonial:hover {
	  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
     }

.testimonial p {
   font-size: 0.95rem;
	color: #475569;
   line-height : 1.8;
   margin-bottom: 1.5rem;
   font-style: italic;
}

.testimonial-author {
    display: flex;
  flex-direction: column;
     gap: 0.5rem;
}

.testimonial-author strong {
     color: #2c3e50;

	          font-size: 0.95rem;
}

.testimonial-author span {
  color: #667eea; 
	   font-size: 0.85rem; 
	     font-weight: 600;
}

.conference-section {
         padding     :  80px 2rem;
  background-color: #ffffff;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
   max-width: 1400px;
   margin: 0 auto;
}

.conference-content h2 {
    font-size: 2.8rem;
    color: #1a2332;
   margin-bottom: 1.5rem;
   font-weight: 800;
}

.conference-content p {
  font-size: 1.1rem;
     color  :   #5a6c7d;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.conference-details {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding    :2rem;
   border-radius: 12px;
    margin-bottom: 2rem;
   border-left: 4px solid #667eea;
}

.detail {
    padding  :     0.8rem 0;
    color    :     #2c3e50;
  font-size  : 1rem;
}

.detail strong {
	 color: #667eea;

  font-weight: 700;
}

.conference-image img {
   width: 100%;
   height: auto;
  border-radius     : 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing {
  padding: 80px 2rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       max-width: 1400px;
     margin: 0 auto;


}

.pricing h2  {
    font-weight: 800;
	   margin-bottom  :  4rem;
		 font-size :       2.8rem;
	  color: #ffffff;
		text-align: center;
}

.pricing-grid {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	gap: 2.5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 12px;
 text-align:        center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover  {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
          border: 3px solid #fff9e6;
  transform: scale(1.05);

}

.pricing-card h3 {
         font-size: 1.6rem;
	 color: #2c3e50;
  margin-bottom: 1rem;
    font-weight  :    700;
	}


.price {
    font-size: 2.5rem;
    margin-bottom :    1.5rem;
         font-weight: 800;
	color: #667eea; 
	
}

.pricing-card ul {
   margin-bottom: 2rem;
   list-style     : none;
   text-align:       left;
}

.pricing-card li {

   padding: 0.6rem 0;
   color: #5a6c7d;
   border-bottom     :     1px solid #e9ecef;
        font-size: 0.95rem;


}

.pricing-card li:last-child


{
    border-bottom: none;
}

.pricing-button {
  display: inline-block;
   width: 100%;
    padding: 12px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   text-decoration: none;
    border-radius: 50px;
  font-weight: 600;
	 transition: all 0.3s ease;
     border: none;
   cursor: pointer;
    font-size  :0.95rem;
}

.pricing-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.final-cta {
  padding: 60px 2rem;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  text-align: center;
  max-width: 1400px;
    margin: 0 auto;
}

.cta-inner h2 {
	font-size  :2.5rem;
	color: #ffffff;
    margin-bottom: 1rem;
   font-weight: 800;
}

.cta-inner p {
    font-size: 1.1rem;
    color: #c3cfe2;
   margin-bottom :      2.5rem;
  line-height: 1.8;
}

.contact     {
   padding   :        80px 2rem;
    background-color: #ffffff;
    max-width: 1400px;
         margin    :     0 auto;}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
  color: #1a2332;
  margin-bottom    :      1rem;
  font-weight: 800;
}

.contact > p {
   text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
    margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-form {
       max-width: 600px;
    margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	 padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom :       1.8rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.7rem;
       color: #2c3e50;
    font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width :      100%;
	   padding: 12px 15px;
	   border: 2px solid #d1d8e0;
	  border-radius: 8px;
	   font-size: 0.95rem;
	                    font-family: inherit;
	    transition: all 0.3s ease;
	    background-color: #ffffff;
}

.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);
               background-color     :      #ffffff;

}

.form-group textarea 
 {


   min-height: 120px;
   resize: vertical; 
}

.submit-button {
   width: 100%;
   padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
	border: none;
   border-radius : 50px;
       font-weight: 600;
   font-size: 1rem;
      cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.footer {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
       color: #c3cfe2;
    padding: 60px 2rem 30px;
    margin-top     :80px;
}

.footer-container

{
	max-width: 1400px;
  margin: 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :        3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color   :     #ffffff;
   font-size: 1.1rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
}


.footer-logo {

	    margin-bottom: 1rem;}

.logo-footer {

	    height: 96px; 
	   width: auto; 
	  filter: brightness(0) invert(1);

}

.footer-nav,
.footer-section ul {
   list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a,
.footer-section a {
               color     :   #c3cfe2;
  text-decoration  :      none;
   transition     :   all 0.3s ease;
    font-size: 0.95rem;
} 

.footer-nav a:hover,
.footer-section a:hover {
  -moz-transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
   color :     #ffffff;
  transform: translateX(5px);
}

.footer-section p {
    font-size: 0.95rem;
	 line-height: 1.8;

}

.footer-bottom
{
   max-width: 1400px;
    margin: 0 auto;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
               color: #8899aa;
	
}

.footer-bottom a 
 {
    color: #c3cfe2; 
          text-decoration: none; 
  transition  :        color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}



.cookie-alert {
          position: fixed;
	bottom: 0;
    left   :        0;
  right:  0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
  padding  :     1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
   z-index: 998;
          display: none;
   animation: slideUp 0.3s ease; 
	
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookie-alert.active {
   display: block;
}

.cookie-content {
   display  :  flex;

   justify-content   :    space-between;

    align-items: center;

  max-width: 1200px;

   gap: 2rem;

   margin: 0 auto;
}

.cookie-alert h3 {
	font-size:     1.2rem;
  margin-bottom: 0.5rem;
   font-weight     :       700;
}

.cookie-alert p {
               font-size: 0.9rem; 
	   line-height   :      1.6; 
	    opacity: 0.95; 
		 margin-bottom: 1rem;
}

.cookie-buttons {
  display   :       flex;
    align-items     :   center;
   flex-wrap: wrap;
  gap: 1rem;
}

.cookie-btn {
  padding     :    10px 20px; 
			border: none; 
	  border-radius   :  6px; 
	   font-weight: 600; 
	    cursor: pointer; 
	   transition: all 0.3s ease; 
	       font-size: 0.9rem; 
	  text-decoration: none; 
	    display: inline-block;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.cookie-btn.accept:hover {


  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);


}

.cookie-btn.reject {
		background-color: transparent;
   color: #ffffff;
   border: 2px solid #c3cfe2;
     }

.cookie-btn.reject:hover {
   border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);


}

.cookie-btn.settings {
   background-color: transparent;
   color: #667eea;
   border: 2px solid #667eea;
}

.cookie-btn.settings:hover {

    background-color:  #667eea;
     color: #ffffff;
	}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-preview,
    .why-us,
    .process,
    .testimonials,
    .conference-section,
    .pricing,
    .final-cta,
    .contact {
        padding: 60px 2rem;
    }

    .conference-section {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .section-header h2,
    .services-intro h2,
    .process h2,
    .testimonials h2,
    .pricing h2,
    .contact h2,
    .conference-content h2 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .services-intro h2,
    .process h2,
    .testimonials h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.6rem;
    }

    .why-grid,
    .services-showcase,
    .process-steps,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .nav-menu {
        top: 65px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .conference-details {
        padding: 1.5rem;
    }
}.hero-services  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 100px 2rem;
  text-align    :    center;
 position: relative;
    overflow: hidden;
  max-width: 100%; 
	
     }

.hero-services-content h1 {


    font-size: 3.2rem;
  color :#ffffff;
  margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
	} 

.hero-services-content p {
   font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
   max-width: 700px;
	margin: 0 auto;
    line-height: 1.8;
    position: relative;
  z-index:      2;
}

.hero-services-overlay {
   		 position: absolute;
    top: 0;
   left: 0;
    right  : 0;
    bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
   z-index: 1;}

.services-detail {


  padding: 80px 2rem;
    margin: 0 auto;
  max-width: 1400px;
      background-color: #ffffff;

}

.services-container {
  display: flex;
  flex-direction: column;
   gap:   6rem;
}

.service-full {

	    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
	 align-items: center;}

.service-full.reverse {
    direction: rtl;
  grid-template-columns: 1fr 1fr;
}

.service-full.reverse > * {

	   direction    :  ltr;
	}

.service-full-image {
    position: relative;
   border-radius    :  12px;
    overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	
}

.service-full-image img   {
    width: 100%;
  height: auto;
    display: block;
  transition: transform 0.3s ease;
}

.service-full-image:hover img {
  transform: scale(1.05);
}

.service-full-content h2 {
   font-size: 2.2rem;
    color: #1a2332;
   margin-bottom  :     1.5rem;
   font-weight: 800;
}

.service-full-content > p {
  font-size: 1rem;

    color   :   #5a6c7d;

 line-height: 1.8;

   margin-bottom: 2rem;
}

.service-highlights {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
          padding: 1.5rem;
    border-radius :      12px;
	margin-bottom: 2rem;
   border-left: 4px solid #667eea;


}

.highlight{

	   padding   :   0.8rem 0; 
	    color: #2c3e50; 
	  font-size: 0.95rem; 
	  line-height: 1.6;
	}

.highlight strong {
  color: #667eea;
  font-weight: 700;
   display: block;
   margin-bottom: 0.3rem;
}

.service-description {
	    margin-bottom: 2rem;


}

.service-description h3
	{

    font-size: 1.3rem;
   color: #2c3e50;
    margin-bottom: 1rem;
  font-weight: 700;}

.service-list {
  list-style: none;
	}

.service-list li {
    padding: 0.8rem 0;
  color: #5a6c7d;
    font-size: 0.95rem;
    border-bottom  :     1px solid #e9ecef;
  position    :    relative;
   padding-left   :   1.5rem;
}

.service-list li:last-child


{
      border-bottom: none;
	} 

.service-list li::before {
  content: '→';
    position: absolute;
    left: 0;
   color: #667eea;
  font-weight    :      700;
}

.service-pricing {
                       display: flex;
    align-items: center;
   gap    :2rem;
	 padding-top: 2rem;
	border-top: 2px solid #e9ecef;

}

.price-tag {


    font-size: 1.8rem;
    color: #667eea;
    font-weight :       800;

}


.service-cta {
	  display: inline-block;
        padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   text-decoration: none;
          border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}


.service-cta:hover {

  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);

}

.comparison-table {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   max-width: 1400px;
      margin: 0 auto;
}

.comparison-table h2 {
  text-align: center;
        font-size: 2.8rem;
    color: #1a2332;
   margin-bottom: 3rem;
	font-weight: 800;
}

.table-wrapper {
    overflow-x: auto;
    border-radius :12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.services-table {
 width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}

.services-table thead		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.services-table th {
     padding: 1.5rem;
    font-weight: 700;
  font-size: 0.95rem;
   text-align: left;

}

.services-table td {
   padding: 1.2rem 1.5rem;
  border-bottom :      1px solid #e9ecef;
  font-size: 0.9rem;
}

.services-table tbody tr:hover
{
    background-color    :   #f5f7fa;


}

.services-table tbody tr:last-child td {
  border-bottom: none;
}

.services-table td:first-child     {
   font-weight: 600;
  color: #2c3e50;
}

.faq-section {


  padding: 80px 2rem;
    background-color: #ffffff;
    max-width: 1400px;
  margin: 0 auto;
     }

.faq-section h2	{
	   font-weight: 800;
    color: #1a2332;
    margin-bottom: 4rem;
  font-size: 2.8rem;
    text-align: center;}

.faq-container {
  flex-direction: column;

	 max-width: 800px;

	    margin: 0 auto;

	  display  :  flex;

		gap: 1.5rem;
} 

.faq-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 1.8rem;
    border-radius     : 12px;
  border-left  :      4px solid #667eea;
	transition:       all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
   border-left-color: #764ba2;
}

.faq-question {
  color: #2c3e50;
   font-weight:700;
  margin-bottom :       1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #5a6c7d; 
    font-size: 0.95rem; 
   line-height  :   1.8; 
    margin: 0;
}

.cta-services {
	padding: 80px 2rem;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  text-align: center;
    max-width: 1400px;
   margin     :0 auto;
}

.cta-services h2 {
    font-size  :2.5rem;
   color :   #ffffff;
   margin-bottom: 1rem;
	 font-weight: 800;
}

.cta-services p {
	  font-size: 1.1rem;
       color: #c3cfe2;
   margin-bottom: 2.5rem;
   line-height: 1.8;
  max-width: 600px;
    margin-left: auto;
   margin-right: auto;
     } 

.thank-you-hero {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
    max-width: 1400px;
   margin: 0 auto;
}

.thank-you-container {
	max-width: 700px;
   margin: 0 auto;
}


.success-icon 
 {
   -moz-animation: bounceIn 0.6s ease;
   -webkit-animation :      bounceIn 0.6s ease;
   margin-bottom: 2rem;
    animation: bounceIn 0.6s ease;
   justify-content: center;
    display: flex;


}@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}.thank-you-hero h1 {
  font-size: 2.8rem;
	  color: #1a2332;
	   margin-bottom: 0.5rem;
	   font-weight: 800;
}

.thank-you-subtitle  
  {
   font-size: 1.2rem;
   color: #667eea;
         margin-bottom: 2rem;
    font-weight: 600;
     }

.thank-you-content {
  background: #ffffff; 
    padding: 2.5rem; 
   border-radius: 12px; 
   margin-bottom: 3rem; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); 
   border-top: 4px solid #667eea;
}

.thank-you-content p {
    color :  #5a6c7d;
   font-size: 1rem;
     line-height: 1.8;
	margin-bottom: 1rem;
}

.thank-you-content p:last-child {

	    margin-bottom: 0;
	}


.next-steps {
   margin-bottom  :       3rem;
}

.next-steps h3    {
	font-size: 1.6rem;
  color: #1a2332;
    margin-bottom: 2rem;
        font-weight: 700;


}

.steps-timeline {


        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
     }

.timeline-step {

	    background :#ffffff;
	     padding: 2rem;
	    border-radius: 12px;
	    text-align: center;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
		transition: all 0.3s ease;
     }

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.1);
}

.step-number {
   display: flex;
  align-items: center;
    justify-content: center;
	 width: 50px;
   height: 50px;
   margin   :0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  border-radius: 50%;
   font-size: 1.5rem;
	 font-weight: 800;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-content strong {
 display: block;
	color  :        #2c3e50;
   font-size: 1rem;
    margin-bottom: 0.5rem;
         font-weight:     700;
}

.step-content p {
	   color: #5a6c7d;
	line-height: 1.6;
               margin: 0;
       font-size: 0.85rem;
}

.contact-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
	padding: 2.5rem;
   border-radius: 12px;
   margin-bottom   :       2rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.contact-info-box h3 {

	    font-size: 1.3rem;

  margin-bottom: 1rem;

    font-weight: 700;
	}

.contact-info-box p {
    margin-bottom: 0.5rem; 
   font-size: 0.95rem; 
   line-height: 1.6;


}

.phone-number {
   font-size: 1.8rem;
    font-weight: 800;
    margin-top: 1rem;
   margin-bottom: 0.5rem;
}

.contact-hours {
   font-size: 0.85rem;
   opacity: 0.9;
}

.action-buttons

{
   display: flex;
    gap    : 1rem;
  justify-content: center;
  flex-wrap  :     wrap;
}

.action-buttons .cta-button {
	padding:        15px 40px;
}

.trust-section {
	 padding: 80px 2rem;
	  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	    max-width: 1400px;
	   margin: 0 auto;
}

.trust-section h2

{
   text-align: center;
  font-size :2.5rem;
               color: #1a2332;
  margin-bottom: 4rem;
         font-weight: 800;
}

.trust-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-card    {
   background :        #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.1);
}

.trust-number     {
  font-size: 2.5rem;
	   color: #667eea;
	               font-weight: 800;
	   margin-bottom: 1rem;
}

.trust-card p {
    color: #5a6c7d;
  font-size: 0.95rem;
    line-height: 1.6;
  margin: 0;
}@media (max-width: 768px) {
    .hero-services {
        padding: 60px 2rem;
    }

    .hero-services-content h1 {
        font-size: 2rem;
    }

    .hero-services-content p {
        font-size: 0.95rem;
    }

    .service-full,
    .service-full.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-full.reverse {
        direction: ltr;
    }

    .service-full-content h2 {
        font-size: 1.6rem;
    }

    .services-detail,
    .comparison-table,
    .faq-section,
    .cta-services,
    .trust-section {
        padding: 60px 2rem;
    }

    .comparison-table h2,
    .faq-section h2,
    .trust-section h2 {
        font-size: 2rem;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .thank-you-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-services-content h1 {
        font-size: 1.6rem;
    }

    .service-full-content h2 {
        font-size: 1.3rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-table {
        font-size: 0.8rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.8rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .thank-you-content {
        padding: 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}.policy-hero

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding:     80px 2rem;
    text-align: center;
   color: #ffffff;
  position: relative;
   overflow: hidden;
}

.policy-hero::before {
  content: '';
    position     :     absolute;
  top: 0;
   left: 0;
    right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.policy-hero h1 {
         font-size: 3rem;
    font-weight: 800;
	margin-bottom: 1rem;
  position: relative;
   z-index :       2; 

}

.policy-hero p {
  font-size   :      1.1rem;
    opacity: 0.95;
  position  :      relative;
  z-index: 2;
	 max-width: 600px;
   margin: 0 auto;
}


.policySection {
  padding: 80px 2rem;
   background-color: #ffffff;
}

.policyContainer		{
	    max-width:        900px;
   margin: 0 auto;
   text-align  :   left; 
	
	}

.policyContainer h2 {
  font-size: 1.8rem;
   color :    #2c3e50;
   margin-top: 2.5rem;
    margin-bottom: 1.2rem;
   font-weight: 700;
   border-bottom: 3px solid #667eea;
   padding-bottom: 0.8rem; 
	
}

.policyContainer h2:first-of-type{
   margin-top :  0;
}

.policyContainer p {
  color: #5a6c7d; 
   margin-bottom  :1.3rem; 
  line-height: 1.8; 
  font-size   :1rem;
}

.policyContainer p:last-child {

    margin-bottom: 0;

}

.policyContainer h2:hover {
                    color: #667eea;
			border-bottom-color: #764ba2;
    transition  :   all 0.3s ease;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 2rem;
    }

    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-hero p {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 60px 2rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 50px 1.5rem;
    }

    .policy-hero h1 {
        font-size: 1.6rem;
    }

    .policy-hero p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 50px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}