* {
  box-sizing: border-box;
	padding: 0;
  margin: 0;
}

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 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    padding    :        1rem 2rem;

  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;
}

.nav-logo img {
   min-height:     64px;

  width    :    auto;

  filter: brightness(0) invert(1);

    transition:        transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
     display: flex;
	 list-style: none;
	 gap: 2rem;

}

.nav-item {
   position:relative; 

}

.nav-link {
   color: #ffffff;
  text-decoration: none;
    font-weight: 500;
	 -moz-border-radius     : 4px;
       padding: 0.5rem 1rem;
   transition: all 0.3s ease;
    -webkit-border-radius: 4px;
  border-radius: 4px;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
    color: #64b5f6;
}

.hamburger {
    display: none;
   flex-direction: column;
   cursor: pointer;
    gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
               background-color: #ffffff;
          border-radius: 2px;
  transition: all 0.3s ease;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-item {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 0;
    }
}.hero {
    max-width: 1200px;
  margin: 0 auto;
			padding: 4rem 2rem;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap :     3rem;
	 align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}



.hero-content h1 {
     font-size: 2.5rem;
  margin-bottom: 1rem;
	 color: #1a1a2e;
	line-height    : 1.2;

}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
    color: #555;
}

.hero-image img {
  width: 100%;
    border-radius : 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
   padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
         text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
    border :        none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.cta-button.large {
    padding: 1.2rem 3rem;
          font-size: 1.1rem;
}

.cta-button.conference-btn

{
  margin-top: 1.5rem;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.section-strategy {
  max-width: 1200px;
	   margin     :   0 auto;
	   padding: 4rem 2rem;
}

.section-strategy h2 {
   text-align: center;
  font-size: 2.2rem;
       margin-bottom: 3rem;
  color: #1a1a2e;
}

.strategy-grid     {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}  

.strategy-card {
   background    : #ffffff;
      padding: 2rem;
   	border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition :all 0.3s ease;
     border-top: 4px solid #667eea;
}

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.strategy-card h3 {
   color: #1a1a2e;
    margin-bottom: 1rem;
   font-size: 1.3rem;
}

.strategy-card p {
  color: #666;
  margin-bottom: 1.5rem;
                    line-height: 1.7;
}



.strategy-card img {
  width: 100%;
  height: 200px;
    object-fit: cover;
  border-radius: 8px;
}

.section-coaching {
    max-width: 1200px;
        margin: 0 auto;
               padding: 4rem 2rem;
    background: #f8f9fa;
  border-radius: 12px;
}

.coaching-wrapper {
   display    :     grid;
          grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items :  center;
}

.coaching-text h2 {
    font-size: 2rem;
        margin-bottom: 1.5rem;
               color: #1a1a2e;
}

.coaching-text p {
    color: #555;
   margin-bottom   :   1.5rem;
  line-height: 1.8;
}

.coaching-list

{


  list-style: none;

} 

.coaching-list li {
    padding: 0.8rem 0;
  padding-left: 1.5rem;
    color: #555;
  position  : relative;
}

.coaching-list li:before {
  content: "▸";
    position: absolute;
  left: 0;
    color :#667eea;
    font-size  :     1.5rem;

}

.coaching-wrapper img{
               width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}@media (max-width: 768px) {
    .coaching-wrapper {
        grid-template-columns: 1fr;
    }
}.section-webinars
{
  max-width: 1200px;
  margin :     0 auto;
  padding: 4rem 2rem;


}

.section-webinars h2 {
         color: #1a1a2e;
   text-align: center;
       margin-bottom :   1rem;
	 font-size: 2.2rem;
	}

.section-subtitle {
        color: #666;
  font-size   :        1.1rem;
  margin-bottom: 3rem;
    text-align: center; 
	
}

.webinar-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
	
}

.webinar-item {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.webinar-item:hover  {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.webinar-item h3 {


   color: #1a1a2e;
  margin-bottom:  1rem;
   font-size: 1.2rem;

}

.webinar-item p{
   color: #555;
  margin-bottom: 1rem;
   line-height: 1.7;
}

.webinar-tag		{
   display: inline-block;
   background: #667eea;
    color    :      white;
  padding: 0.4rem 1rem;
        border-radius: 20px;
  font-size:0.85rem;
  font-weight: 600;
}

.section-conference {
   max-width: 1200px;
   margin: 0 auto;
 padding: 4rem 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
		gap: 3rem;
   align-items: center;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  border-radius: 12px;

}



.conference-content h2 {
  font-size: 2rem;
    margin-bottom: 1rem;
   color :     #1a1a2e;
}

.conference-content p  
  {
  color:     #555;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.conference-details {
  background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
  margin-bottom   :      2rem;
}

.detail-item {
  display  :     flex;
  justify-content: space-between;
   padding: 1rem 0;
               border-bottom: 1px solid #eee;
}

.detail-item:last-child  {
    border-bottom: none;
}

.detail-item strong {
   color: #1a1a2e; 
	
}

.detail-item span {

	   color: #666; 
	
	}

.section-conference img

{
   width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .section-conference {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}.section-services {
   max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;


}

.section-services h2     {
    text-align: center;
  font-size: 2.2rem;
		margin-bottom:    3rem;
   color: #1a1a2e;
}

.services-container {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap: 2rem;
}

.service-box     {
   background :   white;
        padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-box:hover {

	    border-color:    #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
	}

.service-box h3 {

	   color: #1a1a2e;
  margin-bottom: 1rem;
         font-size: 1.2rem;
     }

.service-box p 
 {
    color: #666;
  margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
                    display: inline-block;
   -webkit-transition: all 0.3s ease;
  color :#667eea;
  -moz-transition: all 0.3s ease;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.service-link:hover {
  border-bottom-color: #667eea;
  transform: translateX(4px);
}

.cta-section {
  max-width   :    1200px;
  margin:   0 auto;
    padding: 4rem 2rem;
               text-align:      center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius:     12px;
	color: white;
}

.cta-section h2
{


  font-size: 2.2rem;
  margin-bottom: 1rem;

}

.cta-section p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95;
	
}

.cta-section .cta-button {
     background:   white;
  color: #667eea;
    font-weight: 700;


}

.cta-section .cta-button:hover {
   background: #f5f5f5;
}

#contact {
  max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 2rem;
}

#contact h2 {
        text-align: center;

	  font-size: 2.2rem;

					 margin-bottom: 3rem;

	   color: #1a1a2e;
}

.contact-wrapper
	{
  display: grid; 
  grid-template-columns     :     2fr 1fr; 
   gap: 3rem;
}

.contact-form {
	   background: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	


}

.form-group
	{
   margin-bottom: 1.5rem;
}

.form-group label {
  margin-bottom :      0.5rem;
   font-weight: 600;
    display: block;
  color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
	padding :0.8rem;
   border: 1px solid #ddd;
    border-radius: 6px;
   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);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
   width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border: none;
  border-radius: 6px;
   font-weight: 600;
  font-size: 1rem;
   cursor: pointer;
                    transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-info {
    background: white;
    padding: 2rem;
 border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border-left: 5px solid #667eea;
  height: fit-content;
}

.contact-info h3 {
	   color: #1a1a2e;
          margin-bottom: 1.5rem;
	font-size: 1.3rem;


}

.contact-info p  
  {
   color: #666;
  margin-bottom: 1.5rem;
   line-height: 1.8; 
	
}

.contact-info strong {
    color: #1a1a2e;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-left: none;
        border-top: 5px solid #667eea;
    }
}.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color    :  #ffffff;
	padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 2fr;
  gap  :3rem;
  margin-bottom: 2rem;
}  

.footer-logo-img {
  min-height: 86px;
               width:        auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-content 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap  :       2rem;
}

.footer-section h4 {
	   color: #ffffff;
	margin-bottom: 1rem;
  font-size: 1.1rem;


}


.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;
}

.footer-section a {
   color: #a8a8a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #64b5f6;}

.footer-section p  
  {

	   color: #a8a8a8;
    line-height: 1.8;


}

.footer-bottom {
   max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align     :   center;
  color: #888;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-strategy h2,
    .section-webinars h2,
    .section-services h2,
    #contact h2,
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}.services-hero
	{
   max-width: 1200px;
	margin: 0 auto;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
      text-align: center;
  border-radius: 12px;
   margin-top: 2rem;
}

.services-hero h1
	{

	  font-size: 2.8rem;
   margin-bottom: 1rem;
  line-height: 1.2;}

.services-hero p {


    font-size: 1.2rem;
   opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}.services-overview {
    max-width: 1200px;
    margin: 4rem auto 0;
  padding :        3rem 2rem;
   background     :  #f8f9fa;
    border-radius: 12px;
}

.overview-container h2 {
	text-align: center;
	 font-size :       2.2rem;
  margin-bottom: 1.5rem;
   color     :  #1a1a2e;
}

.overview-intro {
    text-align: center;
  color: #666;
		font-size :   1.1rem;
    line-height: 1.8;
  max-width: 800px;
	 margin: 0 auto;
}

.services-main {
	 max-width: 1200px;
   margin: 4rem auto;
	padding   :        0 2rem; 

}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
       gap   :     3rem;
       margin-bottom: 4rem;
   align-items: center;
	padding: 2rem;
      background: white;
	border-radius    :        12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;


}

.service-detailed:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-detailed.reverse {
	direction: rtl;


}

.service-detailed.reverse .service-text {
    direction   :      ltr;


}

.service-image  {

	   border-radius     :        10px;
	overflow: hidden;

}

.service-image img {
	width: 100%;
	  height: auto;
	        object-fit: cover;
	  transition: transform 0.3s ease;


}

.service-detailed:hover .service-image img
{
  transform: scale(1.05);
} 

.service-text h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-text p {
	    color: #666;
  line-height: 1.8;
   margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-text h3


{
   font-size  :1.2rem;
    color:       #1a1a2e;
    margin-bottom: 1rem;
  margin-top     : 1.5rem;


}

.service-list {
    list-style   :   none;
   margin-bottom: 1.5rem;
}

.service-list li {

    padding: 0.7rem 0;
    padding-left: 1.5rem;
	color: #555;
    position: relative;


}

.service-list li:before {
  content: "✓";
    position: absolute;
   left: 0;
    color: #667eea;
  font-weight: bold;
}

.service-meta {
  display  : flex;
    gap:       2rem;
  margin-top: 1.5rem;
    padding-top    :  1.5rem;
	border-top    :       2px solid #f0f0f0;
}

.meta-item   {
   color: #666;
	 font-size: 0.95rem;
  font-weight:        500;
}@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        direction: ltr !important;
    }

    .service-detailed.reverse {
        direction: ltr !important;
    }

    .service-text h2 {
        font-size: 1.6rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 1rem;
    }
}.pricing-comparison {
   max-width: 1200px;
   margin: 4rem auto;
   padding    :        3rem 2rem;
	}

.pricing-comparison h2


{
	 text-align: center;
	  font-size: 2.2rem;
	   margin-bottom: 2rem;
	         color: #1a1a2e;
}

.pricing-table {
	  overflow-x: auto;
   background: white;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

} 

table {
  width: 100%;
  border-collapse: collapse;
}

table thead  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

table th {
  padding :   1.5rem;
	  text-align  :  left;
	  font-weight: 600;
	   font-size: 1rem;
}

table td {
   padding: 1.2rem 1.5rem;
    border-bottom     :        1px solid #eee;
   color: #555;
}

table tbody tr:hover  {
  background: #f8f9fa;
}

table .alt-row {
  background: #f8f9fa;
}

table .alt-row:hover {
   background: #f0f0f0;
}@media (max-width: 768px) {
    table th,
    table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}.testimonials-section {
    max-width: 1200px;
    margin: 4rem auto;
  padding: 3rem 2rem;
}

.testimonials-section h2 {
          text-align : center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
	color   :#1a1a2e;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


.testimonial-card {
   background: white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); 
	
}

.testimonial-text {
  color: #666;
  line-height: 1.8;
	font-size: 1rem;
       margin-bottom: 1rem;
          font-style: italic;
}

.testimonial-author {
  color: #1a1a2e;
   font-weight: 600;
   font-size  :       0.95rem; 
	
	}

.faq-section {
	max-width: 1200px;
  margin: 4rem auto;
    padding: 3rem 2rem;
}

.faq-section h2 {
   text-align    :      center;
	 font-size: 2.2rem;
   margin-bottom: 2rem;
    color: #1a1a2e;}


.faq-container {
    display: flex;
    flex-direction: column;
  gap: 1rem;
}

.faq-item {
   background: white;

	  padding: 1.5rem;

	    border-radius: 8px;

	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

	   border-left: 4px solid #667eea;

	                    transition   :        all 0.3s ease;
}

.faq-item:hover {

	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);}

.faq-question {
   font-size: 1.1rem;
  color:      #1a1a2e;
   margin  :        0;
  margin-bottom: 0.8rem;
    font-weight   : 600;
  cursor: pointer;
}

.faq-answer {
  color: #666;
       line-height: 1.7;
	margin: 0;
}

.thankyou-section {
    max-width: 900px;
    margin: 4rem auto;
	padding: 3rem 2rem;
}

.thankyou-container {
   background: white;
  padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon {
  font-size: 4rem;
   color :   #2ecc71;
  margin-bottom: 1rem;
   animation: checkmark-pop 0.6s ease;
	
}@keyframes checkmark-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1{
  margin-bottom: 1rem;
  font-size: 2.5rem;
   color: #1a1a2e;
}
	/* Third-party styles */



.success-message    {
  font-size : 1.1rem;
   color: #666;
  line-height: 1.8;
        margin-bottom: 2rem;
}

.next-steps {

	   background: #f8f9fa;
    padding  : 2rem;
      border-radius: 10px;
    margin: 2rem 0;} 

.next-steps h2 {
   color :     #1a1a2e; 
	   margin-bottom: 1.5rem; 
	  font-size: 1.5rem;
}
/* TODO: optimize for mobile */
/* Auto-generated CSS */
/* TODO: optimize for mobile */

.steps-list {
	display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
}

.step-item  {
    align-items: center; 
  display: flex; 
  flex-direction: column; 
   text-align: center;
}

.step-number 
 {


  display     :       inline-flex;
   align-items: center;
    justify-content: center;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
	font-size: 1.5rem;
    font-weight: bold;
  margin-bottom: 1rem;
}

.step-item p {
  font-size: 0.95rem;
  color: #666; 

     }

.contact-info-box {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 2rem;
    border-radius :   10px;
  border-left: 5px solid #667eea;
   margin: 2rem 0;
  text-align: center;

}

.contact-info-box h3 {
    color :        #1a1a2e;
  margin-bottom: 1rem;
         font-size:  1.2rem;
	
}

.contact-info-box p {
 color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.action-buttons {
               display: flex;
   gap: 1rem;
    justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block; 
	      padding  :      1rem 2rem; 
	   border-radius: 6px; 
	     -moz-border-radius: 6px; 
	    -webkit-border-radius: 6px; 
	  text-decoration: none; 
	   font-weight: 600; 
	  transition: all 0.3s ease; 
	        font-size     :   1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
} 

.btn-primary:hover


{
     transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	}  

.btn-secondary {
    background: white; 
   color    :       #667eea; 
  border: 2px solid #667eea;
}
/* Third-party styles */



/* Build system output */

.btn-secondary:hover {
    background: #667eea;
   color: white;
}

.additional-info {
  background: #f8f9fa;
    padding: 1.5rem;
  border-radius: 8px;
    -moz-border-radius: 8px;
    margin-top   :    2rem; 
	
}

.additional-info h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.additional-info p  {
   line-height: 1.7;

        color: #666;
}

.quick-facts {
	max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
}

.quick-facts h2 {
    text-align: center;
    font-size :       2.2rem;
  margin-bottom: 2rem;
	color: #1a1a2e;
}

.facts-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fact-card {
    background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}
/* Build system output */

	/* Legacy code */

/* Minified version */

.fact-card:hover {
     transform: translateY(-8px);

	  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
     }

.fact-card h4 {
     font-size: 1.3rem;
   color: #1a1a2e;
  margin-bottom: 1rem;
}

.fact-card p {
     color: #666;
   line-height: 1.7;
	}
@media (max-width: 768px) {
    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .next-steps h2 {
        font-size: 1.3rem;
    }
}.policySection {

		padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
	}

.policyContainer

{

  max-width: 900px;
    margin  :   0 auto;
	text-align: left;
 background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);}

.policyContainer h1 {
   font-size   :     2.8rem;
    color: #1a1a2e;
  margin-bottom: 2rem;
    font-weight: 700;
   border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.policyContainer h2 {
    font-size: 1.6rem;
    color: #2c3e50;
	 margin-top :    2rem;
   margin-bottom: 1rem;
    font-weight    :    600;
}

.policyContainer p {
  color: #555;
  margin-bottom: 1.2rem;
    line-height: 1.8;
       font-size: 1rem;
}

.policyContainer strong {
	color: #1a1a2e;
   font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: calc(100vh - 300px);
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1rem;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}