*    {
  margin: 0;
	padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

html {
   scroll-behavior     :        smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
   background: #ffffff;
   line-height: 1.6;




}

.section-wrapper {
       max-width   :     1200px;
  margin: 0 auto;
 padding: 0 20px;}

.navbar {


    background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
   top: 0;
	 z-index: 1000;
}

.nav-container {

	  max-width     :       1200px;
   margin: 0 auto;
    padding: 0 20px;
  display: flex;
    justify-content: space-between;
   align-items: center;
    height    :        70px;


}

.nav-logo
	{
    flex-shrink: 0; 

}

.logo-img {
   height: 45px;
   width: auto;
   object-fit: contain;
}

.nav-menu
{
   display: flex;
  list-style: none;
  gap: 40px;
    align-items  :   center;
}

.nav-item {
	position: relative;
}

.nav-link {
     text-decoration: none;
  color: var(--text-dark);
   font-weight: 500;
   font-size    : 16px;
  transition: var(--transition);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;

}

.nav-link:hover {
  color: var(--primary-color); 
  border-bottom-color: var(--primary-color);
}

.burger-menu {
    display: none;
	 flex-direction: column;
  cursor: pointer;
               background: none;
  border: none;
    gap: 6px;


}

.burger-line {


    width   :      25px;
    height   :  3px;
  background: var(--text-dark);
     border-radius: 2px;
  transition: var(--transition); 
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 0;
        border-bottom: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 80px 20px;
  display     :        flex;
    align-items: center;
   gap: 60px;
}

.hero-content

{
  flex: 1;
   max-width: 600px;
	
}

.hero-title {
  font-size: 52px;
    font-weight: 700;
  margin-bottom: 20px;
  line-height  :1.2;
}

.hero-subtitle {
  font-size: 18px;

	  margin-bottom: 30px;

	   opacity: 0.95;

	  line-height: 1.7;

}

.hero-image {
    flex:       1;
          min-height: 400px;
}

.hero-image img {


   width: 100%;
	   height: 100%;
	  object-fit: cover;
	  border-radius: 12px;
}

.cta-button {
	display: inline-block;
  background: #fff;
  color: var(--primary-color);
    padding: 14px 32px;
  border-radius    :        8px;
                    text-decoration: none;
	font-weight: 600;
 font-size: 16px;
  transition: var(--transition);
    border: 2px solid #fff;
    cursor: pointer;
  border: none;


} 

.cta-button:hover {
  background: var(--secondary-color);

	    color: white;

	  transform: translateY(-2px);

	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



.cta-large {
  padding: 18px 40px;
  font-size     :        18px;
}@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        min-height: 250px;
    }
}.intro-section {
   padding: 80px 20px;
  background: var(--light-bg);
}

.intro-section h2 {
    font-size: 42px;
   margin-bottom: 50px;
   text-align: center;
  color: var(--text-dark);
}

.intro-grid {
          display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :    30px;
}

.intro-card {


     background: white;
   padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);

}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.intro-card h3     {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.intro-card p {

  color: var(--text-light);
   font-size: 16px;
   line-height: 1.7;
}@media (max-width: 768px) {
    .intro-section {
        padding: 50px 20px;
    }

    .intro-section h2 {
        font-size: 32px;
    }

    .intro-card {
        padding: 30px;
    }
}.featured-services	{
  padding: 80px 20px;
}

.featured-services h2 {
   font-size: 42px;
		margin-bottom: 50px;
	 text-align: center;
}

.services-showcase {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-item {
    background  :     white; 
	  border-radius: 12px; 
	   overflow: hidden; 
	  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); 
	  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-item img
	{
  width: 100%;
  height: 250px;
    object-fit :       cover;
  display: block;
}  

.service-content {
       padding: 30px;
     } 

.service-content h3 {
  font-size   :        22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-content p {

	  color: var(--text-light);
    line-height: 1.7;
  font-size: 15px;

}@media (max-width: 768px) {
    .featured-services {
        padding: 50px 20px;
    }

    .featured-services h2 {
        font-size: 32px;
    }

    .services-showcase {
        gap: 25px;
    }
}.webinar-conference {
	padding: 80px 20px;
  background: var(--light-bg);
}

.webinar-conference h2	{
	font-size: 42px;
         margin-bottom: 50px;
  text-align: center;


}

.event-grid {
  display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 30px;
}

.event-card {
	background: white;
   padding: 35px;
          border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-badge {

	    display: inline-block;
  background: var(--primary-color);
   color    :        white;
   padding: 6px 14px;
    border-radius  :        20px;
   font-size: 12px;
	 font-weight: 600;
   margin-bottom    :   15px;


}

.event-card h3 {
       font-size: 22px;
    margin-bottom: 15px;
  color: var(--text-dark);
}

.event-card p {
  color: var(--text-light);
        margin-bottom: 20px;
  line-height: 1.7;
  font-size    : 15px;
}

.event-details {
  list-style: none;
	padding  :       0; 

}

.event-details li    {
  color: var(--text-light);
   padding   :   8px 0;
   font-size: 14px;
  border-top: 1px solid var(--border-color);
	}

.event-details li:first-child {
      border-top: none;
     }@media (max-width: 768px) {
    .webinar-conference {
        padding: 50px 20px;
    }

    .webinar-conference h2 {
        font-size: 32px;
    }

    .event-card {
        padding: 25px;
    }
}.burnout-prevention {
	 padding: 80px 20px;
}

.burnout-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
    display:      grid;
}


.burnout-prevention h2 {
   font-size: 42px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.burnout-text p {
  color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.burnout-image {


  min-height :   400px;


}


.burnout-image img {


  border-radius: 12px;
  height: 100%;
    object-fit: cover;
  width: 100%;


}@media (max-width: 768px) {
    .burnout-prevention {
        padding: 50px 20px;
    }

    .burnout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .burnout-prevention h2 {
        font-size: 32px;
    }

    .burnout-image {
        min-height: 250px;
    }
}.cta-section {
		 padding :     80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :  white;
}

.cta-box {
        text-align: center;
	max-width: 700px;
   margin: 0 auto;
}

.cta-box h2 {
      font-size: 42px;
   margin-bottom: 20px;
   font-weight: 700;
     }

.cta-box p {
    font-size:    18px;
  margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 16px;
    }
}.contact-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.contact-section h2 {
  text-align: center;
   margin-bottom: 50px;
    font-size: 42px;
}


.contact-container {
  display: grid;
  margin: 0 auto;
   grid-template-columns: 1fr 1fr;
         gap  :      60px;
  max-width :1000px; 

}

.contact-info h3 {
   font-size    :        24px; 
   margin-bottom:        30px; 
  color: var(--text-dark);
}

.info-block {
    margin-bottom: 25px;
}

.info-label  
  {
    font-weight :     600;
  color: var(--text-dark);
   margin-bottom: 8px;
  display: block;
}

.info-value {
  color: var(--text-light);
    line-height: 1.7;
    font-size :    15px; 

}

.contact-form {
    background: white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
			display: block;
   font-weight: 600;
   margin-bottom: 8px;
  color: var(--text-dark);
   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea	{
   width: 100%;
    padding    :     12px 15px;
  border: 1px solid var(--border-color);
  border-radius     :     6px;
   font-size: 14px;
	font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
   width: 100%;
    padding: 14px;
  background: var(--primary-color);
        color: white;
   border: none;
    border-radius: 6px;
         font-weight: 600;
  cursor: pointer;
    font-size: 16px;
  transition: var(--transition);
}

.submit-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 25px;
    }
}.footer {
  background: var(--dark-bg);
     color    :     white;
  padding: 60px 20px 30px;
}

.footer-wrapper   {
    max-width   :   1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
	font-size: 18px;
       margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo img {
  display: block;
   width: auto;
    height: 50px;
}

.footer-links {
  list-style   :  none;
}

.footer-links li
	{
   margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
   text-decoration: none;
  transition: var(--transition);
	font-size: 14px; 

}

.footer-links a:hover {
   color: white;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
    font-size:   14px;
  line-height: 1.8;
  margin-bottom :      12px;
}

.footer-bottom    {
    max-width: 1200px;
    margin: 0 auto;
   padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   text-align   : center;
  color: rgba(255, 255, 255, 0.6);
   font-size: 14px;
}@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-wrapper {
        gap: 25px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px;
   text-align: center;
}


.services-hero-content h1 {
		font-size: 56px;
   font-weight: 700;
   margin-bottom: 15px;
   line-height  :       1.2;
}

.services-hero-content p {
  font-size   :    20px;
    opacity: 0.95;
   max-width: 600px;
  margin: 0 auto;
}



.services-main	{
  padding: 80px 20px;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
	 max-width: 1400px;
               margin :        0 auto;
}

.service-card-detailed {
	background   :    white;
    border-radius: 12px;
    overflow   :       hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
  display: flex;
  flex-direction  :column;
}

.service-card-detailed:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
  height: 280px;
   overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
   object-fit: cover;
    transition: transform 0.3s ease;


}

.service-card-detailed:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body  
  {
    padding: 30px;
     display: flex;
       flex-direction    :    column;
                       flex-grow: 1;
}



.service-card-body h3 {
	font-size :24px;
   margin-bottom: 12px;
  color: var(--text-dark);
   font-weight:      600;
}  

.service-description{
  color: var(--text-light);
  font-size: 15px;
   line-height     :        1.7;
	 margin-bottom: 20px;
}

.service-features {
  list-style: none;
   margin-bottom: 20px;
  flex-grow: 1;
}

.service-features li		{

          padding: 8px 0;
  padding-left: 24px;
  color: var(--text-light);
   font-size: 14px;
  position    :relative;
  line-height: 1.6;
}

.service-features li:before {
  content: "•";
   position: absolute;
  left: 0;
  color: var(--primary-color);
    font-weight: bold;
   font-size: 18px;
}

.service-price {


  font-size: 18px;
    font-weight: 600;
  color: var(--primary-color);
 margin-bottom :   15px; 
}

.service-btn {
   display   :    inline-block;

  background: var(--primary-color);

    color: white;

   padding: 12px 24px;

  border-radius: 6px;

  text-decoration     :    none;

               font-weight: 600;

   text-align: center;

    transition: all 0.3s ease;

  border: 2px solid var(--primary-color);
}

.service-btn:hover
	{
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);

}

.service-comparison {

  padding: 80px 20px;
  background: var(--light-bg); 

     }

.service-comparison h2 {
  font-size: 42px;
    margin-bottom     :  50px;
  text-align: center;
}

.comparison-table {


   max-width: 1100px; 
	   margin: 0 auto; 
	  overflow-x: auto;


}

table {
   width: 100%;
    border-collapse: collapse;
   background: white;
    border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
}

table th
{
  padding: 18px;
	 text-align: left;
    font-weight: 600;
   font-size: 14px;
  white-space: nowrap;
}

table td {
   padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-dark);
}

table tbody tr:hover
	{
  background: var(--light-bg);
}

table tbody tr:last-child td {
  border-bottom: none;
}

.faq-services {
	padding: 80px 20px;

}

.faq-services h2 {
  font-size: 42px;
    margin-bottom: 50px;
    text-align     :   center;
}

.faq-container {
	max-width: 800px;
  margin: 0 auto;

}

.faq-item {
      margin-bottom: 20px;
  background: white;
       border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
   width: 100%;
  padding: 20px;
  background: white;
   border: none;
  cursor: pointer;
  display: flex;
   justify-content: space-between;
   align-items     :    center;
    text-align: left;
   font-size: 16px;
      font-weight  :      600;
  color: var(--text-dark);
   transition: all 0.3s ease;
  border-left :        4px solid transparent;
}

.faq-question:hover {


  background: var(--light-bg);
  border-left-color: var(--primary-color);

}

.faq-toggle {


  font-size: 24px;
  color: var(--primary-color);
   font-weight: bold;
   transition:     transform 0.3s ease; 
	


}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
    overflow: hidden;
 transition: max-height 0.3s ease;
  background: var(--light-bg);
}

.faq-answer.active {
   max-height   :       400px;
  padding: 0 20px 20px;
}

.faq-answer p


{
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
}

.why-choose-balancio {
  padding: 80px 20px;
   background: white;
}

.why-choose-balancio h2 {
  font-size: 42px;
  margin-bottom: 50px;
   text-align: center;
}

.reasons-grid {


   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 30px;
	   max-width: 1200px;
	   margin: 0 auto;


}

.reason-card {

  background: var(--light-bg);
   padding: 35px;
 border-radius: 12px;
  border-left: 4px solid var(--primary-color);
    transition     :        all 0.3s ease;}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reason-card h3 {
	 font-size    :    20px;
   margin-bottom: 15px;
  color: var(--text-dark);
    font-weight: 600;
}

.reason-card p {

	  color: var(--text-light);
  line-height: 1.7;
   font-size: 15px;}

.cta-services {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   text-align: center;
} 

.cta-services h2


{

   font-size: 42px;
 margin-bottom: 20px;
    font-weight: 700;
     }

.cta-services p {
    font-size:       18px;
  margin-bottom    :35px;
	opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
   margin-right :        auto;
}

.thankyou-container {
  min-height: calc(100vh - 200px); 
    display: flex; 
    align-items: center; 
   justify-content: center; 
	 padding: 40px 20px; 
  background: var(--light-bg); 

}

.thankyou-box {
               background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	 max-width  :        700px;
  text-align: center;
}

.thankyou-icon {
  color: var(--primary-color);
  margin-bottom:30px;
  display    :    flex;
    justify-content: center;
}

.thankyou-box h1 {

      font-size: 42px;
  color: var(--text-dark);
   margin-bottom: 10px;
  font-weight: 700; 


}

.thankyou-subtitle {
   font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;

}

.thankyou-content {
	text-align: left;
  background: var(--light-bg);
   padding     :        30px;
   border-radius: 8px;
   margin-bottom: 30px;
}

.thankyou-content p {
  color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
  margin-bottom: 15px;


}

.next-steps,
.helpful-info {
    margin-top: 20px;
	 padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.next-steps h3,
.helpful-info h3  
  {
    font-size :        18px;
  color: var(--text-dark);
  margin-bottom:       15px;
   font-weight    :      600;
}

.steps-list,
.info-list 
 {
   list-style   :       none;
	padding  :    0;
}  

.steps-list li,
.info-list li     {
  padding: 8px 0 8px 24px;
	 position: relative;
  color: var(--text-light);
    font-size: 14px;
    line-height :       1.6;
}

.steps-list li:before,
.info-list li:before {
  content: "✓";
    position :   absolute;
  left  :  0;
  color: var(--primary-color);
  font-weight :        bold;
}

.info-list a {


  color: var(--primary-color);
   text-decoration: none;
	 font-weight: 600;} 

.info-list a:hover {
   text-decoration: underline;
	
}

.thankyou-contact {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 25px;
   border-radius: 8px;
   margin-bottom :        30px;
}

.thankyou-contact h3 {
          font-size: 18px;
  color: var(--text-dark);
    margin-bottom: 10px;
  font-weight: 600;
}

.thankyou-contact p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom :     8px;
}

.contact-phone {
	font-size: 18px !important;
  color: var(--primary-color);
  font-weight: 600;
    margin-top: 10px !important;
} 

.contact-hours {
  font-size: 13px !important;
  color: var(--text-light);
}

.thankyou-button {
    display    :     inline-block;
  background: var(--primary-color);
    color: white;
   padding: 14px 40px;
    border-radius: 6px;
                    text-decoration: none;
  font-weight: 600;
    font-size: 16px;
	transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.thankyou-button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);

}@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    table {
        font-size: 13px;
    }

    table th,
    table td {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .services-main {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-comparison {
        padding: 50px 20px;
    }

    .service-comparison h2 {
        font-size: 32px;
    }

    .faq-services {
        padding: 50px 20px;
    }

    .faq-services h2 {
        font-size: 32px;
    }

    .why-choose-balancio {
        padding: 50px 20px;
    }

    .why-choose-balancio h2 {
        font-size: 32px;
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-services {
        padding: 50px 20px;
    }

    .cta-services h2 {
        font-size: 32px;
    }

    .thankyou-box {
        padding: 40px 25px;
    }

    .thankyou-box h1 {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 15px;
    }

    .services-hero-content h1 {
        font-size: 28px;
    }

    .service-card-body {
        padding: 20px;
    }

    .thankyou-box {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-answer.active {
        padding: 0 15px 15px;
    }
}.policySection {
      padding: 80px 20px;

	  background: var(--light-bg);

	  min-height: calc(100vh - 300px);
}

.policyContainer {
    max-width : 900px;
         margin: 0 auto;
	 text-align: left;
}

.policyContainer h2 {
  font-size: 48px;
  color: var(--text-dark);
   margin-bottom: 40px;
    font-weight: 700;
  text-align: center;
}

.policyContainer h3 {
  font-size: 22px;
  color: var(--text-dark);
    margin-top: 35px;
   margin-bottom: 15px;
	font-weight: 600;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.policyContainer p    {
  color: var(--text-light);
      margin-bottom: 16px;
 line-height: 1.8;
    font-size: 16px;
}

.policyContainer p strong  
  {
  color: var(--text-dark);
    font-weight: 600;
}

.policyContainer p:first-of-type {
  font-size    :       17px;
  color: var(--text-dark);
	 line-height: 1.8;
    margin-bottom: 30px;
}

.policyContainer > p:first-of-type {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
	
}  
@media (max-width: 1024px) {
    .policyContainer {
        max-width: 800px;
    }

    .policyContainer h2 {
        font-size: 40px;
    }

    .policyContainer h3 {
        font-size: 20px;
    }

    .policyContainer p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 20px;
        min-height: calc(100vh - 250px);
    }

    .policyContainer {
        max-width: 100%;
        padding: 0 15px;
    }

    .policyContainer h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .policyContainer h3 {
        font-size: 19px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 15px;
    }

    .policyContainer {
        padding: 0;
    }

    .policyContainer h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .policyContainer h3 {
        font-size: 17px;
        margin-top: 20px;
        padding-left: 12px;
    }

    .policyContainer p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }
}

@media print {
    .policySection {
        background: white;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer h3 {
        page-break-after: avoid;
    }
}