* {
   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;
}

.container {
         max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;


}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      padding: 15px 0;
        position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container  {
	   display: flex; 
	      justify-content: space-between; 
	   align-items: center; 
		 max-width: 1200px; 
	     margin: 0 auto; 
	   padding: 0 20px;
	}

.nav-logo img {
  height: 50px;
  width     :auto;
}

.nav-menu {
    display: flex;
	 list-style: none;
    gap     :        30px;
}

.nav-link {
  color    :#ecf0f1;
       text-decoration: none;
         font-weight: 500;
    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%;
}

.nav-toggle {
   display: none;
    flex-direction  : column;
     cursor: pointer;
  background: none;
    border: none;
}

.nav-toggle span {
	   width: 25px;
  height: 3px;
  background-color: #ecf0f1;
    margin:      5px 0;
	 transition: all 0.3s ease;
	border-radius: 2px;

}



.nav-toggle.active span:nth-child(1)    {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
 opacity: 0;

}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
   display: grid;
	 grid-template-columns: 1fr 1fr;
   align-items: center;
    gap: 40px;
  padding:  80px 20px;
               max-width: 1200px;
    margin   :0 auto;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
	border-radius: 20px;
  margin: 40px auto;
}

.hero-content h1{
   font-size: 3em;
   color: #2c3e50;
   margin-bottom: 20px;
	line-height: 1.2;
}

.hero-content p {
	 font-size: 1.1em;
    color: #555;
   margin-bottom: 30px;
  line-height: 1.8;
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
 padding: 15px 40px;
    text-decoration: none;
  border-radius: 50px;
        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-visual img
	{
    width: 100%; 
		border-radius: 15px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-preview {
          padding: 80px 20px;
    background: #fff;
}

.services-preview h2 {


   font-size: 2.5em;
                    text-align: center;
   margin-bottom: 50px;
  color: #2c3e50;
}

.services-grid {
               display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}  

.service-card {
   background: #fff;
	border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   border  :1px solid #e0e0e0;
	}  

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img    {
   width: 100%;

	    height: 200px;

	   object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
   font-size: 1.3em;
	color  :    #2c3e50; 

}

.service-card p {
	padding: 0 20px 20px;
   color     :      #666;
    font-size: 0.95em;

}

.benefits

{
          padding    :       80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8e8e8 100%);
}

.benefits h2 {
  font-size: 2.5em;

    text-align: center;

  margin-bottom: 50px;

    color: #2c3e50;
}

.benefits-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
  max-width :        1200px;
   margin: 0 auto;}

.benefit-item {
    background     :     #fff; 
	    padding: 30px; 
	  border-radius: 12px; 
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
	    border-left:  4px solid #3498db;
}

.benefit-item h3


{
  color: #2c3e50;
    margin-bottom: 15px;
   font-size :     1.2em;
}

.benefit-item p {
        color :   #666;
    line-height: 1.7;
}

.why-crisis {

	  padding: 80px 20px;
  background  :        #fff;}

.why-crisis h2 {
  font-size: 2.5em;
       color:   #2c3e50;
	 margin-bottom: 30px;
}

.why-crisis p {
    font-size: 1.05em;
	   color: #555;
	  line-height: 1.9;
	    margin-bottom: 20px;
		max-width: 900px;
}

.cta-section {
	padding: 80px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align   : center;
  color: #fff;
}

.cta-section h2
{

   font-size: 2.5em;

	margin-bottom: 20px; 
	


}

.cta-section p {

	   font-size: 1.2em;
   margin-bottom: 40px;
}

.cta-button-large {
          display   : inline-block;
   background: #fff;
   color  :     #3498db;
  padding: 18px 50px;
    text-decoration: none;
   border-radius: 50px;
  font-weight: 700;
   transition: all 0.3s ease;
               font-size: 1.05em; 

}

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact {
  padding: 80px 20px;
                    background: #f8f9fa;
}

.contact h2 {
    font-size: 2.5em;
 text-align: center;
  margin-bottom: 50px;
   color: #2c3e50;
}

.contact-form {
   max-width: 600px;
  margin: 0 auto;
  background: #fff;
    padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
       display: block;
    margin-bottom: 10px;
   font-weight: 600;
   color: #2c3e50;}

.form-group input,
.form-group select,
.form-group textarea {
     width: 100%;
    padding: 12px 15px;
	 border: 2px solid #e0e0e0;
   border-radius: 8px;
    font-size: 1em;
  font-family: inherit;
   transition     :        border-color 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus

{
      outline    :      none;
        border-color: #3498db;
     }

.form-group textarea 
 {
    resize:        vertical;
}

.submit-button    {
  width    :       100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
	padding: 15px;
    border: none;
    border-radius: 8px;
   font-size: 1.05em;
	font-weight: 600;
         cursor: pointer;
	transition: all 0.3s ease; 

} 

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
  padding: 60px 20px 20px;
} 

.footer-container {
      max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap  :        40px;
   margin-bottom  :  40px;}

.footer-section h4
{
   color: #fff;
    margin-bottom: 20px;
      font-size: 1.1em;
}

.footer-logo-img {
   height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
	
}

.footer-section ul {
   list-style: none; 
	
}

.footer-section ul li   {
    margin-bottom: 12px;
}

.footer-section a {
  color: #bdc3c7;
      text-decoration: none;
      transition :   color 0.3s ease;
}

.footer-section a:hover {
               color: #3498db;
}

.footer-section p {
   margin-bottom:   8px;
      line-height: 1.8;
}

.footer-bottom {
  text-align: center;
    padding-top: 30px;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
    color: #95a5a6;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .services-preview h2,
    .benefits h2,
    .cta-section h2,
    .contact h2 {
        font-size: 1.8em;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 20px;
    }

    .nav-link {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 0.95em;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }

    .services-preview h2,
    .benefits h2,
    .cta-section h2,
    .contact h2 {
        font-size: 1.5em;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        top: 60px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: #fff;
   padding: 80px 20px;
	text-align: center;
}

.services-hero h1 {
   font-size: 2.8em;
   margin-bottom: 20px;
					line-height: 1.2;
}

.services-hero p{
    font-size: 1.2em;
    max-width: 800px;
  margin: 0 auto;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
  background: #fff;
}

.service-detail-item {
   display  :   grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 50px;
		align-items: center;
	  margin-bottom: 100px;
	    max-width: 1200px;
	   margin-left: auto;
	  margin-right: auto;


}  

.service-detail-item.reverse {
   direction: rtl;
}

.service-detail-item.reverse > * {
   direction: ltr;
}

.service-detail-image img {
 width: 100%;
   border-radius   :   15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
   font-size: 2.2em;
   color :     #2c3e50;
    margin-bottom   :     20px;
}

.service-detail-content > p {
       font-size: 1.05em;
  color: #555;
    line-height     :     1.8;
    margin-bottom: 25px;


}

.service-features {
  background: #f8f9fa;
       padding: 25px;
      border-radius: 10px;
       margin: 25px 0;
        border-left: 4px solid #3498db;
     }

.service-features h3 {
   font-size  :      1.1em;
   color: #2c3e50;
   margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
   padding: 0;
}

.service-features ul li  {
  padding: 8px 0;
  color: #555;
   position    :        relative;
    padding-left: 25px;
}

.service-features ul li:before 
 {
  content: "✓";

	  position: absolute;

	  left: 0;

	    color     :    #2ecc71;

	    font-weight   :    bold;

	    font-size: 1.1em;
}

.service-duration,
.service-group {
      color: #2c3e50;

	   font-size     :     0.95em;

	   margin-top: 15px;
}

.service-packages {
	  padding   :    80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8e8e8 100%);


}

.service-packages h2  {
    font-size :      2.5em;
   text-align   :       center;
   margin-bottom: 50px;
    color: #2c3e50;
}

.packages-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
    max-width: 1200px;
   margin: 0 auto;
}

.package-card {
   background: #fff;
  padding    : 40px;
   border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition :    all 0.3s ease;
    border: 2px solid #e0e0e0;
   position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
   border-color: #3498db;
}

.package-card.featured


{
     border-color :  #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
  transform: scale(1.05); 
	
}  

.package-card h3 {
    font-size     :     1.5em;
    color: #2c3e50;
  margin-bottom: 15px;

}

.package-price  
  {
    font-size: 2em;
    color: #3498db;
      font-weight: 700;
    margin-bottom: 20px;
}

.featured-label {
    position: absolute;
  top: -15px;
 left: 20px;
       background    :     #3498db;
   color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85em;
    font-weight: 600;
}

.package-features {
    list-style: none;
          padding: 25px 0;
}

.package-features li {
         padding: 12px 0;
   color: #555;
  border-bottom: 1px solid #e0e0e0;
    position: relative;
	 padding-left: 25px;
}

.package-features li:last-child {
  border-bottom   :  none;
}

.package-features li:before {
  content: "•";
    position: absolute;
  left     :      0;
    color: #3498db;
  font-size:1.5em;
}

.process-section     {
  padding: 80px 20px;
  background: #fff;


}

.process-section h2
{
 font-size:   2.5em;
  text-align: center;
   margin-bottom: 60px;
   color: #2c3e50;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
   max-width: 1200px;
  margin: 0 auto;
}

.process-step		{
    text-align: center;
    position: relative;
}

.process-step:not(:last-child):after {

  content: "";
  position: absolute;
  right     :       -20px;
    top: 40px;
  width: 40px;
    height: 2px;
   background: #3498db;}

.step-number {

    width :     80px;
   height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
    font-size :       2em;
          font-weight: 700;
    border-radius: 50%;
     display: flex;
			align-items: center;
          justify-content: center;
                    margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);

}

.process-step h3


{
    font-size: 1.2em;
   color   : #2c3e50;
  margin-bottom: 12px;
	
}

.process-step p {
   color: #666;
  line-height: 1.6;
    font-size: 0.95em;
}

.faq-section {
   padding: 80px 20px;
  background     :   #f8f9fa;
	
}

.faq-section h2 {

    text-align: center;
  margin-bottom: 50px;
   font-size: 2.5em;
   color: #2c3e50;
	}

.faq-items {
	  margin: 0 auto;
	max-width: 900px;

}

.faq-item {
  background: #fff;
 padding: 25px;
    margin-bottom :    20px;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #3498db;
   cursor: pointer;
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);

}

.faq-question {
   font-size  :   1.1em;
  color: #2c3e50;
    margin-bottom     :     12px;
   font-weight: 600;
	
}

.faq-answer {
    color: #666;
    line-height:1.7;
    font-size  :0.95em; 
	
}

.cta-final
{
  padding: 80px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
	 color  :     #fff;
}

.cta-final h2 {
    font-size: 2.5em;
	margin-bottom: 20px;
}

.cta-final p {
	  font-size: 1.2em;
  margin-bottom: 40px;
	}

.thankyou-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   min-height: 100vh;
}

.thankyou-content {
  max-width    :        800px;
               margin: 0 auto;
  background: #fff;
          padding: 60px 40px;
  border-radius:        15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon


{
         margin-bottom: 30px;
}

.success-icon svg {
   width: 120px;
	   height: 120px;
	  animation: successPulse 0.6s ease-out;
}@keyframes successPulse {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
      font-size: 2.5em;
    color: #2ecc71;
   margin-bottom: 15px;}

.thankyou-content h2 {
        font-weight: 600;
   	 margin-bottom: 30px;
       color: #2c3e50;
       font-size: 1.8em;
}

.thank-intro {
	 font-size: 1.1em;
   color: #666;
  margin-bottom: 30px;
    line-height: 1.8;


}

/* Production ready */

.thank-details {
    background: #f8f9fa;
    padding: 30px;
   border-radius: 10px;
   margin-bottom: 40px;
  border-left:        4px solid #2ecc71;
}

.thank-details p {
    margin-bottom    :     12px;
    color: #555;
}

.phone-number


{
    font-size: 1.5em;
  font-weight     :  700;
   color: #3498db;
	margin-top    :        15px !important;
} 

.what-happens  
  {

	text-align: left;
   margin: 50px 0;


}

.what-happens h3 {

		 font-size :       1.5em;
  color: #2c3e50;
  margin-bottom: 30px;
    text-align: center;}

/* Colors and backgrounds */

.steps-list	{
    display: grid;
   gap: 20px;
}

.step-item {
	display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
  align-items  :     flex-start; 
	
}

.step-icon
{
   width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
   border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content:  center;
   font-size    :      1.8em;
	font-weight: 700;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 1.1em;
 color  : #2c3e50;
	margin-bottom: 8px;
}

.step-text p {
    color: #666;
  line-height: 1.6;
  font-size: 0.95em;


}
	/* Minified version */

.return-actions 
 {
  display: grid;
    grid-template-columns :   1fr 1fr;
  gap: 20px;
   margin: 40px 0; 

}

.btn-primary,
.btn-secondary {
	 padding: 15px 30px;
 border-radius: 8px;
	text-decoration: none;
  font-weight    :     600;
    transition:  all 0.3s ease;
  display: inline-block;
	
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background: #ecf0f1;

	   color: #2c3e50;

	   border: 2px solid #3498db;
}

.btn-secondary:hover {


   background: #3498db;
    color: #fff;


}

.contact-alternatives {
		 margin-top: 50px;
    padding-top: 50px;
     border-top: 2px solid #e0e0e0;
  text-align: center;
}

.contact-alternatives h3 {
       font-size: 1.3em;
   margin-bottom: 15px;
   color: #2c3e50;


}

.contact-alternatives p {
  color: #666;
         margin-bottom: 25px;
}
	/* Browser compatibility */


.alternatives-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	   gap: 20px;
	               margin-top: 25px;
}

.alt-item {
    background   :       #f8f9fa;
    padding: 25px;
  border-radius: 10px;
}

/* Animation and transitions */

.alt-item h4 {
     font-size: 1.1em;
  color    :      #2c3e50;
   margin-bottom :  10px;
	
	}

.alt-item p {
   color: #666;
    margin-bottom: 8px;
}

/* Animation and transitions */
	/* Auto-generated CSS */

.small-text {
  margin-bottom:   0 !important;
   color: #999;
  font-size: 0.85em;

}

.next-steps {
   padding: 80px 20px;
   background :        #fff;
}

.next-steps h2 {
   font-size: 2.2em;
    text-align: center;
	margin-bottom: 50px;
   color     :       #2c3e50;
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {

	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 30px;
    border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #3498db; 


}

.info-card h3 {
    font-size: 1.2em;
    color: #2c3e50;
 margin-bottom: 15px;
}

.info-card p
{
            color     :       #666;
       line-height   :1.7;}
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8em;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5em;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .return-actions {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 60px 1fr;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5em;
    }

    .service-detail-content h2 {
        font-size: 1.3em;
    }

    .service-packages h2,
    .process-section h2,
    .faq-section h2 {
        font-size: 1.5em;
    }

    .thankyou-content h1 {
        font-size: 1.8em;
    }

    .thankyou-content h2 {
        font-size: 1.3em;
    }

    .alternatives-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
   min-height: 100vh;
}

.policyContainer {
    max-width: 800px;
   margin: 0 auto;
   text-align: left;
  background: #fff;
   padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8em;
          color: #2c3e50;
   margin-bottom: 40px;
  font-weight:    700;
   border-bottom: 3px solid #3498db;
          padding-bottom: 20px;
}

.policyContainer h2 {
  font-size    :  1.6em;
  color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 35px;
    font-weight: 600;
}

.policyContainer h2:first-of-type	{
 margin-top: 0;
}

.policyContainer p {
   color: #555;
  margin-bottom: 18px;
  line-height: 1.8;
    font-size: 1.05em;
}


.policyContainer strong {
  color   : #2c3e50;
    font-weight: 600;
}

.policyContainer a  {

	   color: #3498db;
       text-decoration  :      none;
  transition: color 0.3s ease;
}

.policyContainer a:hover {
   color :  #2980b9;
    text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 30px 25px;
    }

    .policyContainer h1 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 20px 15px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .policyContainer h2 {
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 0.95em;
        margin-bottom: 15px;
        line-height: 1.7;
    }
}