* {
  margin    :     0;
   padding: 0;
	box-sizing: border-box;
}

:root {
    --primary: #1a3a52;
    --accent: #e8956e;
    --light: #f5f5f5;
    --dark: #1a1a1a;
    --border: #e0e0e0;
    --text-main: #2c2c2c;
    --text-secondary: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
   background-color: #ffffff;
	 font-size: 16px;
}

.navbar-container 
 {
  background: var(--primary);
  position: sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  padding: 1rem 2rem;
    display    :       flex;
   justify-content: space-between;
   align-items  :        center;
}

.nav-brand {
   display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px;
  width  :   auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
  list-style: none;
    gap: 2.5rem;
                    margin: 0;
      padding: 0;
}

.nav-link {
   color: #ffffff;
  text-decoration: none;
   font-weight    : 500;
   transition: color 0.3s ease, opacity 0.3s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--accent);
         opacity: 0.9;
}

.burger-menu {
			display: none;
   flex-direction: column;
    background: none;
  border     :     none;
   cursor: pointer;
   padding  :   0;
}

.burger-line {
   -moz-border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    width: 25px;
   height: 3px;
   background    :    #ffffff;
    margin: 5px 0;
    -o-transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
    border-radius: 2px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.section-wrapper   {
          max-width: 1200px;
	 margin: 0 auto;
   padding: 0 2rem;
}
/* Minified version */


.hero-section {
     background: linear-gradient(135deg, var(--primary) 0%, #2d4f6c 100%);
   color:  #ffffff;
  padding: 8rem 2rem;
    text-align: center;
}

.hero-content h1 {
   font-size    :       3.5rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
	line-height     :     1.2;
}

.hero-subtitle {
       font-size: 1.2rem;
    margin-bottom     :     2.5rem;
   max-width: 700px;
    margin-left     :    auto;
  margin-right: auto;
  opacity: 0.95;

}



.cta-button
	{
       transition: all 0.3s ease;
                    padding    :        1rem 2.5rem;
    cursor: pointer;
	display:  inline-block;
    text-decoration: none;
       font-size: 1rem;
  border: none;
   font-weight: 600;
   border-radius: 4px;

}

.cta-button.primary {
  background: var(--accent);
  color: #ffffff;
	
}

.cta-button.primary:hover
	{
	background: #d67d54;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 149, 110, 0.3);
}  

.cta-button.secondary {

  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);}

.cta-button.secondary:hover {
  background: var(--accent);
    color: #ffffff;

}

.why-balanced-section {
   padding: 5rem 2rem;
  background: var(--light);
}

.why-balanced-section h2{
    font-size: 2.5rem;
  margin-bottom: 3rem;
   text-align: center;
  color: var(--primary);
}

.features-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap :  2rem;
}

.feature-card {
  background: #ffffff;
       padding: 2rem;
	 border-radius    : 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-title {
    font-size: 1.3rem;
  font-weight :        600;
    margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p {


  color: var(--text-secondary);
  line-height: 1.7;
}

.services-preview-section		{
  padding: 5rem 2rem;
}

/* Typography */
.services-preview-section h2     {
   font-size: 2.5rem;
  text-align: center;
  color: var(--primary);
          margin-bottom: 1rem;
}

.section-description {
    text-align: center;
  color: var(--text-secondary);
    margin-bottom: 3rem;
  font-size: 1.1rem;
}

.services-showcase    {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	       gap: 2.5rem;
	  margin-top: 2rem;
}

.service-item {
  background: #ffffff;
    border-radius : 8px;
    overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

/* Third-party styles */

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 

}

.service-item img {
   width: 100%;
	 height   :      200px;
  object-fit: cover;
       display: block;
}

.service-item h3 {
    padding: 1.5rem 1.5rem 0.5rem; 
  color: var(--primary); 
  font-size: 1.3rem;
}

.service-item p {
   padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
    font-size: 0.95rem;
}

.conference-section {

	  padding: 5rem 2rem;
  background: #f9f9f9;}

/* Utility classes */

.conference-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 3rem;
    align-items: center;
}

.conf-text h2 {
         font-size: 2.2rem;
  color: var(--primary);
   margin-bottom: 1.5rem;
}

.conf-text p
{
	  color: var(--text-secondary);
  margin-bottom   :        1.5rem;
  line-height: 1.8;
	}

.link-button		{
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
    font-weight: 600;
	 transition: all 0.3s ease;
  border-bottom: 2px solid var(--accent);
   padding-bottom: 0.25rem;
}

.link-button:hover {
   color: #d67d54;
   border-bottom-color: #d67d54;
}

/* Auto-generated CSS */

.conference-section img {

	width: 100%; 
	  border-radius: 8px; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .conference-content {
        grid-template-columns: 1fr;
    }
}.seminar-section {
   padding: 5rem 2rem;
}

.seminar-section h2   {
    font-size: 2.5rem;
  text-align: center;
  color: var(--primary);
    margin-bottom: 1rem;
}

.seminar-section img {
   width: 100%;
               margin: 2rem 0;
  border-radius     :8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}



.seminar-description {


   text-align  :    center;
  color: var(--text-secondary);
   margin: 2rem 0;
   max-width: 700px;
    margin-left  : auto;
   margin-right: auto;
    line-height: 1.8;
   font-size: 1rem;
	}  

.seminar-section .cta-button {
   display    : block;
   max-width: 250px;
   margin: 2.5rem auto;
    text-align: center;
}

.testimonial-section {
  padding:   5rem 2rem;

  background: var(--light);
}

.testimonial-section h2 {
   font-size: 2.5rem;
    text-align: center;
  color: var(--primary);
   margin-bottom :        3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
	    background: #ffffff;
  padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
}

.testimonial-text {
  color: var(--text-secondary);
	  margin-bottom: 1.5rem;
	  font-style: italic;
	  line-height:        1.8;


}

.testimonial-author {
  color: var(--primary);
   font-weight: 600;
  font-size     :   0.95rem;
} 

.cta-section {

  background: linear-gradient(135deg, var(--primary) 0%, #2d4f6c 100%);
  color: #ffffff;
      padding: 4rem 2rem;
	text-align: center;
}

.cta-content h2		{


   font-size: 2.5rem;
  margin-bottom: 1rem;

}

.cta-content p {
   margin-left: auto;
  max-width     :600px;
	margin-right: auto;
  font-size: 1.1rem;
    margin-bottom    :      2rem;
      opacity: 0.95;
}

.contact-section {
  padding  :  5rem 2rem;
}

.contact-section h2 {
   	font-size: 2.5rem;
   text-align: center;
  color: var(--primary);
       margin-bottom: 3rem;
}

.contact-form {
	max-width: 600px;
   margin: 0 auto;
  background: var(--light);
      padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.5rem;
  color: var(--primary);
    font-weight: 600;
                    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
     width :   100%;
   padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
	font-family: inherit;
        font-size    :       0.95rem;
      transition :  all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

	  border-color: var(--accent);

	  box-shadow: 0 0 0 3px rgba(232, 149, 110, 0.1);

	   background-color: #fefdfb;
	
} 

.submit-button {
  width:     100%;
    padding: 1rem;
  background: var(--accent);
   color: #ffffff;
    border: none;
	 border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
	 cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #d67d54;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 149, 110, 0.3);
}

.footer-section {
  background: var(--primary);
	    color: #ffffff;
	   padding: 4rem 2rem 1rem;
}

.footer-content {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
     }

.footer-column h3    {
     font-size: 1.1rem;
	    margin-bottom: 1.5rem;
	    font-weight: 600;
}

.footer-logo {
          height   :     50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-links		{
    list-style :     none;
  padding: 0;
    margin: 0;
}

.footer-links li {
      margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8); 
  text-decoration: none; 
   transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-column p {
	 margin-bottom: 0.8rem;
  font-size: 0.95rem;
   opacity: 0.85;
  line-height: 1.6;
}

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
        text-align: center;
   opacity: 0.8;
   font-size: 0.9rem;}@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-preview-section h2,
    .why-balanced-section h2,
    .testimonial-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 4rem 1rem;
    }

    .why-balanced-section,
    .services-preview-section,
    .seminar-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d4f6c 100%);
    color: #ffffff;
   padding: 5rem 2rem;
		text-align: center;
}

.services-hero h1 {
	font-size: 3rem;
    margin-bottom: 1rem;
	 font-weight    :      700;
}

.hero-description {
    font-size: 1.2rem;
   opacity: 0.95;
   max-width: 700px;
   margin: 0 auto;
}

.services-main {

  padding: 5rem 2rem;

}

.service-detail-block {
	 margin-bottom: 5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom  :    4rem;
}

.service-detail-block:last-child  
  {
    border-bottom    :   none;

}  

.service-header h2 {
  font-size  :2.2rem;
  color: var(--primary);
          margin-bottom: 0.5rem;
}

.service-subtitle {
  color: var(--text-secondary);
    font-size: 1.1rem;
  font-weight:        500;
   margin-bottom: 2rem;
}

.service-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap :      3rem;
   align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
               direction: ltr;
}

.service-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
               line-height: 1.8;
    font-size: 0.95rem;
}

.service-features {
	list-style: none;
  margin :  2rem 0;
  padding: 0;
}

.service-features li {
   padding-left:  1.5rem;
    margin-bottom: 0.8rem;
	position: relative;
  color: var(--text-secondary);
}

.service-features li:before {

	  content: "▪";
    position:absolute;
  left: 0;
  color: var(--accent);
	font-weight: bold;

}  

.service-duration {
  background: var(--light);
    padding: 1rem;
  border-left: 3px solid var(--accent);
    border-radius: 4px;
  color: var(--text-main);
  font-weight: 500;
}

.service-image


{
		 width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display   :    block;


}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .service-detail-block {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}.pricing-section {
    padding: 5rem 2rem;
  background: var(--light);
}

.pricing-section h2 {
    font-size   :2.5rem;
	    text-align: center;
	  color: var(--primary);
	  margin-bottom: 1rem;
}

.pricing-grid {
      display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
    margin-top: 3rem;


}

.pricing-card {
    background: #ffffff;
  padding: 2rem;
	 border-radius: 8px;
	 text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  border-top: 4px solid var(--border);
}

.pricing-card.highlight {
  border-top-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
     color: var(--primary);
    font-size: 1.3rem;
   margin-bottom: 1rem;
}

.pricing-amount {
   font-size: 2.5rem;

  color: var(--accent);

  font-weight: 700;

   margin-bottom: 0.25rem;
}

.pricing-unit {

  color: var(--text-secondary);
  font-size: 0.9rem;
   margin-bottom: 1.5rem;
}

.pricing-features {
	list-style: none;
    padding: 0;
    margin: 0;
   text-align: left;
}

.pricing-features li {
   padding    :       0.6rem 0;
  color: var(--text-secondary);
   font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
 border-bottom: none;
}

.booking-section {
   padding: 5rem 2rem;
}

.booking-section h2 {
    font-size: 2.5rem;
                       text-align: center;
     color: var(--primary);
       margin-bottom: 3rem;
}

.booking-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
   gap: 2rem; 
	
}

.step-card {
  background: #ffffff;
  padding: 2rem;
    border-radius    : 8px;
   text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
	width: 50px;
         height  :      50px;
  background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
       display: flex;
   align-items: center;
    justify-content     :      center;
   font-weight  :  700;
    font-size: 1.5rem;
  margin: 0 auto 1rem;


}



.step-card h3     {
  color: var(--primary);
	font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-card p  
  {
  color: var(--text-secondary);
   font-size: 0.9rem;
  line-height: 1.6;
}

.thankyou-section {
    padding   :5rem 2rem;
		 min-height: 60vh;
    display: flex;
   align-items: center;
}

.thankyou-container {

	max-width: 700px;
  margin: 0 auto;
   text-align: center;


}

.success-icon {
   font-size: 4rem; 
	  color: var(--accent); 
	    margin-bottom: 1rem; 
		font-weight    :   bold; 
	  animation: scaleIn 0.5s ease;
	}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size: 2.5rem;
  color: var(--primary);
     margin-bottom    :   0.5rem;
}

.thankyou-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
       margin-bottom: 2rem;
}

.thankyou-message {
  background: var(--light);
  padding: 2rem;
    border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.thankyou-message p    {
  color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thankyou-message p:last-child {
   margin-bottom :        0;
}

.next-steps {
          background: #ffffff;
	    padding: 2rem;
	   border-radius: 8px;
	   margin-bottom: 2rem;
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	    text-align: left;
}

.next-steps h3 {
  color: var(--primary);
	margin-bottom: 1.5rem;
               text-align: center;
}

.steps-list  
  {
    list-style   :        none;
   padding     :       0;
		 margin: 0;
}

.steps-list li {

	    padding-left: 2rem;
       margin-bottom: 1rem;
       position: relative;
     color: var(--text-secondary);
       line-height: 1.6;
     }



.steps-list li:before {
  content: "✓";
    position   :    absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
    font-size: 1.2rem;
}

.steps-list li:last-child {
  margin-bottom   :   0;
}

.action-buttons {
   gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
}

.action-buttons .cta-button  
  {


   min-width: 200px;


}

.thankyou-faq {
    padding: 5rem 2rem;
  background: var(--light);
}

.faq-grid {

    display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
   margin-top: 2rem;


}



.faq-item    {
   background: #ffffff;
  padding: 1.5rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-item h4
	{
  color: var(--primary);
   font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.faq-item p {
	  color: var(--text-secondary);
   font-size: 0.9rem;
  line-height:1.6;
	}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-content {
        gap: 1.5rem;
    }

    .pricing-card.highlight {
        transform: scale(1);
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }
}.policySection {
        padding: 80px 2rem;
      background: #f8f9fa; 
	
}

.policyContainer {
  max-width: 800px;
	  margin: 0 auto;
	    text-align: left;
}

.policyContainer h2 {
  font-weight: 700;
        font-size :      2.5rem;
   color: #2c3e50;
   margin-bottom: 1.5rem; 

}

.policyContainer p {
       color: #7f8c8d;
     margin-bottom: 1.5rem;
	 line-height: 1.7;
                    font-size  :      1.1rem;

}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}