* {
	margin: 0;
   padding: 0;
  box-sizing  :    border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: var(--text-dark);
     line-height: 1.6;
     background-color: #ffffff;
}

.section-container {
		max-width: 1200px;
   margin   :     0 auto;
    padding: 0 20px;
}

.navbar {
   background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
   z-index: 100;
}

.navbar-container {
  max-width   :      1200px;
   margin: 0 auto;
   padding: 0 20px;
     display: flex;
    justify-content:     space-between;
  align-items: center;
                    height:        80px;


}

.navbar-logo img {
    height: 64px;
  width   :auto;


}

.nav-menu {
   display     :flex;
    list-style: none;
   gap  :    40px;
}

.nav-link    {
   text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
   position:        relative;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
   position: absolute;
    bottom: -5px;
    left: 0;
     width :0;
	height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.burger-menu {
    display: none;
    flex-direction     :     column;
    cursor: pointer;
}

.burger-line {
    width   :28px;
	 height: 3px;
  background: var(--text-dark);
   margin: 4px 0;
  transition: var(--transition);
    border-radius     :     2px;
}

.hero {
   display     :    grid;
	 grid-template-columns: 1fr 1fr;
	align-items: center;
  gap: 60px;
  padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: var(--border-radius);
    margin-top: 20px;
}

.hero-content h1     {
    font-size: 3.5rem;
    line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-subtitle {
   font-size: 1.2rem;
  color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image

{
    overflow: hidden;
  border-radius: var(--border-radius);
}

.hero-image img {
	width: 100%;
  height: auto;
    display: block;
    object-fit: cover;
  border-radius: var(--border-radius);
}

.cta-button {
   display    :inline-block;
  padding: 14px 32px;
    border: none;
  border-radius: var(--border-radius);
   font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
   text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.cta-button.primary {
  background: var(--secondary-color);
 color: white;
}



.cta-button.primary:hover {
    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cta-button.secondary  
  {
  background: var(--accent-color);

	    color     : white;
}

.cta-button.secondary:hover {


    background: #2980b9;
  transform: translateY(-2px);

}

.cta-button.large {
  padding: 18px 40px;
      font-size: 1.1rem;
}

.why-choose-us     {
    padding: 100px 20px;
  background: white;
}


.why-choose-us h2 {
  font-size: 2.5rem;
    text-align: center;
	 margin-bottom: 60px;
  color: var(--primary-color);

}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
  max-width: 1200px;
  margin   :      0 auto;
     }

.feature-card {
    padding: 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition); 
	
}

.feature-card:hover

{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    font-weight: bold;
  color: var(--secondary-color);
    margin-bottom: 15px;
}


.feature-card h3 {
   font-size: 1.3rem;
   margin-bottom: 15px;
  color: var(--primary-color);
	}

.feature-card p {
  color: var(--text-light);
    line-height: 1.8;
}

.services-preview {
    padding: 100px 20px;
  background: var(--light-bg);
}

.services-preview h2 {
	    font-size: 2.5rem;
   text-align: center;
  margin-bottom   :        60px;
  color: var(--primary-color);
}

.services-showcase {
       max-width: 1200px;
  margin: 0 auto;}

.service-item {
	    display: grid;

  grid-template-columns: 1fr 1fr;

    gap: 50px;

   align-items: center;

  margin-bottom: 80px;

      padding:        40px;

   background: white;

  border-radius: var(--border-radius);


}

.service-item-reverse {
   grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.service-item-reverse > * {
   direction: ltr;
}

.service-item img {
    width: 100%;
    height: auto;
  border-radius: var(--border-radius);
       object-fit    :   cover;
} 

.service-content h3 {
  font-size: 1.8rem; 
    margin-bottom: 20px; 
  color: var(--primary-color);
}

.service-content p {
  color: var(--text-light);
                    line-height: 1.8;
  margin-bottom: 20px;
          font-size: 1rem;
}

.service-link {
  display: inline-block; 
  color: var(--secondary-color); 
	text-decoration: none; 
  font-weight: 600; 
  transition: var(--transition); 
  position:relative;
}

.service-link::after {
  content: ' →';
  transition: var(--transition);
}

.service-link:hover::after


{
	  transform: translateX(5px);
	}

.success-stories {
  padding: 100px 20px;
	background: white;
}

.success-stories h2 {
     font-size : 2.5rem;

	   text-align: center;

		margin-bottom: 60px;

	  color: var(--primary-color);

}

.stories-grid{
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   gap     :     40px; 
	max-width: 1200px; 
	margin: 0 auto;
}

.story-card {

   background: white;
  border-radius: var(--border-radius);
	overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);

}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-card img {

	   width: 100%;
    height: 200px;
  object-fit: cover;
  display: block;
	}

.story-text {

    padding: 30px;

}

.story-text h3
{
  color: var(--secondary-color);
    font-size: 1.2rem;
  margin-bottom    :  15px;
}

.story-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

.conference-webinar  {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;


	}

.conference-content {
	        display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items    :       center;
    max-width: 1200px;
   margin: 0 auto;}

.conference-image {
  border-radius: var(--border-radius);
  overflow: hidden; 

} 

.conference-image img {
   width: 100%;
   height: auto;
    display: block;
  border-radius: var(--border-radius);
}

.conference-webinar h2 {
  font-size   : 2.5rem;
  margin-bottom:40px;
   color: white;
}

.conference-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
	}

.conference-text p {
   line-height: 1.8;
   margin-bottom: 20px;
     opacity: 0.95;
}

.methodology {

	   padding: 100px 20px;
  background    :        white;
	}

.methodology h2 {

	                    font-size: 2.5rem;
	   text-align    :center;
	   margin-bottom     :        60px;
	  color: var(--primary-color);
}

.methodology-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
  margin     :    0 auto; 



}

.method-step     {
   padding: 40px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
    text-align: center;
  transition: var(--transition);
  position: relative;
}

.method-step:hover     {
    background :       white;
  border: 2px solid var(--secondary-color);
}

.step-number {
		 font-size:  3rem;
          font-weight: bold;
  color: var(--secondary-color);
   margin-bottom :        15px; 


}

.method-step h3


{
               font-size: 1.3rem;
   margin-bottom: 15px;
  color: var(--primary-color);
}

.method-step p {
  color: var(--text-light);
	line-height   :        1.8;
}

.offer-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.offer-box     {
    max-width: 800px; 
      margin  :       0 auto; 
   text-align: center; 
    color: white; 
                    padding: 60px 40px; 
  border-radius: var(--border-radius); 
  background: rgba(0, 0, 0, 0.1);
}

.offer-box h2 {
	   font-size: 2.2rem;
   margin-bottom: 20px;
     color: white;

}

.offer-box p  
  {

  font-size :  1.1rem;
   margin-bottom: 30px;
   line-height: 1.8;
       opacity    :  0.95;
	}

.contact    {
     padding: 100px 20px;
       background: white;
}

.contact h2
{
  font-size: 2.5rem;
  text-align: center;
 margin-bottom: 60px;
  color: var(--primary-color);


}

.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
  max-width     :  1200px;
  margin: 0 auto;
}

.contact-info {
  padding: 40px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.info-block {

		 margin-bottom: 40px;

}

.info-block h3

{
  color: var(--primary-color);
    margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-block p {
  color: var(--text-light);
    line-height: 1.8;
}

.contact-form		{
    padding: 40px;
	  background: var(--light-bg);
	  border-radius: var(--border-radius);
}

.form-group {
   margin-bottom: 25px;




}

.form-group label 
 {
   display: block;

	   margin-bottom: 8px;

	  color: var(--primary-color);

	  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
   width     : 100%;
  padding: 12px;
  border: 1px solid #bdc3c7;
  border-radius: var(--border-radius);
      font-family: inherit;
    font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}  

.form-group textarea {
    resize: vertical;
    font-family: inherit;
	
}

.footer {
  background: var(--primary-color);
  color: white;
       padding: 60px 20px 20px;
}

.footer-container   {
      max-width: 1200px;
   margin: 0 auto;
}

.footer-logo {
               margin-bottom: 40px;
}



.footer-logo img {
  height:       86px;
				 width: auto;
  filter: brightness(0) invert(1);
}  

.footer-content {
   display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
        margin-bottom: 40px;
}

.footer-section h3     {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;


}

.footer-section a  {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-section a:hover {
     color: var(--secondary-color);


}

.footer-section p {
    line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);


}

.footer-phone
{
  font-weight   :   600;
  color: var(--secondary-color);
}

.footer-bottom {
       text-align     :       center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6); 

}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-bg);
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .why-choose-us h2,
    .services-preview h2,
    .success-stories h2,
    .methodology h2,
    .contact h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .conference-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .navbar-container {
        height: 70px;
    }

    .navbar-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .story-card img {
        height: 150px;
    }

    .offer-box {
        padding: 40px 20px;
    }

    .offer-box h2 {
        font-size: 1.6rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
   padding: 100px 20px;
  text-align: center;
}

.services-hero h1		{
  line-height: 1.2;
       margin-bottom     :20px;
      font-size: 3rem;
}

.hero-description {
    font-size: 1.2rem;
	opacity   :     0.95;
  max-width: 700px;
    margin: 0 auto;
   line-height: 1.8;
}

.services-detailed {
  padding:      100px 20px;
       background: white;
}

.service-detailed-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
          align-items: center;
    margin-bottom: 120px;
   padding: 40px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.service-detail-reverse {


   grid-template-columns: 1fr 1fr;
  direction: rtl;

}

.service-detail-reverse > * {
    direction   :   ltr;
}

.service-detail-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-detail-image img 
 {
   width: 100%;
        height: auto;
	display: block;
    object-fit: cover;
  border-radius: var(--border-radius);


}

.service-detail-content h2 {
   font-size   :   2.2rem;
  color: var(--primary-color);
    margin-bottom: 20px;
  line-height: 1.3;
}

.service-detail-content p {
  color: var(--text-light);
   line-height: 1.8;
  margin-bottom: 30px;
   font-size    :  1rem;
}  

.service-features 
 {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
               gap: 20px;
	margin-bottom     :       30px;
}

.feature-item {
   background: white;
		padding: 20px;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--secondary-color);
}

.feature-item h4 {
  color: var(--primary-color);
      font-size: 0.95rem;
      margin-bottom: 8px;
}



.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
    margin: 0;
}

.service-packages {
    padding: 100px 20px;
       background: white;
}

.service-packages h2    {
    font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
	max-width: 1200px;
	 margin: 0 auto;
}

.package-card {
  background: white;
   border  :       2px solid #e0e0e0;
  border-radius: var(--border-radius);
    padding: 40px 30px;
	 text-align     :  center;
  transition: var(--transition);
    position: relative;
   overflow: hidden;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	
}

.package-card.elite {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  transform: scale(1.05);
}

.package-card h3 {
	    font-size    :    1.8rem;
  color: var(--primary-color);
    margin-bottom: 20px;


}

.package-price {
    margin: 25px 0;
   padding: 20px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.package-price .price {
   display: block;
    font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.package-price .duration {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-top: 5px;
}

.package-features {
    text-align: left;
    margin: 30px 0;
	 list-style: none; 
	
}

.package-features li {
    padding: 12px 0;
   border-bottom: 1px solid #f0f0f0;
  color: var(--text-light);
   position: relative;
   padding-left: 25px;
}

.package-features li:before {
  content: "✓";
	   position: absolute;
	  left: 0;
	  color: var(--secondary-color);
	  font-weight: bold;
}

.package-features li:last-child {
  border-bottom: none;}

.webinar-conference {
  padding: 100px 20px;
  background: var(--light-bg); 

}

.webinar-conference h2 {

	  font-size: 2.5rem;
    text-align     :      center;
    margin-bottom   :     60px;
  color: var(--primary-color);}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
	 max-width: 1200px;
  margin    :   0 auto;
}

.webinar-card {


  background: white;
  border-radius: var(--border-radius);
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);

}

.webinar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.webinar-card img {
    width: 100%;
   height: 220px;
   object-fit: cover;
   display: block;

}

.webinar-info {
    padding: 30px;
}

.webinar-info h3 
 {
    font-size: 1.4rem;
  color: var(--primary-color);
   margin-bottom: 15px;
}

.webinar-info p {
  color: var(--text-light);
   line-height: 1.8;
   margin-bottom: 20px;
}  

.webinar-details {
	display: flex;
    flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
	 padding: 15px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.detail {
   font-size: 0.95rem;

	  color: var(--text-dark);
}

.faq-services {
  padding: 100px 20px;
       background: white;
}

.faq-services h2 {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom: 60px;
  color: var(--primary-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
  max-width: 1200px;
	margin: 0 auto;
}

.faq-item {
	padding: 30px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    background: white; 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
 font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
	font-weight: 600;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
    margin: 0;
}

.cta-services {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   text-align: center;
   color: white;


}

.cta-services h2 {
            font-size: 2.2rem;
   color: white;
   margin-bottom: 20px;}


.cta-services p {
    font-size: 1.1rem;
   margin-bottom: 30px;
        opacity: 0.95;
   line-height: 1.8;
}

.thankyou-container {
	 padding: 80px 20px; 
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
   min-height: 100vh;
}

.thankyou-content		{
  background: white;
  border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 700px;
  margin: 0 auto;
   text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	

}

.success-icon {
  width: 100px;
  height  :100px;
  margin: 0 auto 30px;
	 display: flex;
    align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  color : white;
}

.success-icon svg {
   width: 80px;
   height   :      80px;
}

.thankyou-content h1 {
    font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
	line-height: 1.2;
}

.thankyou-message {
   font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom     :     50px;
  line-height: 1.8;
}

.next-steps {
   text-align: left; 
	   margin-bottom: 50px;
}

.next-steps h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
    margin-bottom:     30px;
   text-align: center;
}

.steps-list	{
    display: flex;
  flex-direction: column;
	 gap: 20px;
}

.step {
    display: grid;
    grid-template-columns :     60px 1fr;
       gap: 20px;
   padding: 20px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);


}

.step-number {
   font-size: 1.8rem;
   font-weight:      bold;
  color: var(--secondary-color);
    display: flex;
    align-items: center;
  justify-content: center;
}

.step-content h3 {
    font-size: 1.1rem;
  color: var(--primary-color);
   margin-bottom: 8px;
}

.step-content p  {
  color: var(--text-light);
   margin: 0;
    font-size: 0.95rem;
  line-height: 1.6;
} 

.contact-info-box	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding :   40px;
  border-radius: var(--border-radius);
                    margin-bottom :  40px;
    text-align     :    center;
}

.contact-info-box h2


{
  font-size: 1.6rem;
  margin-bottom: 15px;
   color: white;
}

.contact-info-box p	{
   margin-bottom :  20px;
  opacity    :0.95;

}

.contact-details		{
	 display: flex;
    flex-direction  :  column;
    gap: 15px;
}

.detail-item {
  background: rgba(255, 255, 255, 0.1);
   padding: 15px;
  border-radius: var(--border-radius);
}

.detail-item strong {
    display: block; 
    margin-bottom: 8px; 
  font-size    : 0.95rem;
}

.detail-item a,
.detail-item p {
    color: white;
  text-decoration: none;
   font-size :1.1rem;
  margin: 0;

}

.detail-item a:hover {
    text-decoration: underline;
	
}

.action-buttons {
    display: flex;
   gap: 20px;
      justify-content: center;
    flex-wrap: wrap;
       margin-bottom: 40px;
}

.action-buttons .cta-button{
  min-width    :       200px; 

}

.why-choose-section {
	    background: white;
	 padding: 100px 20px;

}

.why-choose-section h2 {
  font-size  : 2.5rem;
   text-align: center;
  margin-bottom :60px;
  color: var(--primary-color);
}


.benefits-grid


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
  max-width: 1200px;
   margin: 0 auto;
}



.benefit {
  background: var(--light-bg);
   padding: 40px;
  border-radius: var(--border-radius);
	 text-align: center;
  transition: var(--transition);
}

.benefit:hover 
 {
  transform: translateY(-8px);
     background :white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
   	font-size: 3rem;
	  font-weight: bold;
	  color: var(--secondary-color);
	   margin-bottom: 15px;
     }

.benefit h3    {
    font-size: 1.3rem;
  color: var(--primary-color);
   margin-bottom: 15px;
}

.benefit p {
  color: var(--text-light);
   line-height: 1.8;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detailed-item,
    .service-detail-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.elite {
        transform: scale(1);
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 40px 20px;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .step {
        grid-template-columns: 50px 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .thankyou-content {
        padding: 30px 15px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .contact-info-box {
        padding: 25px;
    }
}.about-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding:  80px 20px;
   text-align: center;

}

.about-hero h1 {
         font-size: 3rem;
    margin-bottom:       15px;
    line-height: 1.2;
}

.about-intro {

	   font-size: 1.2rem;
    opacity :  0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
     }

.about-main {
  padding: 100px 20px;

    background: white;
}

.about-content-wrapper {
     display: grid;
    grid-template-columns: 1fr 1fr;
                    gap: 60px;
	align-items: start;
	max-width: 1200px;
   margin: 0 auto;
}

.about-text h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
    margin-bottom: 15px;
   line-height  :       1.3;
}

.about-text h2:first-child {
 margin-top: 0;
}

.about-text p{
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
	font-size: 1rem;
}

.values-list {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 25px;
   margin-top: 30px;
}

.value {
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--secondary-color);
}

.value h3 {
      font-size: 1.1rem;
  color: var(--primary-color);
	 margin-bottom  :     10px;
}

.value p   {
  font-size: 0.95rem;
   margin-bottom: 0;
}

.about-image {
  border-radius: var(--border-radius);
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
   top: 100px;
}

.about-image img {
  width: 100%;
        height: auto;
   display: block;
 object-fit: cover;
  border-radius: var(--border-radius); 
	
}

.about-stats {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.about-stats {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		 gap: 40px;
   max-width: 1200px;
				 margin: 0 auto;
	}

.stat-item {
  text-align: center;
    padding: 30px;
   background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
   font-size: 3rem;
   font-weight: bold;
  color: var(--secondary-color);
   margin-bottom    :       10px;
}

.stat-item p {
  color: var(--primary-color);
	 font-size: 1.1rem;
  font-weight:        500;
}

.about-team 
 {
	 padding: 100px 20px;

	                    background: white;
}

.about-team h2 {
    font-size: 2.5rem;
    text-align: center;
  color: var(--primary-color);
      margin-bottom: 40px;
}

.team-description  
  {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
    max-width: 900px;
   margin: 0 auto 25px;
               text-align: center;
}

.team-description:last-of-type {
                    margin-bottom: 0;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: static;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .team-description {
        font-size: 1rem;
    }
}.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 80px 20px;
       text-align: center;
}

.policy-hero h1 {
   font-size: 2.8rem;
  margin-bottom     :  0;
   line-height    :      1.2;
}

.policy-section     {
 padding: 80px 2rem;
  background: #ffffff;
}

.policy-container {
               max-width: 800px;
   margin: 0 auto;
     text-align: left;
}

.policy-container h2 {


   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom    :      1.5rem;
  margin-top: 2rem;
   font-weight: 600;
  line-height: 1.3;
     }

.policy-container h2:first-of-type {
          margin-top: 0;
} 

.policy-container p {
  color: var(--text-light);

	    margin-bottom: 1.5rem;

	    line-height: 1.8;

	          font-size: 1rem;
}



.policy-container p:last-child  {

    margin-bottom: 0;
     }@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-section {
        padding: 60px 1rem;
    }
}@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policy-section {
        padding: 40px 1rem;
    }
}