* {
    margin: 0;
  padding: 0;
   box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body


{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

	               line-height    :  1.6;

	    color: #2c3e50;

	  background-color: #ffffff;
}

.navbar {
   position: sticky;
    top: 0;
  background: #ffffff;
    border-bottom :    1px solid #ecf0f1;
	padding    :  0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
     max-width: 1200px;
          margin:0 auto;
               display: flex;
   justify-content: space-between;
    align-items: center;
      padding: 0 20px;
                    height: 70px;


}

.nav-logo-section  
  {
    display: flex;
   align-items: center;
          gap: 12px;
  text-decoration: none;
	 cursor: pointer;
}

.nav-logo {
     height: 64px;
   width: auto;

}

.nav-brand {
   font-size: 22px;
  font-weight     :    700;
    color: #2c3e50;
   letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
   list-style :      none;
   gap  :   0;

}

.nav-link {
	display: block;
   color: #2c3e50;
	text-decoration: none;
   padding: 10px 24px;
   font-weight: 500;
    font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
   color: #3498db;
	border-bottom-color   :   #3498db;
}

.burger-menu {
    display: none;
   flex-direction     :        column;
   cursor :     pointer;
   background: none;
    border: none;
	padding: 8px;
	gap: 6px;
}

.burger-menu span  
  {
   width: 25px;
    height: 3px;
	background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid #ecf0f1;
    }
}.hero {
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap:      40px;
    align-items: center;
    max-width: 1200px;
	margin  :      0 auto;
    padding   :       80px 20px;
}

.hero-content h1 {
 font-size: 48px;
  line-height  :     1.2;
    margin-bottom   :  24px;
   color: #1a252f;
   font-weight: 700;
}

.hero-content p {
      font-size: 18px;
   color  :        #555555;
    margin-bottom: 32px;
   line-height: 1.7;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
    padding: 14px 32px;
          border-radius: 6px;
    text-decoration: none;
   font-weight: 600;
	font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
     }

.hero-image img {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}.features-intro	{
    background: #f8f9fa;
   padding: 80px 20px;
}

.section-header {
   text-align    :    center;
  max-width: 600px;
   margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
   margin-bottom: 16px;
   color: #1a252f;
}

.section-header p {
   font-size: 16px;
    color: #666666;
  line-height: 1.6;
}
/* Third-party styles */



/* Animation and transitions */

.features-grid {
    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
   background    :white; 
	  padding:40px 30px; 
	  border-radius: 10px; 
	  box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
	     transition: all 0.3s ease; 
	  text-align     :   center;
}

.feature-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-icon {
    margin-bottom: 20px;
  display: flex;
   justify-content  : center;
}

/* FIXME: IE11 compatibility */
	/* NOTE: keep for legacy support */


.feature-icon img {
   width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); 
	
}

.feature-card h3 {
      font-size: 20px;
	margin-bottom: 12px;
    color: #1a252f; 

}

.feature-card p {
   font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.coaching-services{
   padding: 80px 20px;
   max-width  :      1200px;
   margin: 0 auto;
}

.service-block {
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 50px;
       align-items: center;
}

/* Custom modifications */


.service-block img {
    width: 100%;
          border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-content h2 {
    font-size: 36px;
	 margin-bottom: 20px;
    color: #1a252f;
}

.service-content p {
               font-size: 15px;
      color: #555555;
       margin-bottom: 24px;
       line-height: 1.8;
}

.service-list {
  list-style    :none;
	  margin-top: 20px;
}  

.service-list li {
  padding: 12px 0;
    padding-left: 28px;
	position: relative;
    font-size: 15px;
    color: #444444;
}

.service-list li:before {
  content: "✓";
   position: absolute;
    left: 0;
   color: #3498db;
   font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.platform-features {
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
  padding: 80px 20px;
}

.platform-features h2 {
   font-size: 36px;
    text-align: center;
  margin-bottom: 60px;
  color: #1a252f;
}

.platform-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
	 max-width: 1200px;
        margin: 0 auto;
     }

.platform-item  {
     background: white;
  padding: 40px 30px;
	border-radius  :        10px;
	text-align     :     center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
   transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.platform-item:hover {
   border-top-color     :   #3498db;

	  box-shadow: 0 6px 20px rgba(0,0,0,0.1);


}

.platform-number {
   display: flex;
    align-items: center;
      justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  border-radius: 50%;
   font-size: 24px;
  font-weight: bold;
   margin: 0 auto 20px;


}

.platform-item h3   {
	   font-size: 18px;
   margin-bottom: 12px;
   color  :   #1a252f;
}

.platform-item p {


 font-size    :14px;
	color: #666666;
  line-height: 1.6;
	}

.workshop-showcase {
      padding: 80px 20px;

	    max-width   :1200px;

	  margin: 0 auto;
     }

.workshop-item-left {
    display   :   grid;
    grid-template-columns     :  1fr 1fr;
    gap: 50px;
	align-items:       center;
}

.workshop-item-left img {
          width: 100%;
    border-radius   :      12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);


}

.workshop-description h2 {
    font-size: 36px;
  margin-bottom  :        20px;
	color: #1a252f;
}

.workshop-description p {
   font-size: 15px;
   color: #555555;
    line-height: 1.8;
}@media (max-width: 768px) {
    .workshop-item-left {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.conference-info {
  background: #f8f9fa;

	  padding    :80px 20px;
}

.conference-header {
   text-align: center;
	 max-width: 700px;
    margin: 0 auto 60px;
}

.conference-header h2 {
   font-size: 36px;
        margin-bottom:  16px;
 color: #1a252f;
}

/* Performance critical */


.conference-header p {
  font-size: 16px;
    color: #666666;
   line-height: 1.7;
}

.conference-grid {
  display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
   max-width: 1200px;
	margin: 0 auto;
}

.conference-card {
   background: white;
    border-radius: 12px;
               overflow     :    hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.conference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.conference-card img

{
               width: 100%;
    height:  220px;
    object-fit: cover;
}

.conference-card h3 {
   font-size: 20px;

	    color : #1a252f;

	   padding: 24px 24px 12px;
}

.conference-card p {
  font-size: 14px;
  color: #666666;
    padding: 0 24px 24px;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 20px;
		 text-align: center;
}

/* TODO: optimize for mobile */
/* Auto-generated CSS */


.cta-content h2 {
   font-size: 40px;
    color: white;
  margin-bottom     :      20px;}

.cta-content p {

		font-size: 18px;
  color: rgba(255,255,255,0.9);
     margin-bottom: 40px;
   max-width :       600px;
       margin-left    : auto;
    margin-right: auto;
    line-height: 1.7;
     }

.cta-button-large {

  display: inline-block;
   background: white;
  color: #3498db;
   padding: 16px 40px;
  border-radius: 6px;
    text-decoration    :        none;
  font-weight    :700;
    font-size: 16px;
    transition:   all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	


}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.contact {
	 padding: 80px 20px;
  background: #f8f9fa;
}

.contact-wrapper {
  max-width: 800px;
   margin: 0 auto;
  background: white;
   padding: 60px 40px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

}

.contact-header {
    text-align: center;
	 margin-bottom: 50px;
}

.contact-header h2		{
   color: #1a252f;
   margin-bottom: 12px;
    font-size   : 32px;
} 

.contact-header p {
  font-size   :     15px;
    color  : #666666;
}

.contact-form {
    display: flex;
 flex-direction: column;
}

/* Typography */


.form-row {
  display: grid; 
   grid-template-columns: 1fr 1fr; 
  gap: 20px; 
   margin-bottom: 20px;
}

.form-input,
.form-textarea {
	padding: 14px 16px;
    border: 1px solid #ddd;
                    border-radius     :    6px;
   font-size: 14px;
   font-family: inherit;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {

		outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
               grid-column: 1 / -1;
     min-height: 120px;
  resize:   vertical;
    margin-bottom: 24px;


}

.form-button {

  background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
   padding     :        16px 32px;
  border: none;
	border-radius: 6px;
   font-size: 15px;
  font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);

}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 40px 20px;
    }
}.footer {


  background: #2c3e50;
   color: #ecf0f1;
    padding: 60px 20px 30px;

	}

.footer-container		{

	       max-width: 1200px;
	   margin: 0 auto;
	   display: grid;
	  grid-template-columns: 2fr 1fr;
	    gap: 60px;
	   margin-bottom   :       40px;
}

.footer-main {
	display: grid;
    grid-template-columns: auto 1fr;
   gap: 40px;
    align-items: start;
}

.footer-logo {
	height: 86px;
  width   :     auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
     grid-template-columns: 1fr 1fr;
   gap: 40px;
}

.footer-section h4 {
  font-size: 14px;
    font-weight: 700;
   margin-bottom: 12px;
  text-transform: uppercase;
   letter-spacing: 0.5px;
    color: white;
	
}

.footer-section p {
   font-size: 14px;
    line-height: 1.8;
  color: #bdc3c7;
}

.footer-links {
               display: grid; 
   grid-template-columns: 1fr 1fr; 
    gap: 40px;
}

.footer-column h5 {
   font-size   :13px;
   font-weight: 700;
    margin-bottom    :     16px;
	 text-transform: uppercase;
  letter-spacing  :   0.5px;
    color: white;
}



.footer-column ul {
    list-style: none;
}

.footer-column li {
      margin-bottom     :  10px;
}


.footer-column a {
  color: #bdc3c7;
               text-decoration: none;
  font-size   :       14px;
     transition: color 0.3s ease;
}

.footer-column a:hover {
   color: #3498db;
}

.footer-bottom {
    border-top   :      1px solid #34495e;
  padding-top: 30px;
    text-align: center;
} 

.footer-bottom p {
    font-size: 13px;
  color: #95a5a6;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}.services-hero {


  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding: 120px 20px;
  text-align: center; 
	
}

.services-hero-content h1 {
   font-size: 48px; 
	   line-height:    1.2; 
		margin-bottom :      16px; 
	   font-weight: 700;
}

.services-hero-content p {
                    font-size: 20px;
    opacity: 0.95;
	line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero {
        padding: 80px 20px;
    }
    
    .services-hero-content h1 {
        font-size: 32px;
    }
    
    .services-hero-content p {
        font-size: 16px;
    }
}.service-detailed-section {
	max-width: 1200px;

	    margin: 0 auto;

	    padding: 80px 20px;

}



.service-item {
      display   :  grid;
  grid-template-columns :1fr 1fr;
    gap: 50px;
   align-items: center;
}

.service-image-wrapper {
   display: flex;
   align-items:center;
  justify-content: center;
}

.service-image-wrapper img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	
}

.service-details h2 {
     font-size: 36px;
  margin-bottom: 20px;
  color: #1a252f;
    font-weight: 700;
}

.service-details p {


   color: #555555;
    line-height: 1.8;
   font-size: 15px;
   margin-bottom: 30px;}

.service-features {
  display: grid;
         grid-template-columns: 1fr 1fr;
    gap: 20px;
  margin-bottom: 40px;
}

.feature-item h4 {
	font-size:       16px;
    margin-bottom: 10px;
      color :    #2c3e50;
         font-weight: 600;
}

.feature-item p {

    font-size    :   13px;
      color: #666666;
       line-height: 1.6;
 margin: 0;
     }

.service-cta  {
	 display :inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  padding: 14px 32px;
    border-radius:    6px;
  text-decoration     :      none;
    font-weight:600;
    font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
} 

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.alt-layout {
	 background: #f8f9fa;
}

.service-item-alt {
   align-items: center;
	   display: grid;
	    gap: 50px;
	          grid-template-columns   :    1fr 1fr;
}

.service-details-alt h2{
  font-weight     : 700;
   margin-bottom     :     20px;
     font-size: 36px;
  color: #1a252f;
}

.service-details-alt p {
   font-size: 15px;
    color: #555555;
  line-height: 1.8;
 margin-bottom: 30px;
}

.service-image-wrapper-alt {
   display: flex;
  align-items: center;
      justify-content: center;
  order: 2;
}

.service-image-wrapper-alt img {
      width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .service-item,
    .service-item-alt {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-details h2,
    .service-details-alt h2 {
        font-size: 24px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-image-wrapper-alt {
        order: 1;
    }
}.pricing-section {
	padding: 80px 20px;
   background: #f8f9fa;
   text-align: center;
}

.pricing-section h2 {
  font-size: 40px;
   color: #1a252f;
	margin-bottom: 12px;
} 

.pricing-intro {


                    color: #666666;
    margin-bottom: 60px;
  font-size: 16px;
     }

.pricing-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap   : 30px;
          max-width: 1200px;
   margin: 0 auto;

}

.pricing-card {
   background: white;
	   border-radius: 12px;
	    padding     :   40px 30px;
	  text-align: left;
	  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	   transition: all 0.3s ease;
	        position: relative;
	    display: flex;
	    flex-direction :column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); 

}

.pricing-card.featured {
   border: 2px solid #3498db;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
	  transform: scale(1.05) translateY(-8px);


}

.pricing-badge {
   position: absolute;
    top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    padding: 6px 20px;
  border-radius: 20px;
    font-size: 12px;
   font-weight: 700;
    letter-spacing: 0.5px;
	
}

.pricing-header h3 {
  font-size: 24px;
    color: #1a252f;
   margin-bottom  :  8px;
}

.pricing-desc {
  font-size: 13px;
    color: #666666;
    margin-bottom: 0;
}

.pricing-value {
  display: flex;
    align-items: baseline;
  gap: 8px;
  margin: 30px 0;
    justify-content :        flex-start;
}

.price {
 font-size :  36px;
  font-weight: 700;
  color: #3498db;


}

.period {
  font-size: 14px;
  color: #666666;
}

.pricing-features {
     list-style: none; 
         margin-bottom: 30px; 
  flex-grow: 1;}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size  :   14px;
   color: #555555;
}

.pricing-features li:last-child {
               border-bottom: none;
}

.pricing-button {
   display: inline-block;
   background: #ecf0f1;
	 color: #2c3e50;
       padding    :   12px 30px;
  border-radius: 6px;
    text-decoration: none;
  font-weight: 600;
  font-size: 14px;
    text-align: center;
  transition:      all 0.3s ease;
   border: 2px solid transparent;
}

.pricing-button:hover {
   background  : #bdc3c7;
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-button,
.featured-button {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color     :        white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.featured-button:hover {
  background: linear-gradient(135deg, #2980b9, #1f618d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}.faq-section {


   padding: 80px 20px;

	       max-width: 1000px;

	               margin: 0 auto;



}

.faq-section h2 {
	    font-size: 40px;
    text-align: center;
  color: #1a252f;
    margin-bottom     :       60px;
	}

.faq-container {
  display: flex;
   flex-direction: column;
    gap: 20px;
}

.faq-item {
      border: 1px solid #ecf0f1;
    border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
   transition: all 0.3s ease;
}

.faq-item:hover {

	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	}

.faq-question {
    width: 100%;
  padding: 20px;
   background: white;
    border: none;
		 font-size: 16px;
  font-weight: 600;
    text-align: left;
   color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	transition: all 0.3s ease; 
	
}

.faq-question:hover {
    background    :      #f8f9fa;
}

.faq-question:after {
  content: "+";
          font-size: 24px;
  color: #3498db;
   transition: transform 0.3s ease;
	
}

.faq-item.active .faq-question:after {
  transform: rotate(45deg);
}

.faq-answer {
    max-height: 0; 
  overflow: hidden; 
   transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
    padding: 20px;
  background: #f8f9fa;
	 margin: 0;
   font-size:    14px;
   color: #555555;
  line-height: 1.8;
}

.thankyou-section {
	padding   :      120px 20px;
  min-height: 600px;
    display: flex;
 align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
    text-align: center;
	 background: white;
    padding   :       60px 40px;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  max-width: 600px;
}

.success-icon	{
    margin-bottom: 30px;
	 display:        flex;
	justify-content  :     center;
   color: #2ecc71;
}

.success-icon svg {
        stroke-linecap: round;
	    stroke-linejoin: round;
}

.thankyou-container h1 {
	font-size: 36px;
  color: #1a252f;
    margin-bottom   :       20px;
  font-weight: 700;


}

.thankyou-message {

	    font-size: 16px; 
	  line-height: 1.8; 
	   margin-bottom     :       40px; 
	  color: #555555;

}

.thankyou-info {
  margin-bottom     : 40px;
}

.info-box {
  background : #f8f9fa;
	   padding: 30px;
	  border-radius: 8px;
	  text-align: left;
}

.info-box h3 {
   font-size: 18px;
  color: #2c3e50;
	margin-bottom: 16px;
}

.info-box ul {
   list-style: none;
     padding: 0;
}

.info-box li {
    font-size: 14px;
    color: #555555;
	padding: 10px 0;
   padding-left: 28px;
   position: relative;
}

.info-box li:before {
  color: #2ecc71; 
    font-weight: bold; 
  content: "✓"; 
  left: 0; 
	position     :     absolute; 
	
}

.thankyou-actions {
    display  :        grid;
    grid-template-columns: 1fr 1fr;
       gap: 16px;
   margin-bottom: 40px;
}

.thankyou-button

{
    display: inline-block;
    padding: 14px 24px;
  border-radius: 6px;
    -moz-border-radius  :       6px;
    text-decoration :      none;
   -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
   font-weight: 600;
  font-size: 14px;
    transition: all 0.3s ease;
   text-align: center;
}

.thankyou-button {
	  background: linear-gradient(135deg, #3498db, #2980b9);
	 color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);}

.thankyou-button:hover

{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.thankyou-button.secondary {
   background:       #ecf0f1;
    color: #2c3e50;
    box-shadow: none;
}

.thankyou-button.secondary:hover {

	   background: #bdc3c7;
}

.thankyou-tips {
    background : #ecf0f1;
   padding :  20px;
    border-radius: 8px;
   text-align: center;
}

.thankyou-tips h4 {
     font-size: 14px;
        color: #2c3e50;
   margin-bottom: 8px;
    font-weight: 600;
}

.thankyou-tips p		{
               font-size: 13px;
                    color: #555555;
  margin: 0;
  line-height: 1.6;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 40px 20px;
    }
    
    .thankyou-container h1 {
        font-size: 24px;
    }
    
    .thankyou-actions {
        grid-template-columns: 1fr;
    }
}.policy-section


{

    padding: 80px 20px;
   background: #f8f9fa;
   min-height  :        600px;
}

.policy-container   {
   max-width: 900px;
   margin: 0 auto;
    text-align: left;
    background: white;
          padding    :        60px 50px;
    border-radius :       12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.policy-container h1 {
   font-size: 42px;
       color: #1a252f;
   margin-bottom  :   40px;
       font-weight: 700;
    line-height: 1.2;
}

.policy-content h2 {
    font-size: 24px; 
   color  :       #2c3e50; 
	 margin-top :    32px; 
    margin-bottom: 16px; 
  font-weight: 700; 
    line-height: 1.3;
}

.policy-content p {
    color: #555555;
  margin-bottom: 20px;
  line-height: 1.8;
    font-size: 15px;
}

.policy-content p:last-of-type {
          margin-bottom   :  0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 20px;
    }
    
    .policy-container {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    .policy-container h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .policy-content h2 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .policy-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 15px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-container h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .policy-content h2 {
        font-size: 16px;
    }
    
    .policy-content p {
        font-size: 13px;
    }
}