* {
	margin: 0;
    padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5a7b;
    --accent-color: #4a90e2;
    --light-bg: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color :#ffffff;
  line-height: 1.6;
                    overflow-x: hidden;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 1rem 0;
    position: sticky;
	 top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container


{
	max-width :       1200px;
    margin :        0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;
    padding: 0 2rem; 
	
}

.nav-logo-section {
    flex: 1;
}

.nav-logo {
    height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
   cursor: pointer;
  background: none;
  display: none;
   border:    none;
    padding: 0.5rem;
  flex-direction :     column;
}  

.burger-menu span
{
   width: 25px;
    height: 3px;
  background-color: white;
   margin: 5px 0;
  transition: var(--transition);
    border-radius: 2px;
}

.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(7px, -7px);
}

.nav-links	{
  display: flex;
   list-style: none;
  gap: 2rem;
   flex: 1;
   justify-content: flex-end; 

}

.nav-links a {
   color: white; 
    text-decoration: none; 
   font-weight: 500; 
  transition: var(--transition); 
   position:  relative;


}

.nav-links a::after {

	  content: ''; 
		 position    :absolute; 
	   bottom    :        -5px; 
	  left  :   0; 
	    width   :  0; 
	   height: 2px; 
	    background-color: #4a90e2; 
	  transition: var(--transition);


}

.nav-links a:hover::after {
                    width: 100%;

}

.hero-section {
    display: grid;

		grid-template-columns   :        1fr 1fr;

	  align-items     :     center;

	    gap: 3rem;

	   padding: 4rem 2rem;

	  max-width: 1200px;

		margin: 0 auto;

	   min-height: 600px;
}


.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content p
{
    font-size: 1.3rem;
  color: var(--text-light);
   margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image     {
    width: 100%;
   height: auto;
      border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
	 padding     :      1rem 2.5rem;
			border-radius: 8px;
  text-decoration: none;
	font-weight: 600;
    cursor: pointer;
         border     :        none;
  transition: var(--transition);
  font-size  :   1rem;
}

.cta-button.primary {


  background: linear-gradient(135deg, var(--accent-color) 0%, #357abd 100%);
    color: white;
	}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.cta-button.secondary {
  background-color: var(--light-bg);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.cta-button.secondary:hover {
  background-color: var(--accent-color);
    color: white;
  transform: translateY(-2px); 

	}

.intro-section {
  background: linear-gradient(180deg, #f9fbfd 0%, #f5f7fa 100%);
	 padding: 4rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
	border-radius: 15px;
  border-left: 5px solid var(--accent-color);
}

.intro-wrapper h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-wrapper p		{
  font-size     :       1.1rem; 
  color: var(--text-light); 
    margin-bottom: 1.5rem; 
   line-height: 1.8;
}

.benefits-section   {
      padding     :4rem 2rem;
    max-width: 1200px;
	 margin: 0 auto;
}

.benefits-section h2 {
     font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;

}

.benefits-grid 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
     background   :  white;
	 padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--accent-color); 

}

.benefit-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);


}

.benefit-card h3 {
   font-size :        1.5rem;
  color: var(--primary-color);
	 margin-bottom :        1rem;
}

.benefit-card p   {
  color: var(--text-light);
  line-height: 1.7;
}

.showcase-section {
  padding: 4rem 2rem; 
	        margin: 0 auto; 
	    max-width: 1200px;
}

.showcase-item {
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
     align-items: center;
   margin-bottom: 4rem;
}

.showcase-item.reverse {
  direction: rtl;

}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-image {
               width :  100%;
    height    :    auto;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.showcase-text h3 {
          font-size: 2rem;
  color: var(--primary-color);
    margin-bottom: 1rem;}

.showcase-text p {
  color: var(--text-light);
               font-size   :      1.1rem;
          line-height: 1.8;
}

.mindful-section {

  background: var(--light-bg);
  padding: 4rem 2rem;
    margin: 3rem 0;
}

.mindful-section h2 {
	font-size: 2.5rem;
  color: var(--primary-color);
	 text-align: center;
   margin-bottom:       2rem;
    max-width: 1200px;
               margin-left: auto;
	margin-right: auto;
}

.mindful-image {
   width: 100%;
    max-width: 1200px;
   height: auto;
  margin: 0 auto 2rem;
    display: block;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mindful-content {
    max-width: 900px;
  margin: 0 auto;
}

.mindful-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
   text-align    :   center;
}

.services-preview {


  padding: 4rem 2rem; 
    max-width: 1200px; 
   margin: 0 auto;}

.services-preview h2 {
    font-size:   2.5rem;
  color: var(--primary-color);
   margin-bottom: 2.5rem;
  text-align: center;
}



.services-list {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	    gap: 2rem;
	  margin-bottom    :  2rem;
}

.service-item {
  background: white;
    padding: 2rem;
  border-radius   :        10px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
}

.service-item h4 {
	 font-size: 1.3rem;
  color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.services-preview > .cta-button {


    display: block;
    margin     : 2rem auto;
    text-align  :       center;
                    width: fit-content;

}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 2rem;
         text-align: center;
  margin  : 3rem 0;
}

.cta-section h2 {
   	font-size  :   2.5rem;
    color: white;
  margin-bottom: 1rem;
	}

.cta-section p {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
   max-width    :     600px;
    margin-left: auto;
   margin-right: auto;
}

.contact-section {
	padding: 4rem 2rem;
    max-width    :     700px;
	margin: 3rem auto;
}

.contact-section h2 {
    font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
	text-align     :       center;
}

.contact-form {
  background: var(--light-bg);
    padding    :   2.5rem;
   border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
	
}

.form-group label {
   display: block;
	 margin-bottom: 0.5rem;
  color: var(--primary-color);
   font-weight :     600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
    font-size     :    1rem;
    font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
	resize   :    vertical;
  min-height: 120px;
}

.form-group button {
    width: 100%;
}

.footer   {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 2rem 1rem;
  margin-top: 4rem;
	
}

.footer-container {
  max-width : 1200px;
    margin: 0 auto;
	display     : grid;
    grid-template-columns: 1fr 3fr;
   gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo-section {

  display: flex;
  align-items     : flex-start;
}



.footer-logo
{
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
   display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
	   font-size  :      1.1rem;
        margin-bottom: 1rem;
    font-weight: 600;
	}

.footer-column ul {
    list-style: none;
	
}



.footer-column ul li {
  margin-bottom: 0.8rem;

}

.footer-column a {

  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);}

.footer-column a:hover {
   color: white;
  text-decoration: underline;
}

.footer-address    {
  color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-phone
{
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        gap: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-section {
        padding: 2rem;
        margin: 2rem 1rem;
    }

    .intro-wrapper h2 {
        font-size: 1.8rem;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-text h3 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .mindful-section h2 {
        font-size: 1.8rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {

	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 2rem;
    text-align   :        center;
    color: white;
	}

.services-hero-content h1{
		font-size   : 3rem;
    margin-bottom: 1rem;
   line-height: 1.2;


}

.services-hero-content p {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
    margin: 0 auto;
}

.services-main {
    padding: 3rem 2rem; 
	  background: var(--light-bg); 
	    max-width: 1200px; 
	   margin: 0 auto;


}

.services-intro {
   text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
  max-width    : 900px;
     margin: 0 auto;
   line-height: 1.8;
}

.detailed-services {
       padding: 4rem 2rem;
         max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    background     :      white;
    padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card-detailed.reverse {
   direction: rtl;
	
}

.service-card-detailed.reverse > * {
          direction: ltr;
}

.service-image-block {
   overflow: hidden;
  border-radius: 10px;
}

.service-detail-image {
    width: 100%;
  height: auto;
    display :   block;
  transition: transform 0.3s ease;
}

.service-card-detailed:hover .service-detail-image {
  transform: scale(1.05);
}

.service-description-block h2 {
   font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem; 
	
}

.service-meta {
	 display    :        flex;

    gap: 2rem;

 margin-bottom  : 1.5rem;

    flex-wrap     :    wrap;
}

.service-duration,
.service-sessions {
    font-size: 0.95rem;
  color: var(--text-light);
    font-weight: 500;
}

.service-description-block > p {


  color: var(--text-light);
	line-height: 1.8;
  margin-bottom: 1.5rem;
    font-size: 1rem; 



} 

.service-description-block h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
   margin-bottom    :    1rem;
  margin-top: 1rem;
}

.service-list {
      list-style: none;
           margin-bottom: 1.5rem;
}

.service-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  color: var(--text-light);
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
  content: "✓";
  position: absolute;
   left: 0;
  color: var(--accent-color);
   font-weight: bold;
   font-size: 1.2rem;
}

.service-price {
  background: var(--light-bg);
	 padding  :      1rem;
   border-radius: 8px;
  margin:        1.5rem 0;
    display  :  flex;
   justify-content: space-between;
   align-items: center;
}

.price-label {

	  color: var(--text-light);
   font-weight: 500; 
	}

.price-value     {
    font-size: 1.5rem;
  color: var(--accent-color);
   font-weight: 700;
}

.service-description-block .cta-button {
   margin-top: 1.5rem; 
	
}

.comparison-section {
	padding: 4rem 2rem;
  background: var(--light-bg);
    margin: 3rem 0;
}

.comparison-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
   text-align: center;
       margin-bottom: 3rem;
}

.comparison-table-wrapper {
  max-width: 1200px;
   margin: 0 auto;
	overflow-x: auto;
}

.comparison-table {
   width: 100%;
    border-collapse: collapse;
  background : white;
 border-radius    :    10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
	
}

.comparison-table thead {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;}

.comparison-table th {

  padding: 1.2rem;
  text-align: left;
	font-weight :       600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
    border-right :   none;
}

.comparison-table td {


	padding: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
	}


.comparison-table td:last-child {
          border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-label {
   font-weight: 600;
  color: var(--primary-color);
  background: rgba(74, 144, 226, 0.05);
}

.table-yes   {
	   color: #27ae60;
  font-weight: 600;


} 

.table-no {
     color: var(--text-light);

}

.table-partial {
  color: var(--accent-color);
   font-weight: 600;
}

.table-label-value {
   font-weight: 700;
  color: var(--accent-color);
}

.faq-section {
       padding: 4rem 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
	font-size: 2.5rem;
  color: var(--primary-color);
	text-align: center;
   margin-bottom: 3rem;
}

.faq-grid {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 2rem;
}

.faq-item  
  {
    background: white;
   padding: 2rem;
   border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.faq-item:hover	{
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
   font-size: 0.95rem;
}

.cta-services-section		{
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 2rem;
  text-align: center;
    color: white;
   margin: 3rem 0;
	
}

.cta-services-section h2


{

	  font-size: 2.5rem;
   margin-bottom: 1rem;


}

.cta-services-section p {
	font-size  :        1.1rem;
  color: rgba(255, 255, 255, 0.9);
         margin-bottom: 2rem;
    max-width    :     600px;
 margin-left: auto;
   margin-right: auto;
}

.thankyou-section {
    padding :    4rem 2rem;
     min-height: calc(100vh - 400px);
            display  :       flex;
       align-items: center;
       justify-content: center;
     background: var(--light-bg);
}

.thankyou-container {
  max-width :       900px;
  width: 100%;
   background: white;
  padding    :3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	text-align  :  center;
}

.thankyou-icon  
  {
      margin-bottom: 2rem;
    display: flex;
        justify-content: center;


}

.success-icon {
    width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.thankyou-container h1
	{
   font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
     font-size     :   1.3rem;
  color: var(--text-light);
   margin-bottom: 2rem;
}

.thankyou-content {


  text-align: left;
		 margin: 2rem 0;}

.message-box {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(26, 58, 82, 0.03) 100%);
   padding: 2rem;
  border-left: 4px solid var(--accent-color);
   border-radius: 8px;
   margin-bottom    :        2rem;
}

.message-box p {
  color: var(--text-light);
   font-size: 1.05rem;
  line-height  :     1.8;
  margin: 0;
}

.next-steps h2 {
	  font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
}

.steps-list {
   list-style: none;
  margin-bottom: 2rem; 

}

.steps-list li {
    display: flex;
  gap: 1.5rem;
                    margin-bottom: 1.5rem;
}


.step-number {
    display: flex;
    align-items: center;
  justify-content: center;
  width: 45px;
    height: 45px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #357abd 100%);
   color: white;
    border-radius: 50%;
  font-weight: bold;
  font-size :1.2rem;
	flex-shrink: 0;
}

.step-content h3 {
   font-size: 1.1rem;
  color: var(--primary-color);
       margin: 0 0 0.5rem 0;
}

.step-content p {
  color: var(--text-light);
      margin: 0;
      font-size: 0.95rem;
}

.tips-section {
     background: var(--light-bg);
  padding: 2rem;
   border-radius: 10px;
   margin-top: 2rem;
	}

.tips-section h2{
	font-size: 1.5rem;
  color: var(--primary-color);
     margin-bottom: 1rem;
  text-align     :        left;

}


.tips-list {
   list-style :        none;

}

.tips-list li {
  padding:       0.8rem 0 0.8rem 1.8rem;
  color: var(--text-light);
    position: relative;
   line-height: 1.6;
    font-size: 0.95rem;
}

.tips-list li::before
{
  content: "→";
   position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight  : bold;
}

.action-buttons {
                    display: flex;
	gap :      1.5rem;
    margin: 2rem 0;
        flex-wrap: wrap;
    justify-content: center;
}

.contact-info-box {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
					color: white;
  padding  :    2rem;
  border-radius   : 10px;
   margin-top: 2rem;
	}

.contact-info-box h3 {
   font-size: 1.2rem;
        margin-bottom: 0.8rem;
     color: white;
}

.contact-info-box p {
  margin: 0.5rem 0; 
	  color: rgba(255, 255, 255, 0.9); 
	
}

.phone-number {


  font-size :  1.4rem;
	font-weight: bold;
  color  :      white; 
	

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-card-detailed.reverse {
        direction: ltr;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table-wrapper {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        display: block;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-description-block h2 {
        font-size: 1.6rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.policySection {
       padding: 80px 2rem;
  background: var(--light-bg);
  min-height: calc(100vh - 400px);

}

.policyContainer {
	 max-width: 800px;
   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: var(--primary-color);

  margin-bottom: 2rem;

  font-weight: 700;

   line-height: 1.2;
}

.policyContainer h2


{
  font-size: 1.8rem; 
  color: var(--primary-color); 
               margin-bottom: 1.2rem; 
  margin-top    :       2rem; 
                    font-weight:    600; 
  border-bottom: 3px solid var(--accent-color); 
  padding-bottom: 0.8rem;


}

.policyContainer p {
  color: var(--text-light); 
	  margin-bottom:    1.5rem; 
	   line-height: 1.8; 
		font-size: 1rem;
}

.policyContainer strong {
  color: var(--primary-color);
    font-weight :600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}