*


{
    margin     :   0;
         padding    :  0;
    box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c3e50;
   line-height: 1.6;
  background-color: #f8f9fa;
}

.navbar {


  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
   top: 0;
   z-index: 100;}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: flex;
   justify-content: space-between;
   align-items: center;
   height: 70px;
}

.nav-logo img {
          height: 64px;
  width: auto;
}

.nav-menu {
	display: flex;
    list-style: none;
  gap: 40px;
}

.nav-item a {
   color: #2c3e50;
		 text-decoration: none;
   font-weight: 500;
   transition: color 0.3s ease;
  font-size: 16px;
}

.nav-item a:hover    {
    color: #3498db;
}

.hamburger {
    display: none;
	 flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
  width: 25px; 
	    height: 3px; 
	   background-color: #2c3e50; 
	   border-radius: 2px; 
	  transition: all 0.3s ease;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid #ecf0f1;
        padding: 15px 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item a {
        font-size: 18px;
    }

    .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, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
	align-items: center;
   justify-content: center;
}

.hero-content h1
	{
        font-size: 48px;
  margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 20px;
    margin-bottom: 40px;
    opacity  :        0.95;
  max-width: 700px;
  margin-left:   auto;
	margin-right: auto;}

.cta-button
{
   display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 15px 40px;
   border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
   font-size: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 350px;
    }
}.section-about {
    padding: 80px 20px;
  background-color: #ffffff;

}

.section-wrapper {
   max-width     :    1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
	align-items     :   center;
}

.about-content h2 {
  font-size     : 36px;
     margin-bottom: 30px;
    color: #2c3e50;
}

.about-content p {
          font-size: 16px;
  margin-bottom: 30px;
   color: #555;
}

.features-grid {
   display: grid;
	    grid-template-columns: 1fr;
	                    gap: 25px;
}



.feature-item h3 {
    font-size: 18px;
    color: #667eea;
          margin-bottom: 10px; 
	
}

.feature-item p {
   font-size: 14px;
    color: #666;
	margin: 0;
}

.section-about img {

        width: 100%;
	border-radius   :   10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}@media (max-width: 768px) {
    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .section-about {
        padding: 50px 20px;
    }
}.section-training {

  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
}


.section-training h2 {
   font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
   color: #2c3e50;
}

.training-cards {
   max-width: 1200px;
         margin :    0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;

}

.training-card{
    background-color: #ffffff;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
     }

.training-card img {
    width: 100%;
	  height: 220px;
	  object-fit: cover;
}

.training-card h3 {


     font-size   :   20px;
  padding: 25px 25px 15px;
   color: #2c3e50;


	} 

.training-card p {

	font-size: 14px;
  padding    :0 25px 25px;
  color: #666;
	}

.section-benefits
	{
  padding: 80px 20px;
    background-color: #ffffff;
}

.benefits-wrapper {
  display     :grid;
    margin   :        0 auto;
   max-width  :    1200px;
  grid-template-columns:1fr 1fr;
                    align-items: center;
   gap: 50px;
}

.benefits-wrapper img {
  width     :  100%;
   border-radius  : 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 

}

.benefits-content h2


{
    font-size  :        36px;
    margin-bottom: 30px;
   color: #2c3e50;
}

.benefits-list {
	    list-style: none;
	}

.benefits-list li
	{
  font-size: 16px;
      margin-bottom: 18px;
      padding-left: 30px;
      position: relative;
   	color: #555;
}

.benefits-list li:before {
  content: "✓";
   position: absolute;
    left   :    0;
	 color: #667eea;
    font-weight     :   bold;
  font-size   :18px;
}@media (max-width: 768px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-content h2 {
        font-size: 28px;
    }
}.section-events {
   padding : 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1); 

}

.section-events h2 {
  font-size: 36px;

    text-align: center;

  margin-bottom: 15px;

    color: #2c3e50;
}

.section-intro {
    text-align: center;
  font-size     :       16px;
  color:      #666;
    margin-bottom: 60px;
	 max-width: 600px;
    margin-left: auto;
    margin-right :      auto;
}

.events-grid {
				 max-width: 1200px;
       margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
    background-color: #ffffff;
  padding: 40px 30px;
   border-radius: 12px;
  text-align     :center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.event-card:hover {
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

.event-icon {
   font-size :      48px;
  margin-bottom: 20px;
}

.event-card h3 {


  font-size: 20px;
   margin-bottom: 15px;
  color: #2c3e50;


}

.event-card p {
  font-size: 14px;
  color: #666;
}

.section-cta  {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-wrapper {

  max-width: 800px; 
	    margin: 0 auto;
	}

.cta-wrapper h2    {
  font-size: 36px;
   margin-bottom: 20px;
}

.cta-wrapper p {
  font-size: 18px;
   opacity: 0.95;
   margin-bottom     : 40px;
}

.cta-button-primary {
  display: inline-block;
	background-color   :       #fff;
	 color: #667eea;
  padding: 16px 45px;
  border-radius: 50px;
    text-decoration: none;
  font-weight   :    600;
    transition: all 0.3s ease;
    font-size: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .section-cta {
        padding: 50px 20px;
    }

    .cta-wrapper h2 {
        font-size: 28px;
    }

    .cta-wrapper p {
        font-size: 16px;
    }
}.section-offer {
  padding: 80px 20px;

	     background-color: #ffffff;
}

.section-offer h2


{
                    color: #2c3e50;
    margin-bottom: 60px;
   text-align: center;
  font-size: 36px;
}  

.offer-table {


   max-width :1000px;
   margin: 0 auto;
   display: flex;
       flex-direction: column;
               gap: 20px;
	}

.offer-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
	border-radius: 10px;
	color :     #ffffff;
}

.offer-item h3 {
    font-size: 20px;
					margin-bottom: 10px;
}

.offer-item p {
	font-size: 15px;
   opacity    :  0.95;
}@media (max-width: 768px) {
    .section-offer {
        padding: 50px 20px;
    }

    .section-offer h2 {
        font-size: 28px;
    }

    .offer-row {
        padding: 25px;
    }
}.section-contact {
       padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
}

.section-contact h2 {
	 font-size  :    36px;
  text-align: center;
  margin-bottom: 15px;
					color: #2c3e50;
} 

.section-contact > p


{
  text-align     :    center;
	font-size: 16px;
    color: #666;
  margin-bottom   :     50px;
	max-width: 600px;
                    margin-left: auto;
   margin-right :   auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
   background-color:#ffffff;
    padding:  40px;
 border-radius  :   12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 25px; 

}

.form-group label {
	display: block;
   font-weight: 600;
  margin-bottom: 8px;
   color: #2c3e50;
   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {

	   width    :    100%;
     padding: 12px 15px;
       border    :     2px solid #ecf0f1;
       border-radius     :     6px;
      font-size: 14px;
       font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
  border-color: #667eea;
	
}

.form-group textarea {
    resize     :     vertical;
}

.submit-btn   {
	width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
        border: none;
  border-radius: 6px;
	 font-size: 16px;
   font-weight    :       600;
    cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
@media (max-width: 768px) {
    .section-contact {
        padding: 50px 20px;
    }

    .section-contact h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.footer {
    background-color: #2c3e50;
          color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-container {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
				 grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-section  {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
	height: 86px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
               display :      grid;
   grid-template-columns: 1fr 1fr;
	gap: 40px; 
	
}


.footer-contact h4,
.footer-links h4    {
    font-size: 16px;
  margin-bottom: 15px;
  color :    #ffffff;
}

.footer-contact p	{


  font-size:     14px;
  margin-bottom: 10px;
   line-height: 1.6;


}

.phone-number {
  color: #3498db;
   font-weight: 600;
}

.footer-links ul {

  list-style: none;
     }

.footer-links li  {
   margin-bottom   :    12px;
}

.footer-links a {
   color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
  padding-top: 20px;
    border-top     :    1px solid #34495e;
    color: #95a5a6;
    font-size:     13px;
	text-align: center;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .training-cards {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        height: 60px;
    }

    .nav-logo img {
        height: 50px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: #ffffff;
      padding: 100px 20px;
  text-align: center;
  min-height: 400px;
   display    :       flex;
   align-items  :     center;
    justify-content:       center;
}

.services-hero-content h1 {
   font-size     :   48px;
			font-weight: 700;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .services-hero {
        padding: 60px 20px;
        min-height: 300px;
    }
}.services-overview {
  padding: 80px 20px;
    background-color: #ffffff;


}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {

	   margin-bottom: 15px;
  text-align: center;
    font-size  : 36px;
  color: #2c3e50;
	}

.overview-intro     {
  text-align: center;
  font-size: 16px;
  color: #666;
	 margin-bottom: 60px;
	max-width: 600px;
    margin-left: auto;
	 margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   : 30px; 
	
}

.service-card
{
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 40px 30px;
   border-radius     :    12px;
  position: relative;
    transition  :    transform 0.3s ease, box-shadow 0.3s ease;
   border-left: 5px solid #667eea;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-number {
               font-size: 48px;
  font-weight   :700;
					color: #667eea;
  opacity: 0.2;
  position: absolute;
  top: 15px;
    right: 20px;
}

.service-card h3 {
 font-size: 20px;
  margin-bottom:   15px;
  color: #2c3e50;
}

.service-card p {

   font-size: 14px;
  color: #666;
  line-height    :        1.7;

}@media (max-width: 768px) {
    .services-overview {
        padding: 50px 20px;
    }

    .services-overview h2 {
        font-size: 28px;
    }
}.services-detailed {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
} 

.detailed-container {
  max-width: 1200px;
    margin  :  0 auto;
}

.service-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items     :      center;
  margin-bottom: 80px; 

}

.service-detailed-item.reverse {
   direction:      rtl;
}

.service-detailed-item.reverse > * {

     direction: ltr;

}

.detail-image {
    overflow: hidden;
    border-radius: 12px;

}

.detail-image img {
  width: 100%;
  height:      auto;
    display: block;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.detail-content h2 {
  font-size: 28px;
     margin-bottom: 20px;
	 color: #2c3e50;
}

.detail-content p {
          font-size: 15px;
   color: #666;
      margin-bottom: 25px;
	 line-height: 1.7;
}

.detail-list {
    list-style: none;
	margin-bottom: 25px;
}

.detail-list li {


         font-size     :   14px;
					color    :    #555;
   margin-bottom    :       12px;
   padding-left: 25px;
	position   :   relative;
}

.detail-list li:before {
                    position     :    absolute; 
	  font-weight: bold; 
	   left    :     0; 
	   color: #667eea; 
	  content: "→";
}

.detail-footer {
 font-size    : 13px;
  color: #999;
  font-style: italic;
}@media (max-width: 768px) {
    .services-detailed {
        padding: 50px 20px;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detailed-item.reverse {
        direction: ltr;
    }

    .detail-content h2 {
        font-size: 22px;
    }
}.pricing-section {
  padding: 80px 20px;
  background-color    :     #ffffff;

}

.pricing-section h2 {


   font-size: 36px;
   text-align: center;
   margin-bottom: 15px;
  color: #2c3e50;
     }

.pricing-intro {

	         max-width: 600px;
  font-size :  16px;
    text-align: center;
    color: #666;
   margin-bottom: 60px;
   margin-left: auto;
   margin-right: auto;
}

.pricing-grid {


    max-width: 1100px;

  margin: 0 auto;

    display   :    grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap  :    30px;


}

.pricing-card {
	 background-color: #f8f9fa;
   padding: 40px 30px;
	 border-radius: 12px;
   border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
     position: relative;
  text-align: center;
}

.pricing-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	      color: #ffffff; 
	  border :    2px solid #667eea; 
	  transform: scale(1.05);
}

.badge {
  position   :    absolute;
    top: -15px;
    left: 50%;
  transform: translateX(-50%);
   background-color: #f39c12;
   color: #ffffff;
   padding: 5px 15px;
    border-radius: 20px;
	 font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px; 
   margin-bottom:      10px;
}

.pricing-card .price   {
  font-size: 16px;
   margin-bottom: 30px;
	opacity: 0.9;
	
     }

.pricing-card.featured .price {
	opacity:      0.95;
}

.pricing-features		{
 list-style     : none;
	text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
		font-size: 14px;
  padding: 8px 0;
    border-bottom    :  1px solid #ecf0f1;


}

.pricing-card.featured .pricing-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   color: #ffffff;
}

.pricing-features li:last-child {
   border-bottom: none; 

}

.pricing-cta {
	font-size: 13px;
  font-style: italic;
    color: #999;
}

.pricing-card.featured .pricing-cta {
  color: rgba(255, 255, 255, 0.8);
}@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 20px;
    }

    .pricing-section h2 {
        font-size: 28px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}.process-section {


   padding: 80px 20px; 
	  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
	}

.process-section h2 {
   font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
   max-width: 1000px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.process-step {
    background-color: #ffffff;
   padding: 30px;
  border-radius: 12px;
	text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.process-step:hover  
  {
  transform: translateY(-5px);
}

.step-number {

 width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display     :  flex;
  align-items: center;
  justify-content: center;
    font-size: 28px;
               font-weight: 700;
   margin     :0 auto 20px;

}

.process-step h3 {
  margin-bottom: 15px;
         font-size: 18px;
   color: #2c3e50;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}  @media (max-width: 768px) {
    .process-section {
        padding: 50px 20px;
    }

    .process-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}.faq-section {
   padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
   font-size: 36px;
  text-align: center;
    margin-bottom :      60px;
   color: #2c3e50;
}

.faq-container
{
     max-width: 900px;
   margin: 0 auto;
    display  :   grid;
    grid-template-columns :1fr;
   gap: 25px;
} 

.faq-item
	{
  background-color: #f8f9fa;
   padding: 30px;
   border-radius: 10px;
        border-left: 5px solid #667eea;
}

.faq-question {


  cursor: pointer;
   color: #2c3e50;
	margin-bottom: 15px;
   font-size: 16px;
		 transition: color 0.3s ease;
     }

.faq-question:hover {
   color: #667eea;
}

.faq-item p {
	     font-size: 14px;
      color: #666;
   line-height: 1.7;
}@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-section h2 {
        font-size: 28px;
    }
}.services-cta {
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align  :    center;
    color: #ffffff;

}

.cta-content {

	  max-width: 800px;
    margin: 0 auto;


}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}


.cta-content p {
  font-size    :     18px;
   margin-bottom: 40px;
  opacity: 0.95;
} 

.cta-content .cta-button {
    display: inline-block;
  background-color: #fff;
  color: #667eea;
    padding: 16px 45px;
         border-radius: 50px;
    text-decoration: none;
    font-weight   :        600;
   transition: all 0.3s ease;
    font-size: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-content .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .services-cta {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}.thankyou-section {
   padding: 100px 20px;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
  min-height: calc(100vh - 70px);
  display: flex;
    align-items: center;
               justify-content: center;
}

.thankyou-container {
         max-width: 700px;
   background-color: #ffffff;
  padding: 60px 40px;
    border-radius    :15px;
	text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.success-icon {
	 width: 100px;
   height  :    100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :     #ffffff;
                    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-size: 60px;
  font-weight: bold;
       margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;


}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
    font-size: 32px;
    color  :#2c3e50;
   margin-bottom: 15px;
}

/* Component styles */

.thankyou-subtitle {

   font-size: 18px;
    color   : #667eea;
   margin-bottom: 40px;
	font-weight: 600;


}

/* Hack for old browsers */

.thankyou-content {
   text-align: left;
   margin-bottom: 40px;
}

.thankyou-content > p  {
                    color  :    #666;
  margin-bottom: 30px;
   font-size: 15px;
  line-height: 1.8;


}

.next-steps {
   background-color     :       #f8f9fa;
   padding: 30px;
   border-radius: 10px;
    margin-bottom    :        30px;
}

.next-steps h2 {
  font-size: 20px;
  color: #2c3e50;
   margin-bottom: 25px;
  text-align: center;
}

/* Legacy code */

.steps-list {
		list-style: none;}

.steps-list li {
    margin-bottom: 20px;
  font-size: 14px;
}

/* Third-party styles */

.steps-list li:last-child {
   margin-bottom: 0;
}

.steps-list strong {
  color: #667eea;
  display: block;
  margin-bottom: 5px;
}
/* Vendor-specific */
.steps-list span{
   color: #666;
   display: block;
   padding-left: 0;
}

.faq-quick {
  background-color     :      #ecf0f1;
      padding: 25px;
     border-radius: 10px;
     margin-bottom: 30px;
       text-align   :   left;
}

.faq-quick h3 {
	font-size: 16px;
   color: #2c3e50;
    margin-bottom: 15px;
	
}
/* Vendor-specific */
/* Animation and transitions */

.faq-quick p {
    font-size: 14px;
    color: #666;
   margin-bottom: 12px;
}

/* Development only */

.faq-quick p strong {
    color  :  #2c3e50;
}

.contact-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    padding    :    30px;
    border-radius :    10px;
  text-align  :     center;
}

/* Custom modifications */

/* Experimental feature */

/* Auto-generated CSS */

.contact-info h3 {
   font-size:        18px;
   margin-bottom: 15px;
}

.contact-info p {


    font-size: 14px;
  margin-bottom: 12px;
}

.contact-phone,
.contact-address 
 {
    font-weight: 600;
}

.action-buttons {
          display: grid;
    grid-template-columns: 1fr 1fr;
      gap: 15px;
}

.btn-primary,
.btn-secondary
	{
    display: inline-block;
    padding: 14px 30px;
  border-radius: 8px;
 text-decoration: none;
   font-weight    :     600;
   font-size: 15px;
    transition: all 0.3s ease;
    text-align  : center;
}

.btn-primary {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
     }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary   {
    background-color: #ecf0f1;
    color: #2c3e50;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
    background-color: #667eea;
  color: #ffffff;
}
@media (max-width: 768px) {
    .thankyou-section {
        padding: 50px 20px;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-container h1 {
        font-size: 24px;
    }

    .next-steps h2 {
        font-size: 18px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 45px;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
  min-height: calc(100vh - 70px - 300px);
}

.policyContainer {
  max-width: 850px;
	  margin :        0 auto;
	   text-align: left;
		 background-color: #ffffff;
	   padding: 50px;
	  border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size  :      2.8rem;
   color: #2c3e50;
	 margin-bottom: 40px;
    font-weight: 700;
  border-bottom: 3px solid #667eea;
    padding-bottom: 20px;
}

.policyContainer h2 {
  font-size: 1.8rem;
   color: #2c3e50;
   margin-top:  35px;
	 margin-bottom: 20px;
   font-weight: 600;
   color: #667eea;
}

.policyContainer p  {
    color :    #555;
	margin-bottom: 18px;
   line-height:    1.8;
	 font-size: 1rem;
}

.policyContainer strong {
    color: #2c3e50;
   font-weight: 600;
}

.policyContainer ul {
    margin-left  :  25px;
    margin-bottom: 18px;
}

.policyContainer ul li {
  color: #555;
    margin-bottom: 10px;
   line-height:   1.7;
}

.policyContainer ol {
       margin-left: 25px;
  margin-bottom: 18px;
}

.policyContainer ol li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}@media (max-width: 768px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer {
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 20px 15px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}