* {
  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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.navbar {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem 0;
   position: sticky;
   top :     0;
   z-index :  1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
   max-width: 1200px; 
	 margin: 0 auto; 
        display: flex; 
    justify-content: space-between; 
  align-items: center; 
    padding: 0 2rem;
}

.nav-brand 
 {
   flex: 0 0 auto;

}

.logo-img {
  max-height: 74px;
    width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
         display: none;
   flex-direction: column;
   background: none;
  border: none;
  cursor: pointer;
   gap: 6px;
     padding: 0.5rem;
}

.burger-line {
  width: 28px;
  height: 3px;
 background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) 
 {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
   display: flex;
    list-style: none;
   gap: 2rem;
   align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
   font-weight: 500;
    transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
	
}

.nav-links a:hover
	{
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
        gap: 0;
        display: none;
        padding: 1rem 0;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero {
    max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
  display     :grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center; 

}

/* Debug styles */

.hero-content h1    {
   font-size: 3.5rem;
   color: #1a1a2e;
    margin-bottom: 1.5rem;
   line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-clip: text;
	

}

.hero-content p {
  line-height: 1.8;
    margin-bottom: 2rem;
   color: #555;
	font-size: 1.1rem;


}

.cta-button {
   display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  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);

}

.cta-button:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45);
}

.hero-image img {
  width: 100%; 
    border-radius: 12px; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); 
   transition: all 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.why-us {
  background: white;

  padding: 4rem 2rem;

    margin: 2rem 0;
}

.why-container {
	max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
   font-size :  2.5rem;
   color :#1a1a2e;
   margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  font-size    :    1.1rem;
   color: #666;
    text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-grid 
 {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 2rem;
	 border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.feature-card:hover     {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
}

.feature-card h3 {
  font-size: 1.4rem;
   color: #1a1a2e;
   margin-bottom: 1rem;
}

.feature-card p
	{
  color: #666;
   line-height: 1.8; 
	
}@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-us h2 {
        font-size: 1.8rem;
    }
}.services-preview {
               max-width: 1200px;
   padding: 4rem 2rem;
   margin    : 0 auto;
}

.services-wrapper h2 {
    font-size: 2.5rem;
   color   :   #1a1a2e;
  text-align: center;
    margin-bottom: 3rem;
}

.services-cards {

    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;

}

.service-item   {
    background: white;
	border-radius    :12px;
    overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-item:hover
	{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.service-item img {
   width   :     100%;
	   height: 250px;
	 object-fit: cover;
		 transition: all 0.3s ease;
}

.service-item:hover img {
  transform: scale(1.08);
}

.service-item h3 {

	   font-size: 1.3rem;
  color: #1a1a2e;
               padding: 1.5rem 1.5rem 0.5rem; 

	}

.service-item p {
    color: #666;
	padding: 0 1.5rem 1.5rem;
 line-height: 1.8;
}
@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr;
    }

    .services-wrapper h2 {
        font-size: 1.8rem;
    }
}.business-events {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  color: white;
}

.business-events h2 {
    font-size :       2.5rem;
  text-align: center;
	margin-bottom: 3rem;
}

.events-content     {
  max-width: 1200px;
    margin: 0 auto;
   display    :      grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.events-text p  
  {
  margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1.05rem;
}

.events-list {
   list-style: none;
    margin-top: 1.5rem;
}

.events-list li {
   padding: 0.8rem 0;
  padding-left    :    2rem;
   position: relative;
}

.events-list li:before {

	  content: "✓";
  position: absolute;
   left: 0;
     font-weight: bold;
  font-size: 1.2rem;

}

.events-image img {
    width    :       100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .events-content {
        grid-template-columns: 1fr;
    }

    .business-events h2 {
        font-size: 1.8rem;
    }
}.webinar-section {
	max-width: 1200px;
   margin     :  0 auto;
    padding: 4rem 2rem;
}

.webinar-section h2 {
  font-size: 2.5rem;
   color: #1a1a2e;
  text-align: center;
	margin-bottom   :    3rem;
}

.webinar-info {
                    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}  

.webinar-box 
 {
   background: white; 
	padding: 2.5rem; 
    border-radius: 12px; 
    border-top: 4px solid #667eea; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease;
	
}

.webinar-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.webinar-box h3  
  {
  font-size: 1.3rem;
  color: #1a1a2e;
    margin-bottom: 1rem;
}

.webinar-box p {
      color   :  #666;
    line-height: 1.8;
}@media (max-width: 768px) {
    .webinar-info {
        grid-template-columns: 1fr;
    }

    .webinar-section h2 {
        font-size: 1.8rem;
    }
}.success-stories     {
		 background: #f8f9fa; 
  padding:4rem 2rem;
     }

.success-stories h2   {
	   font-size: 2.5rem;
	color   : #1a1a2e;
   text-align: center;
    margin-bottom: 3rem;
	}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
    background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #764ba2;
   transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-card h3 {

   font-size: 1.2rem;
   color: #1a1a2e;
    margin-bottom: 1rem;
	}

.story-card p
	{
    color: #666;
  line-height   :1.8;
}@media (max-width: 768px) {
    .stories-container {
        grid-template-columns: 1fr;
    }

    .success-stories h2 {
        font-size: 1.8rem;
    }
}.testimonials {
         max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
     }

.testimonials h2 {

	   font-size: 2.5rem;
  text-align: center;
  color: #1a1a2e;
   margin-bottom: 3rem;


}

.testimonial-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	
}

.testimonial-item {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 2rem;
   border-radius: 12px;
	 color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;


}

.testimonial-item:hover


{
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45);
}  

.testimonial-item p {
	   margin-bottom: 1.5rem;
  line-height: 1.8;
    font-style: italic;
}


.testimonial-item h4 {
   opacity: 0.95;
  font-weight: 600;
	 font-size: 0.95rem;
}@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }
}.pricing {
    background: white;
         padding: 4rem 2rem;
}

.pricing h2 {
  font-size: 2.5rem;
    color: #1a1a2e;
        text-align: center;
  margin-bottom: 1rem;
}

.pricing-intro {
   text-align: center;
  color: #666;
    font-size: 1.1rem;
   max-width     :    600px;
  margin: 0 auto 3rem;
}

.pricing-table {

    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap   : 2rem;
	}

.price-card {

    background :  #f8f9fa;
    padding: 2.5rem;
  border-radius: 12px;
   border: 2px solid #e0e0e0;
    text-align: center;
   transition: all 0.3s ease;


}  

.price-card.featured

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
   color: #1a1a2e;
}

.price-card.featured h3
{
  color: white;
} 

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #667eea;
  margin-bottom: 1.5rem;
}

.price-card.featured .price {
    color: white;
}

.price-card ul {
     list-style: none;
    margin: 1.5rem 0;
          text-align: left;
}

.price-card li {
   padding: 0.8rem 0;
    color: #666;
     border-bottom: 1px solid #ddd;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-cta {
    display: inline-block;
    margin-top: 1.5rem;
   padding: 0.8rem 2rem;
  background: #667eea;
  color :    white;
  text-decoration: none;
  border-radius: 50px;
   transition   :        all 0.3s ease;
}



.price-card.featured .price-cta {
	background: white;
   color: #667eea;
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .pricing h2 {
        font-size: 1.8rem;
    }
}.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
   text-align: center;
               color: white;
}

.cta-wrapper {
	max-width: 800px;
   margin : 0 auto;
}

.cta-section h2

{
       font-size    :      2.2rem;
   margin-bottom: 1.5rem;
  line-height: 1.3;}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
   line-height     :       1.8;

}

.cta-button-large {
	 display: inline-block;
    padding: 1.2rem 3rem;
  background: white;
    color: #667eea;
   text-decoration: none;
	border-radius: 50px;
   font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }
}.contact {
   max-width: 1200px;
  margin   :       0 auto;
    padding: 4rem 2rem; 
	
	}

.contact h2 {

   font-size: 2.5rem;
   color: #1a1a2e;
 text-align: center;
  margin-bottom: 3rem;
	


}

.contact-wrapper {

	  display: grid;
  grid-template-columns: 1fr 1fr;
        gap: 3rem;
     }

.contact-form {
   background: white;
  padding: 2.5rem;
    border-radius : 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom:1.5rem;
	}

.form-group label {
  display: block;
  font-weight: 600;
   color: #1a1a2e;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width  : 100%; 
	  padding: 0.9rem; 
	   border: 2px solid #e0e0e0; 
	    border-radius: 8px; 
	  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: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   border: none;
   border-radius: 8px;
   font-size    :  1.05rem;
    font-weight: 600;
	 cursor     :     pointer;
  transition :all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45); 

}

.contact-info {
    background: #f8f9fa;
 padding: 2.5rem;
    border-radius: 12px;
   border-left: 4px solid #667eea;
}

.contact-info h3 {
    font-size: 1.4rem;
  color: #1a1a2e;
	margin-bottom: 1.5rem;
}

.contact-info p {
   margin-bottom: 1rem;
    color: #666;
  line-height :        1.8;

}

.map-link {
   display: inline-block;
  margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
     background: #667eea;
	color     : white;
				 text-decoration: none;
    border-radius: 8px;
  transition: all 0.3s ease;
	
}



.map-link:hover {
  background  :    #764ba2;
  transform: translateY(-2px); 

}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 1.8rem;
    }
}.footer {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  color: white;
    padding   :    3rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
          grid-template-columns: 2fr 2fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}


.footer-brand {

   display: flex;
   align-items: center;
     }

.footer-logo {

	  max-height: 96px;
   width: auto;
  filter: brightness(0) invert(1);
     }

.footer-info h4,
.footer-links h4 {
  font-size: 1.1rem;
   margin-bottom: 1rem;
	 color: #fff;
}

.footer-info p {
   margin-bottom: 0.8rem;
   line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links ul {
   list-style: none;
}

.footer-links li
{
   margin-bottom: 0.8rem;
}

.footer-links a
{
  color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
          transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
	
}

.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);
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
      text-align: center;
}

.services-hero-content {
    margin: 0 auto;
    max-width: 900px;
}

.services-hero h1 {
   font-size: 3rem; 
  margin-bottom     :1.5rem; 
  line-height: 1.2;
}

.services-hero p {
    font-size: 1.15rem;
     line-height: 1.8;
       opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}.services-container {
   max-width: 1200px;
   margin: 0 auto;
         padding: 4rem 2rem;
}

.service-detail {

	    display: grid;
  grid-template-columns: 1fr 1fr;
   gap    :3rem;
  align-items: start;
  margin-bottom: 4rem;
    padding: 2rem;
	 background: white;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse .service-content {
	    direction: ltr;


}

.service-image img {
	width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   transition: all 0.3s ease;
}

.service-detail:hover .service-image img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);


}

.service-content h2 {
   font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
}

.service-content > p {
  color: #666;
	   line-height: 1.8;
	   margin-bottom: 1.5rem;
	               font-size: 1.05rem;
}

.service-content h3 {
   font-size: 1.2rem;
  color: #1a1a2e;
    margin-top:      1.5rem;
    margin-bottom: 0.8rem;
   font-weight  :      600;


}



.service-features {
   list-style: none;
	 padding-left:    0;
  margin-bottom: 1.5rem;


}

.service-features li {
  padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
   color: #666;
    line-height: 1.6;
}

.service-features li:before {
  content: "▸";
  position: absolute;
    left: 0;
                    color: #667eea;
                    font-weight: bold;
   font-size: 1.2rem;
}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }
}.service-packages {
	 background: #f8f9fa;
    padding: 4rem 2rem;
}

.service-packages h2 {
   font-size: 2.5rem;

          color: #1a1a2e;

       text-align: center;

    margin-bottom: 3rem;
}  

.packages-wrapper {
    max-width: 1200px;
    margin: 0 auto;
	 display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem; 

}

.package-card {
   background: white;
   padding: 2.5rem;
    border-radius: 12px;
  text-align: center;
  border   :  2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
 border-color: #667eea;
	
}

.package-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
  border: none;
}

.package-card h3 {
  font-size: 1.4rem;
                    margin-bottom: 1rem;
   color: #1a1a2e;
}

.package-card.featured h3 {
    color: white;
}

.package-price {
    font-size: 1.8rem;
  font-weight: bold;
   color: #667eea;
   margin-bottom     :    1.5rem;
}

.package-card.featured .package-price
	{
   color: white;
}

.package-list {
   list-style: none;

	   text-align: left;

	    margin: 1.5rem 0;
}

.package-list li {
    padding: 0.7rem 0;
   color: #666;
       border-bottom: 1px solid #eee;
}

.package-card.featured .package-list li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}@media (max-width: 768px) {
    .packages-wrapper {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .service-packages h2 {
        font-size: 1.8rem;
    }
}.service-methodology {
  max-width: 1200px;
   margin    :  0 auto;
   padding: 4rem 2rem;
}

.service-methodology h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
   text-align: center;
    margin-bottom: 3rem;
}

.methodology-container {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.methodology-item    {
  background: white;
    padding: 2rem;
  border-radius:     12px;
  border-top: 4px solid #667eea;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.methodology-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.methodology-item h3 {
  font-size: 1.2rem;

  color: #1a1a2e;

    margin-bottom:   1rem;

  font-weight :       600;
}

.methodology-item p {
	color: #666;
    line-height: 1.8;
}@media (max-width: 768px) {
    .methodology-container {
        grid-template-columns: 1fr;
    }

    .service-methodology h2 {
        font-size: 1.8rem;
    }
}.why-choose-services {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
               padding: 4rem 2rem;
	}

.why-choose-services h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
  text-align  :        center;
    margin-bottom: 3rem;
}

.why-grid {
  gap: 2rem;
  display: grid;
    margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  max-width   :        1200px;
}

.why-item {
  background: white;
  padding: 2.5rem;
  border-radius    :       12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #764ba2;
	
}

.why-item h3 {
  font-size: 1.3rem;
  color  :      #1a1a2e;
	margin-bottom: 1rem;
}

.why-item p {
    color: #666;
   line-height: 1.8;
}@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-services h2 {
        font-size: 1.8rem;
    }
}.thankyou-section {
    max-width: 800px;
    margin: 0 auto;
   padding: 4rem 2rem;
  text-align: center;
}

.thankyou-container {
   background: white;
       padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-icon svg  {
	 -webkit-animation: successPulse 0.8s ease;
   width: 120px;
   -moz-animation: successPulse 0.8s ease;
  height:  120px;
	 animation: successPulse 0.8s ease;
}@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
   font-size: 2.5rem;
    color: #1a1a2e;
	margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
}

.greeting {
    font-size: 1.3rem;
    color: #667eea;
   font-weight: 600;
   margin-bottom: 1rem;
}

.main-message {
   font-size: 1.05rem;
      color: #666;
    line-height: 1.8;
         margin-bottom: 2.5rem; 
	
}

.next-steps {
	text-align: left;
   background   :#f8f9fa;
    padding: 2rem;
    border-radius: 12px;
   margin-bottom: 2.5rem;
   border-left: 4px solid #667eea;

}

.next-steps h2

{
  color: #1a1a2e;
       margin-bottom    :  1.5rem;
     text-align: center;
}

.steps-list {
   list-style: none;
	 padding-left: 0;
}

.steps-list li {
  margin-bottom: 1.5rem;
  padding-left  : 3rem;
    position: relative;
   text-align: left;
}

.steps-list li:before {


  content: counter(item);
   counter-increment: item;
   position: absolute;
   left: 0;
  top: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
	width     :    2rem;
   height: 2rem;
     border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
  font-weight: bold;

}

.steps-list strong {
          color: #1a1a2e;
}

.steps-list p {
   color: #666;
   margin-top: 0.5rem;
	 line-height: 1.6;

}

.contact-support {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :    white;
    padding: 2rem;
  border-radius     :   12px;
    margin-bottom: 2.5rem;
}

.contact-support h2 {
  margin-bottom: 1rem;
   color: white;

}

.contact-support p {
  margin: 0.5rem 0;
   line-height: 1.6;
}

.contact-phone {
  font-size: 1.3rem;
   font-weight     :     bold;
	margin: 1rem 0;
}

.work-hours {
    font-size: 0.95rem;
	  opacity  :0.9;
}

.additional-info {
      text-align     :left;
   background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.additional-info h2 {
                    color: #1a1a2e;
  text-align: center;
    margin-bottom: 1rem;
}

.additional-info p {
   color: #666;
  line-height: 1.8;
	 margin-bottom: 1.5rem;
}

.button-group {
  display     : flex;

	  gap   : 1rem;

	    justify-content: center;

	    margin-top: 2rem;
}

.button-group .cta-button {
  padding: 0.9rem 2rem;
   font-size :   1rem;
}

.button-group .cta-button.secondary {
  background: white;
   color: #667eea;
   border: 2px solid #667eea;
   box-shadow: none;
}

.button-group .cta-button.secondary:hover {
  background: #667eea;
   color: white;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .button-group {
        flex-direction: column;
    }

    .next-steps {
        padding: 1.5rem;
    }
}.policySection {
    background: #f8f9fa;
    padding: 80px 2rem;
   min-height: 80vh;
}

.policyContainer {
     max-width: 850px;
  margin: 0 auto;
   text-align: left;
    background     :white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	}

.policyContainer h1 {
  font-size: 2.8rem;
	color: #1a1a2e;
   margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip :   text;
  line-height: 1.2;
	
}

.policyContainer h2


{
    font-size: 1.8rem;
    color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  border-bottom: 2px solid #667eea;
          padding-bottom: 0.5rem;
}

.policyContainer p	{
   color: #555;
    margin-bottom: 1.2rem;
   line-height: 1.8;
    font-size: 1.05rem;
}

.policyContainer strong {
  color: #1a1a2e;
  font-weight: 600;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}