* {
	  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;
}

.navbar {


  background-color     :       #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: sticky;
   top :   0;
         z-index: 1000;


}

.nav-container {
	  max-width  :    1200px;
  margin  :       0 auto;
    padding: 1rem 2rem;
               display: flex;
     justify-content  :  space-between;
   align-items: center;}

.nav-logo img {
  height  :        45px;

	    width: auto;

	  filter: brightness(0) invert(1);
}

.nav-menu {
	display: flex;
  list-style: none;
   gap   : 2rem;
}

.nav-link {
  text-decoration: none;
    color: #2c3e50;
                    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%;
}

.hamburger {
  flex-direction: column;
  gap   :       6px;
   cursor: pointer;
  display :      none;
}

.hamburger span {
	 width: 25px;
    height: 3px;
	background-color   :  #2c3e50;
	border-radius: 2px;
  transition: all 0.3s ease;
     }@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid #ecf0f1;
        padding: 1rem 2rem;
    }

    .nav-link::after {
        display: none;
    }
}.hero-section {
  max-width     :   1200px;
  margin    :  0 auto;
  padding: 4rem 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
               align-items   :       center;
}

.hero-content h1 {
               font-size: 3rem;
      color: #1a252f;
      margin-bottom: 1rem;
       line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
   color: #555;
    margin-bottom: 2rem;
}

.cta-button
{
  display  :inline-block;
   padding:    1rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
  text-decoration: none;
	border-radius: 50px;
   font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
} 

.hero-image img {
    width: 100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-intro {
	max-width: 1200px;
    margin: 4rem auto;
  padding: 2rem;
}

.services-intro h2 {
	font-size: 2.5rem;
	text-align: center;
   margin-bottom: 3rem;
  color: #1a252f; 
	}

.services-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

/* Development only */

.service-card {
	 background: white;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Experimental feature */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



.service-card img {
  width: 100%;
        height: 200px;
  object-fit   : cover;
}

.service-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;
    color: #2980b9;
   font-size: 1.3rem;
}
	/* Browser compatibility */
	/* Responsive design */
/* Hack for old browsers */
.service-card p {
    padding     :0 1.5rem 1.5rem;
    color: #666;
   font-size    :     0.95rem;
}

.conference-section {

	  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
  padding: 3rem 2rem;
   margin     :      3rem 0;
     }

.conference-section h2  
  {
  font-size: 2.5rem;
  max-width:  1200px;
  margin: 0 auto 2rem;
   color: #1a252f;
}

/* Custom modifications */


	/* Framework override */
.conference-content {
   max-width: 1200px;
	  margin: 0 auto;
	
}

.conference-content p {
	font-size: 1.1rem;
	color   :     #2c3e50;
    margin-bottom: 1.5rem;
}


.benefits-list {
   list-style: none;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 1rem;
}

.benefits-list li {
  background: white;
    padding: 1.5rem;
  border-radius: 8px;
	 border-left: 4px solid #3498db;
    font-weight: 500;
  color: #2c3e50;
}

/* Vendor-specific */


/* Hack for old browsers */


/* Colors and backgrounds */


/* Custom modifications */

.cta-booking {
     background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
    text-align: center;
	padding: 3rem 2rem;
    margin: 3rem 0; 

}

.cta-booking h2 {
   font-size   :   2.2rem;
	margin-bottom     :       1rem;
}

.cta-booking p
{
  font-size: 1.1rem;
   margin-bottom: 2rem;
  max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-button {
  display: inline-block;
    padding: 1rem 2.5rem;
   background-color: #3498db;
	color: white;
   text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.booking-button:hover {
	 background-color    :    #2980b9;
  transform: translateY(-3px); 
	
}
/* Layout styles */


.contact-section {
    max-width    :     800px;
    margin: 4rem auto;
   padding: 2rem;
}

.contact-section h2 {
    font-size: 2.5rem;
  text-align:      center;
    margin-bottom: 2rem;
  color: #1a252f;
}

/* Experimental feature */

.contact-form     {
  background: white;
	padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	 margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
 margin-bottom: 0.5rem;
   color: #2c3e50;
	 font-weight: 600;
  font-size: 0.95rem;
	}
	/* Browser compatibility */
	/* TODO: optimize for mobile */

.form-group input,
.form-group select,
.form-group textarea 
 {
      width: 100%;

  padding: 0.75rem;

    border: 2px solid #ecf0f1;

    border-radius: 5px;

         font-size: 1rem;

    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;
	background-color: #f8fbff;}

/* Generated styles */

.submit-button {
    width: 100%;
 padding     :      1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   border: none;
  border-radius   :5px;
   font-size: 1rem;
               font-weight: 600;
  cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);

}

/* Temporary fix */


/* State modifiers */

.footer
{
    background-color: #1a252f;
  color: white;
    margin-top: 3rem;
}

.footer-container {
   max-width: 1200px;
    margin: 0 auto;
  padding: 3rem 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :  2rem;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-links h3 {
		margin-bottom     :        1rem;
    font-size: 1.1rem;
}

.address {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}



.phone {
   margin-top: 1rem;
      font-weight: 500;
}  

.footer-links ul {
  list-style: none;
}

.footer-links li {
      margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bdc3c7;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #3498db;
}

.footer-bottom {
	color: #95a5a6;
   border-top: 1px solid #34495e;
   text-align: center;
                    padding: 1.5rem 2rem;


}
@media (max-width: 768px) {
    .services-intro h2,
    .conference-section h2,
    .contact-section h2,
    .cta-booking h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
   padding: 4rem 2rem;
	text-align: center;
    margin-bottom: 3rem;
}

.services-hero-content h1 {
	  font-size: 2.8rem;
  margin-bottom   :       1rem;


}

.services-hero-content p {
    font-size: 1.2rem; 
  opacity: 0.9;

}

.services-container 
 {
   max-width: 1200px;
  margin: 0 auto;
    padding: 2rem;
}

.service-detail {
   display:     grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
               margin-bottom    :        4rem;
   align-items:    center;
}

.service-detail-reverse {
    grid-template-columns: 1fr 1fr;
		 direction: rtl;
}

.service-detail-reverse > * {
		direction: ltr;

}

.service-detail-image {
   overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
  height     :    auto;
	 display: block;
}

.service-detail-content h2 {
      font-size     :        2rem;
     color: #1a252f;
	margin-bottom: 1rem;
     }

.service-detail-content p {
    color :  #555;
   font-size: 1rem;
          line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
   font-size: 1.2rem;
          color: #2980b9;
	margin     :       1.5rem 0 0.75rem 0;
}

.service-skills {
  list-style: none;
    margin-bottom: 1.5rem;
}

.service-skills li {
    padding :        0.75rem 0;
	padding-left :   1.5rem;
   position :    relative;
  color: #2c3e50;
          font-weight: 500;
}

.service-skills li::before {
     content: '▸';
   position    :    absolute;
	left: 0;
     color: #3498db;
   font-weight    :   bold;}

.session-info


{
   background-color: #ecf0f1;
     padding: 1rem;
      border-radius: 5px;
     font-size: 0.95rem;
   	color: #34495e;
     margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .service-detail,
    .service-detail-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .service-detail-reverse > * {
        direction: ltr;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }
}.service-comparison {
  background-color: #f8f9fa;
    padding: 3rem 2rem;
  margin: 3rem 0;
}

.service-comparison h2 {
  font-size :        2.2rem;
   text-align: center;
    margin-bottom   :    2rem;
 color     :       #1a252f;
}

.comparison-table {

	   max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.comparison-row {
     display: grid;
  grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #ecf0f1;

}

.comparison-row.header-row {
    color: white;
 background-color: #2c3e50;
}

.comparison-row.alt-row {
          background-color: #f0f4f8;
}

.comparison-cell

{
   padding: 1.25rem;
    text-align   :       left;
      font-weight: 500; 
	
}

.header-cell {
      font-weight: 700;
  color: white;

}

.comparison-row.header-row .header-cell {
   color: white;
}@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-cell {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}.packages-section  {
     max-width: 1200px;
               margin: 4rem auto;
    padding:      2rem;}

.packages-section h2 {
    margin-bottom: 3rem;
	 font-size: 2.2rem;
    text-align: center;
  color:   #1a252f;
}

.packages-grid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;}

.package-card {
 background: white;
  border: 2px solid #ecf0f1;
	 border-radius: 10px;
  padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	 position: relative;
}

.package-card:hover		{
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   border-color: #3498db;
}

.package-card.featured	{
   border-color: #3498db;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.package-badge {
    position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3498db;
    color: white;
   padding: 0.5rem 1rem;
         border-radius: 20px;
   font-weight: 600;
   font-size: 0.85rem;
}

.package-card h3 {
  font-size :  1.5rem;
	color: #1a252f;
   margin-bottom: 0.5rem;


}

.package-price {
  font-size: 1.2rem;
	   color: #3498db;
		 font-weight: 700;
	   margin-bottom: 1.5rem;
}

.package-features {
	 list-style: none;
    margin-bottom  :  2rem;
   text-align: left;
}

.package-features li {
    padding: 0.75rem 0; 
		padding-left     :      1.5rem; 
	    position: relative; 
	   color: #555;
	
}

.package-features li::before {
    left: 0;
  color: #2ecc71;
  font-weight  :bold;
  content: '✓';
  position: absolute;
    font-size: 1.2rem;
}


.package-cta {
   display: inline-block;
  padding: 0.9rem 2rem;
	 background-color: #3498db;
   color   :  white;
	text-decoration: none;
  border-radius   :     5px;
          font-weight: 600;
    transition   :   background-color 0.3s ease, transform 0.3s ease;

}

.package-cta:hover {

    background-color     :    #2980b9;
  transform: translateY(-2px);
     }

.package-card.featured .premium-cta {
    background-color: #2ecc71;
}

.package-card.featured .premium-cta:hover {
   background-color: #27ae60;
}@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }
}.faq-section {
   margin: 3rem 0;
          background-color: #f8f9fa;
  padding   :3rem 2rem; 
	
}

.faq-section h2 {
  font-size: 2.2rem;
    text-align: center;
 margin-bottom: 2rem;
    color: #1a252f;
}

.faq-container {
    max-width: 900px;
  margin: 0 auto;
}

.faq-item {
    background: white;
                    margin-bottom: 1rem;
    border-radius:     8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: box-shadow 0.3s ease;
}

.faq-item:hover {

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
     }

.faq-question {
    padding:     1.5rem;
    color: #1a252f;
   font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
  display: flex;
   justify-content: space-between;
   align-items   :       center;
   background-color     :      #f8f9fa;
    font-weight: 600;
}

.faq-question::after {

  content: '+';
                    font-size: 1.5rem;
  color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	  transform: rotate(45deg);
}

.faq-answer {
	  padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
   transition: max-height 0.3s ease, padding 0.3s ease;
   color:     #555;
   line-height: 1.8;


}

.faq-item.active .faq-answer {
	 max-height: 500px;
    padding: 1.5rem;
}@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}.cta-final {
     background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color :      white;
     text-align: center;
  padding: 3rem 2rem;
   margin: 3rem 0;}

.cta-final h2 {
  font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-final p {
     max-width :        600px;
    font-size: 1.1rem;
    margin-right: auto;
    margin-bottom    :       2rem;
  margin-left: auto;
                    opacity: 0.95;
	}

/* Hack for old browsers */

.final-cta-button {
  display: inline-block;
    padding  :     1rem 2.5rem;
	background-color: #3498db;
    color: white;
   text-decoration  :none;
        border-radius: 50px;
    font-weight: 600;
    transition  : background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
	/* NOTE: keep for legacy support */
.final-cta-button:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.thankyou-container {

	    max-width: 700px;
    margin: 4rem auto;
    padding: 2rem;
     }

/* Typography */
	/* Layout styles */


.thankyou-content {
    background: white;
    padding: 3rem 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   text-align  :        center;
}

.thankyou-icon {
	 margin-bottom: 2rem;
}

.success-icon
	{
    width: 80px;
    height: 80px;
   stroke: #2ecc71;
  filter: drop-shadow(0 2px 8px rgba(46, 204, 113, 0.3));
}

.thankyou-content h1 {
	font-size: 2.2rem;
    color: #1a252f;
  margin-bottom: 1rem;
}

.thankyou-message {
	    font-size: 1.1rem;
    color: #555;
   margin-bottom: 2rem;
                    line-height   :   1.8;
     }

.thankyou-details {
   background-color: #ecf0f1;
    padding:2rem;
  border-radius: 8px;
   margin-bottom: 2rem;
	text-align: left;
}

.thankyou-details h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.next-steps {
     list-style: none;
   counter-reset: step-counter;
     }

.next-steps li {
    counter-increment: step-counter;
	padding: 0.75rem 0;
   padding-left: 2.5rem;
  position: relative;
   color: #2c3e50;
      font-weight: 500;
}

.next-steps li::before {
  content: counter(step-counter);
    position: absolute;
   left: 0;
	width: 30px;
    height: 30px;
   background-color: #3498db;
   color: white;
   border-radius    :50%;
  display: flex;
   align-items: center;
   justify-content: center;
	font-weight: 700;
}

.thankyou-info-box {
   background-color: #f0f8ff;
    padding: 1.5rem;
   border-radius: 8px;
  border-left: 4px solid #3498db;
    margin-bottom: 2rem;
}

.thankyou-info-box h3 {
     color: #2980b9; 
	    margin-bottom: 0.5rem;}

.thankyou-info-box p {
   color: #555;
   margin-bottom : 1rem;
}

.back-to-home {
    background-color: #3498db;
    text-decoration: none;
  font-weight  :600;
   transition: background-color 0.3s ease;
  color: white;
    padding    : 0.75rem 1.5rem;
	display: inline-block;
   border-radius: 5px;
}

.back-to-home:hover {
    background-color: #2980b9;
}

.related-services {
    background-color : #f8f9fa;
   padding: 3rem 2rem;
}

.related-services h2
	{
    font-size: 2rem;
  text-align: center;
   margin-bottom: 2rem;
  color: #1a252f;
}
/* Typography */
	/* NOTE: keep for legacy support */


.related-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
                    max-width:   1000px;
       margin: 0 auto;
     }

.related-card {
  background: white;
   padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover


{
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}  

.related-card h3 {
    color: #2980b9; 
   margin-bottom    :       0.75rem; 
    font-size: 1.2rem;


}

.related-card p {
   color     :      #555;
	margin-bottom:   1rem;
    font-size: 0.95rem;
  line-height     :    1.6;
}

.related-card a  {
   color: #3498db;
   text-decoration: none;
    font-weight: 600;
   transition: color 0.3s ease;
} 

.related-card a:hover     {
   color: #2980b9;
}
@media (max-width: 768px) {
    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.6rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}.policySection {


  padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 400px);}



.policyContainer  {
    max-width :      850px;
  margin: 0 auto;
    text-align: left;
    background:        white;
    padding     :        3rem;
        border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
                    font-size: 2.8rem;
  color: #1a252f;
         margin-bottom: 2rem;
   font-weight: 700;
   border-bottom: 3px solid #3498db;
   padding-bottom: 1rem;
}

.policyContainer h2	{
      font-size:      1.6rem;
  color    :  #2c3e50;
   margin-top: 2rem;
  margin-bottom: 1rem;
        font-weight: 600;
  position: relative;
	padding-left  :  0;
}

.policyContainer h2::before {
	  content: '';
  position: absolute;
    left: 0;
   top: 50%;
  transform: translateY(-50%);
    width   :       4px;
  height: 24px;
      background-color: #3498db;
	 border-radius: 2px;
   margin-right: 1rem;
}

.policyContainer p {
  font-size: 1.05rem;
   line-height: 1.85;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policyContainer p:first-of-type {


  font-size: 1.1rem;
   color:  #34495e;
  font-weight:500;}

.policyContainer a {
  color: #3498db;
  transition: color 0.3s ease;
    text-decoration: none;
    border-bottom   :  1px dotted #3498db;
}

.policyContainer a:hover
	{
  color: #2980b9;
	 border-bottom: 1px solid #2980b9;
}

.policyContainer ul,
.policyContainer ol {
   margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.policyContainer li {
    color: #555; 
    margin-bottom: 0.75rem; 
   line-height: 1.8;
}


.policyContainer .highlight-box     {
       background-color: #e8f4f8;
   padding: 1.5rem;
               border-left: 4px solid #3498db;
  border-radius: 5px;
      margin: 2rem 0;


}

.policyContainer .highlight-box strong 
 {
    color: #2980b9;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer h2::before {
        height: 20px;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.75;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.5rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policyContainer h2::before {
        width: 3px;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1 {
        page-break-after: avoid;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }
}.policyContainer h1,
.policyContainer h2 {
   letter-spacing: 0.5px;
}

.policyContainer a:focus {
         outline: 2px solid #3498db;
    outline-offset: 2px;
   border-radius: 2px; 

}