* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	    color :    #2c3e50;

	    background-color: #f8f9fa;

	  line-height: 1.6;
	
}

.navigation-bar {
	background-color: #ffffff;
  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;
}

.logo-section

{
    flex-shrink: 0;
}

.logo-img  
  {
   height    :    50px; 
	    width: auto;
}

.nav-links {
    list-style: none;
  display: flex;
    gap  :     40px;
   align-items     :       center;
}

.nav-link {
  text-decoration: none;
	 color   :       #2c3e50;
          font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
       position  :       relative;
}


.nav-link:hover {
   color: #3498db;
}

.nav-link::after {
	  content: '';
    position: absolute;
	bottom: -5px;
    left    :    0;
  width: 0;
 height: 2px;
  background-color: #3498db;
	 transition: width 0.3s ease;
     }

.nav-link:hover::after {

	  width: 100%;

}

.burger-menu {
  display: none;
    flex-direction   : column;
   cursor    :      pointer;
    gap: 6px; 
	
}

.burger-menu span {
	 width: 25px;
  height: 3px;
     background-color    :        #2c3e50;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2)  {
   opacity: 0;
}

.burger-menu.active span:nth-child(3)   {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-section {

  max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
	 display: flex;
  align-items: center;
     gap: 60px;
   flex-wrap: wrap;
     }

.hero-content {

     flex: 1;
  min-width    :300px;}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color:    #1a252f;
       font-weight: 700;
   line-height: 1.2;
}

.hero-subtitle {
   font-size: 18px;
   color: #555;
   margin-bottom: 30px;
   line-height     :     1.8;
}

.cta-button {
    display   :     inline-block;

	  padding: 14px 32px;

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

	  color: white;

	  text-decoration   : none;

	   border-radius: 6px;

	   font-weight: 600;

	  transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {
    min-width: 300px;

    flex: 1;
}

.hero-img {
    width: 100%;
          height: auto;
      border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-section {
   background-color: #f0f4f8;
  padding: 80px 20px;
}

.about-container {
   max-width  :        1200px;
   margin: 0 auto;
}

.about-container h2    {
	    font-size: 36px;
   margin-bottom: 50px;
    text-align: center;
   color: #1a252f;


}

.about-content {


    display    :  flex;
    gap: 60px;
	 align-items: center;
   flex-wrap: wrap;

}

.about-text {
		flex: 1;
    min-width: 300px;

}

.about-text p {
    font-size: 16px;
  margin-bottom    :   20px;
   color: #333;
  line-height: 1.8;
}

.about-image {
  flex: 1;
    min-width: 300px; 
	
}

.about-img  {
    width: 100%;
   height: auto;
   border-radius  :    12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}



.services-preview {
  max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
}

.services-preview h2     {
    font-size: 36px;
    margin-bottom  :  50px;
      text-align: center;
     color: #1a252f;
}

.services-grid {
	display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.service-card {
    background-color: white;
    border-radius   :        10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover		{

  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);


}

.service-image {
    width: 100%;
    height: 250px;
   object-fit: cover;
    display:      block;
}

.service-card h3 {
   color: #1a252f;
  font-weight: 600;
			padding    :       25px 25px 10px;
   font-size :20px;
}

.service-card p

{
   padding: 0 25px 20px;
   color: #666;
  font-size: 15px;
   line-height: 1.6;
}

.service-link {
    display: inline-block;
  margin: 0 25px 25px 25px;
  padding   :      10px 20px;
        color: #3498db;
  text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
   border-bottom: 2px solid #3498db;
}

.service-link:hover {
    color: #2980b9;
    border-bottom-color   :   #2980b9;
}

.features-section {
	 background-color  :  #f0f4f8;
  padding: 80px 20px;
}

.features-container {
   max-width: 1200px;
   margin: 0 auto;
}



.features-container h2 {
     font-size: 36px;
    margin-bottom: 60px;
  text-align: center;
    color    :      #1a252f;
}

.features-list {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
   margin-bottom: 20px;
   display: flex;
	justify-content: center;
}

.feature-icon img {
         width: 60px;
  height: 60px;
    stroke: #3498db;
  fill: none;
   stroke-width    :      1.5;
   stroke-linecap: round;
          stroke-linejoin    :       round;
    transition: all 0.3s ease;
}



.feature-item:hover .feature-icon img {
   stroke: #2980b9;
  transform: scale(1.1);
}

.feature-item h3   {
  font-size: 18px;
               margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

.feature-item p {


   font-size: 15px;
    color: #666;
  line-height: 1.6;
	}

.cta-booking
	{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
	  color: white; 
	  padding: 80px 20px; 
		 text-align: center;
}

.cta-content h2 {

			font-size: 36px;
	margin-bottom: 20px;
    font-weight: 700;
	


}

.cta-content p {

    font-size: 18px;
   margin-bottom     :30px;
    opacity   : 0.95;
	 line-height: 1.6;


}

.cta-primary-btn {
     font-weight: 700;
	 border-radius: 6px;
                    transition: all 0.3s ease;
    background-color: white;
    text-decoration: none;
	color: #3498db;
   padding: 14px 40px;
    font-size: 16px;
  display: inline-block;

}

.cta-primary-btn:hover {
  transform: translateY(-2px);
	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}



.contact-section {
                    max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

}

.contact-container h2
	{
     font-size     :      36px;
     margin-bottom: 15px;
	 text-align: center;
    color:   #1a252f;
    font-weight     :    700;


}

.contact-intro {


  margin-bottom   :     50px; 
	               font-size: 16px; 
	    color: #666; 
	    line-height    :        1.6; 
	    text-align: center;}

.contact-form {
   background-color: #f8f9fa;
   padding    :       40px;
   border-radius: 10px;
    margin-bottom   :      40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);

}

.form-group     {
   margin-bottom: 25px;
}

.form-group label {
  display  :  block;
  margin-bottom: 8px;
   font-weight    :     600;
    color: #1a252f;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
   border: 1px solid #ddd;
  width   :       100%;
   color: #333;
    font-family: inherit;
  font-size: 15px;
	 transition: all 0.3s ease;
   border-radius: 6px;
   padding: 12px 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline :       none;
    border-color : #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   border: none;
   border-radius: 6px;
  font-size: 16px;
    font-weight: 700;
      cursor:        pointer;
   transition: all 0.3s ease;
}

.form-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
} 

.contact-info {
	display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
       margin-top    :      40px;
}

.info-block {
  background-color: #f0f4f8;
	  padding: 30px;
	   border-radius: 10px;
	   text-align: center;
	
}

.info-block h3 {
   font-size: 18px;
  margin-bottom: 12px;
   color: #1a252f;
  font-weight: 600;
	
}

.info-block p {
   color: #666;
               font-size: 15px;
   line-height: 1.6;
	
}

.footer-section {
     background-color: #1a252f;
   color: white;
   padding: 60px 20px 30px;
  margin-top: 80px;


}

.footer-container		{
   max-width    : 1200px;
         margin: 0 auto;
}

.footer-logo{
  display: flex;
   margin-bottom    : 40px;
   justify-content: center; 
	
}

.footer-logo-img {
  height :     50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-columns     {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
   margin-bottom: 40px;
}  

.footer-column h4 {
  font-size: 16px;
   margin-bottom: 20px;
   font-weight: 700;
   color: white;
}

.footer-column ul {
        list-style: none;
}

.footer-column ul li {
   margin-bottom: 12px;


}

.footer-column a 
 {
      color: #bbb;
  text-decoration: none;
    transition: color 0.3s ease;
   font-size: 14px;}

.footer-column a:hover {
  color: #3498db;
}

.footer-column p {
   font-size: 14px;
       color: #bbb;
    line-height: 1.7;
   margin-bottom: 8px;
}

.footer-bottom {
    color: #999;
    border-top: 1px solid #333;
   padding-top: 30px;
    font-size: 14px;
  text-align: center;
}@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        padding: 12px 20px;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-content {
        gap: 30px;
    }

    .features-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .feature-item {
        padding: 20px;
    }

    .cta-booking {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .services-preview h2,
    .about-container h2,
    .features-container h2,
    .contact-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-columns {
        gap: 25px;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   padding: 80px 20px;
	text-align   :        center;
}

.services-hero-content h1 {
  font-size: 42px;
    margin-bottom   :     15px;
   font-weight: 700;
    line-height: 1.2;
}

.services-hero-content p {
	    font-size    :   18px;
   opacity: 0.95;
  line-height: 1.6;




}

.services-main {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.services-container {
               max-width: 1200px;
   margin     :0 auto;
}

.services-grid-full {
   gap: 60px;
	flex-direction: column;
   display: flex;
} 

.service-item-full {
    display    :   flex;
  gap: 50px;
   align-items: center;
  background-color: white;
  padding: 40px;
	border-radius :     12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item-full:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-item-full.alternate {
   flex-direction: row-reverse;
}

.service-image-wrapper {
	       -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
	 flex: 0 0 40%;}

.service-img-full {

	    width: 100%;
   height     :  auto;
  border-radius:    10px;
   display: block;


}

.service-content-full {
	flex: 1;
}

.service-content-full h2    {
    font-size: 28px;
	 margin-bottom: 15px;
  color: #1a252f;
    font-weight: 700;


}

.service-content-full p {
  font-size: 16px;
   color: #555;
   margin-bottom: 25px;
	line-height:       1.7; 

}

.service-features {
   list-style: none;
    margin-bottom: 30px;
}

.service-features li   {
	font-size: 15px;
       color: #333;
       padding   :      8px 0 8px 25px;
       position  :     relative;
       line-height: 1.5;
}

.service-features li:before

{
  content: '▸';
    position: absolute;
    left: 0;
   color: #3498db;
       font-weight: bold;
   font-size  :      18px;
}

.service-pricing
	{
  display: flex;
   align-items: baseline;
	gap: 10px;
}

.price
{
	   font-size: 24px;
  font-weight: 700;
    color: #3498db;

     }  

.duration {
   font-size: 14px;
  color: #999;
}

.services-comparison {
	  max-width: 1200px;
  margin: 0 auto;
    padding    :      80px 20px;}

.services-comparison h2 {
    font-size: 36px;
  margin-bottom: 50px;
   text-align: center;
    color: #1a252f;
        font-weight: 700;
}

.comparison-table-wrapper {
  overflow-x: auto;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
   width: 100%;
   border-collapse :  collapse;
   background-color: white;
}

.comparison-table thead{
   background-color: #f0f4f8;
}

.comparison-table th

{
    padding    :        20px 15px;
   text-align: left;
  font-weight :       700;
    color: #1a252f;
   border-bottom: 2px solid #e0e0e0;
  font-size: 14px;
}

.comparison-table td {
    padding: 18px 15px;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      color:      #555;
	
     }

.comparison-table tbody tr:hover {
  background-color: #f8f9fa;
}

.comparison-table .checkmark {
 color   :      #2ecc71;
	font-weight: bold;
    font-size:  18px;
}

.faq-section    {
	 max-width: 1000px;
   margin :        0 auto;
   padding :   80px 20px;
}

.faq-container h2 {

	    font-size: 36px;
    margin-bottom: 50px;
  text-align: center;
   color :#1a252f;
   font-weight: 700;


}


.faq-list {
  display    : flex;
   flex-direction: column;
    gap: 15px; 
	
}

.faq-item {
  background-color    :    white;
    border-radius: 10px;
      overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
   width: 100%;
  padding   :     20px;
     background-color: #f8f9fa;
          border :none;
    text-align: left;
	 cursor: pointer;
   display: flex;
   justify-content: space-between;
  align-items: center;
   font-size: 16px;
               font-weight :  600;
   color: #1a252f;
    transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f4f8;

}

.faq-question span {
   flex: 1;
}

.faq-question::after {
  content: '+';
    font-size: 24px;
   color: #3498db;
   margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
   max-height: 0;
  overflow: hidden;
   transition: all 0.3s ease;
    background-color: white;
}

.faq-answer.active


{
               padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 15px;
   color: #555;
	 line-height: 1.7;
}

.services-cta {
   text-align: center;
               background-color: #f0f4f8;
	 padding: 60px 20px;
}

.services-cta h2 {
   font-size     :    32px;
    margin-bottom: 15px;
    color: #1a252f;
  font-weight: 700;
}

.services-cta p {
    font-size: 16px;
         color: #666;
    margin-bottom: 30px;
 line-height: 1.6;
}

.cta-button-services {
	display: inline-block;

   padding: 14px 40px;

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

    color: white;

        text-decoration: none;

    border-radius: 6px;

         font-weight   :       700;

   transition: all 0.3s ease;

  font-size    :    16px;
}

.cta-button-services:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.thankyou-section {
  min-height: calc(100vh - 70px);
   display: flex;
   align-items: center;
	justify-content: center;
   padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.thankyou-container {
  width: 100%;
    max-width: 700px;
}

.thankyou-content {
  background-color: white; 
	       padding :  60px 40px; 
	   border-radius   :        12px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
	   text-align: center;

}

.success-icon {
	   margin-bottom: 30px; 
	   display: flex; 
	  justify-content: center;
	}

.success-icon img {
   width:80px;
     height: 80px;
    stroke   :      #2ecc71;
   fill: none;
  stroke-width: 1;
}

.thankyou-section h1 {
    font-size: 36px;
   color: #1a252f;
               margin-bottom: 15px;
 font-weight: 700;
}

.thankyou-message {
   font-size: 16px;
   color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.next-steps {

	   background-color: #f8f9fa;
    padding: 30px;
   border-radius: 10px;
   margin-bottom: 40px;
   text-align: left;
}

.next-steps h2 {

	   font-size: 20px;
    color: #1a252f;
   margin-bottom: 25px;
  text-align: center;
   font-weight   :       700;


}

.steps-list		{
  list-style: none;
}

.steps-list li 
 {
    display  :    flex;
   gap :    15px;
  margin-bottom: 20px;
  align-items     : flex-start;
}

.steps-list li:last-child {
	margin-bottom: 0;
}

.step-number
	{
    display: flex;
    align-items: center;
   justify-content: center;
    min-width   :       40px;
   height: 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color  :     white;
	border-radius: 50%;
    font-weight  : 700;
    font-size: 16px;
    flex-shrink: 0;

}

.step-text {
	font-size: 15px;
    color: #555;
    line-height: 1.6;
  padding-top: 8px;
}

.action-buttons {


   display: flex;
	gap: 15px;
                    margin-bottom: 30px;
    flex-wrap:       wrap;
    justify-content: center;}



.btn-home,
.btn-services {

	    border-radius: 6px;
   text-decoration: none;
	 transition: all 0.3s ease;
   font-size: 14px;
  font-weight: 600;
    padding:  12px 28px;
    flex: 1;
    min-width: 150px;


}

.btn-home {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
} 

.btn-services {

	                    background-color :    white; 
  color: #3498db; 
    border: 2px solid #3498db;


}

.btn-services:hover {
	  background-color   :    #f8f9fa;
   border-color: #2980b9;
                    color: #2980b9;
	}

.contact-reminder {
		 padding   :      20px;
    background-color: #f0f4f8;
    border-radius :        8px;


}

.contact-reminder h3 {
    font-size:16px;
    color: #1a252f;
    margin-bottom   :     10px;
   font-weight: 700;
}

.contact-reminder p {
  font-size: 14px;
   color: #666;
  margin-bottom: 8px;
	}

.contact-phone {

	  font-size: 18px;
   font-weight     :     700;
   color: #3498db;
      margin-bottom: 0;


}

.promo-section {
 margin: 0 auto; 
               max-width:1200px; 
    padding: 60px 20px;
}

.promo-container h2 {
    font-size: 32px;
    margin-bottom: 40px;
  text-align: center;
	color: #1a252f;
   font-weight: 700;


}

.promo-cards  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.promo-card {
    background-color: white;
		padding: 30px;
	   border-radius: 10px;
	   text-align   :    center;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	    transition: all 0.3s ease;

}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}

.promo-icon {
   margin-bottom: 20px;
   justify-content: center;
   display: flex;
}

.promo-icon img {
     width: 50px;
   height: 50px;
    stroke:   #3498db;
      fill: none;
   stroke-width: 1.5;
   transition     :    all 0.3s ease;
}

.promo-card:hover .promo-icon img {
  stroke: #2980b9;
  transform: scale(1.1);
}

.promo-card h3 {
   font-size   :       18px;
    color: #1a252f;
   margin-bottom   :     12px;
   font-weight: 700;
}


.promo-card p {
   font-size: 14px;
   color: #666;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .service-item-full {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .service-item-full.alternate {
        flex-direction: column;
    }

    .service-image-wrapper {
        flex: 0 0 100%;
    }

    .service-content-full h2 {
        font-size: 22px;
    }

    .comparison-table-wrapper {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-section h1 {
        font-size: 26px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-home,
    .btn-services {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .services-hero-content p {
        font-size: 15px;
    }

    .service-content-full h2 {
        font-size: 20px;
    }

    .service-content-full p {
        font-size: 14px;
    }

    .thankyou-content {
        padding: 30px 20px;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }

    .steps-list li {
        gap: 10px;
    }

    .step-number {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-text {
        font-size: 13px;
    }
}.policySection {
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 70px);
}

.policyContainer {

	  max-width: 800px;
    margin: 0 auto;
	text-align: left;
}

.policyContainer h1
{
   font-size  :     2.8rem;
  color: #1a252f;
  margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.policyContainer h2 {
  font-size: 1.8rem;
   color: #2c3e50;
	margin-top: 2.5rem;
    margin-bottom: 1.2rem;
         font-weight: 700;
    border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.policyContainer p {
     color  :#555;
        margin-bottom: 1.5rem;
    line-height:        1.8;
	 font-size: 1rem;
	}

.policyContainer strong {
   color: #1a252f;
  font-weight: 700;
}

.policyContainer ul {
     margin-left: 2rem;
	margin-bottom: 1.5rem;


}

.policyContainer li {
 margin-bottom: 0.8rem;
  line-height: 1.7;
  color: #555;}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policyContainer ul {
        margin-left: 1.5rem;
    }
}