*   {
    margin: 0;
    padding: 0;
    box-sizing  :  border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0f766e;
    --accent-color: #dc2626;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #16a34a;
}

html {
	scroll-behavior:     smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height     :   1.6;
  color: var(--text-dark);
 background-color :     #ffffff;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      padding: 0;
   	 position: sticky;
       top    :       0;
     z-index :     1000;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container  
  {
  margin: 0 auto;
	 align-items: center;
   max-width: 1200px;
  display: flex;
         height: 70px;
  justify-content: space-between;
   padding    :        0 20px;
}

/* Browser compatibility */

.nav-logo-section {
    flex-shrink: 0;
}

.nav-logo {


  height: 50px;

  width    :     auto;

  filter: brightness(0) invert(1);

}

.burger-menu {
   display: none;
    flex-direction: column;
	background: none;
    border: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu span {
   width:     25px;
   height :  3px;
  background-color    :      white;
  margin: 5px 0;
   transition: 0.3s;
    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 {

		 list-style: none;
  display:     flex;
    gap: 30px;
   align-items: center; 
	
     }

.nav-link {
  font-weight: 500;
  color: white;
     position: relative;
    transition: 0.3s;
  text-decoration: none;
}

.nav-link:hover {
  color : #fbbf24;
}

/* Production ready */

.nav-link::after {
  content: '';
 position: absolute;
   width: 0;
   height: 2px;
  bottom: -5px;
    left: 0;
    background-color :        #fbbf24;
               transition: width 0.3s;
}

.nav-link:hover::after {
   width: 100%;
}

.hero-section {

	   margin: 0 auto;
    gap: 40px;
   align-items: center;
   max-width: 1200px;
   grid-template-columns: 1fr 1fr;
   padding: 80px 20px;
      display    :      grid;
     }

.hero-content h1 {
    font-size: 3.5rem;
  color: var(--primary-color);
   margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size    :       1.1rem;
  color: var(--text-light);
	margin-bottom: 30px;
  line-height: 1.8;
}

.cta-button {
  display   :inline-block;
  background: linear-gradient(135deg, var(--accent-color) 0%, #991b1b 100%);
  color: white;
   padding: 15px 40px;
   text-decoration :      none;
  border-radius: 50px;
       font-weight: 600;
  transition   :    0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.hero-image {
    overflow    :      hidden;
  border-radius: 15px;
}

/* Cross-browser fix */

.hero-image img {
   width    :    100%;
    height: auto;
   display: block;
  border-radius: 15px;
   transition: 0.3s;
}

.hero-image:hover img {
  transform: scale(1.05);}

.section-header {
    text-align: center;
   margin-bottom: 60px;
}

.section-header h2		{
          font-size: 2.8rem;
  color: var(--primary-color);
	margin-bottom: 15px;

}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.services-overview {
    max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
  background: var(--light-bg);
}

.services-grid {

   display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:      30px;
     }

.service-card {


    background  :      white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: 0.3s;
  border: 1px solid var(--border-color);


}

.service-card:hover		{
     transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	}

.service-card img {
          width: 100%;
    height :  250px;
   object-fit    :     cover;
}
/* Experimental feature */


	/* Build system output */


.service-card h3 {

  color: var(--primary-color);
    font-size: 1.5rem;
    padding: 20px 20px 10px;}

.service-card p {

  color: var(--text-light);
  padding: 0 20px 20px;
  line-height: 1.7;}

.investor-relations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.investor-content {

		 align-items: center;
    grid-template-columns     :   1fr 1fr;
   display: grid;
    gap    :     40px;


}

.investor-content h2 {
   font-size  :  2.8rem;
  color: var(--primary-color);
        margin-bottom: 20px;
}

.investor-content p {
    font-size: 1.1rem;
  color: var(--text-light);
    line-height: 1.8;
   margin-bottom: 20px;
}

.investor-content img   {
         width: 100%;
	   border-radius: 15px;
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
	
}

.conference-section     {
	  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
   padding: 80px 20px;
  margin    :        0;}

.conference-header {
   max-width: 1200px;
  margin: 0 auto 60px;
    text-align: center;
	
}

.conference-header h2	{


  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.conference-header p {
    font-size: 1.1rem;
  color: var(--text-light);
     }

.conference-grid {
  max-width: 1200px;
          margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
/* Hack for old browsers */

/* Temporary fix */


.conference-item {
     background: white;
	padding   :      40px;
    border-radius :12px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
         transition: 0.3s;

}

.conference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.conference-item h3 {
  color: var(--secondary-color);
   font-size  :      1.4rem;
  margin-bottom: 15px;
}

/* Generated styles */

.conference-item p {

  color: var(--text-light);
    line-height: 1.7;
	}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   padding: 80px 20px;
    text-align: center;
}

.cta-wrapper {

	    max-width: 800px;
    margin: 0 auto;


}

.cta-wrapper h2
	{
    font-size: 2.5rem;
  margin-bottom: 15px;
     color: white;
}

/* Experimental feature */

.cta-wrapper p {
   font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
 margin-bottom     :  30px;
}

.cta-button-large {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
   font-size: 1.1rem;
   transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section {
  max-width: 800px;
	 margin: 0 auto;
    padding: 80px 20px;
  background: var(--light-bg);
}

.contact-container h2	{

		 font-size    :      2.5rem;
  color: var(--primary-color);
    margin-bottom: 40px;
  text-align: center;
	}

.contact-form {
   background: white;
   padding: 40px;
    border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-group {

	         margin-bottom: 25px;}

.form-group label {


   display: block;
	 margin-bottom: 8px;
  color: var(--primary-color);
  font-weight:  600;
	}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding :    12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
   font-size: 1rem;
   font-family: inherit;
	transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	  outline:   none; 
	  border-color: var(--primary-color); 
	  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
	}

.form-group textarea {
	  resize: vertical;
         min-height: 120px;}

.submit-button

{

		width: 100%;
          padding   :  14px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #991b1b 100%);
   color   :  white;
   border   :     none;
    border-radius: 8px;
               font-size: 1.1rem;
  font-weight: 700;
   cursor: pointer;
  transition: 0.3s;


}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.footer  {

	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color:     white;
    padding : 60px 20px 20px;
  margin-top     :    0;

}

.footer-container {
        max-width     :  1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* State modifiers */

.footer-section h3 {

		margin-bottom: 15px;
    font-size: 1.1rem;
}


.footer-section p{
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-logo {
    height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
} 

.footer-links {
   list-style    :       none;
}

/* Utility classes */

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
	  color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
  transition: 0.3s;
     }

.footer-links a:hover {
  color: #fbbf24;
}



.footer-bottom


{
    text-align: center;
        padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .investor-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card img {
        height: 200px;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
    }
}.services-hero {


  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
				 color: white;
	 padding: 80px 20px;
    text-align: center;}

.services-hero-content {
  max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
   font-size: 3rem;
  margin-bottom: 20px;

}

.services-hero-content p {
  font-size: 1.2rem;
    opacity: 0.95;
}



.services-detailed {
	max-width    :    1100px;
          margin: 0 auto;
   padding: 80px 20px;
}

.services-container {
 display  :   flex;
   flex-direction  :     column;
    gap: 80px;
}

.service-detail-card {


    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
               align-items     :   center;


}



.service-detail-card.alternate {
    direction: rtl;
}

.service-detail-card.alternate > *	{
    direction :ltr; 

}

.service-detail-image {
    overflow:  hidden;
    border-radius: 15px;
}

.service-detail-image img {
  width: 100%;
    height: 400px;
   object-fit: cover;
   border-radius: 15px;
    transition: 0.3s;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
	font-size: 2.2rem;
	  color: var(--primary-color);
	    margin-bottom: 20px;
	
}

.service-detail-content p {
  color: var(--text-light);
  font-size  :       1.05rem;
   line-height: 1.8;
         margin-bottom: 25px;
}

.service-features {
    list-style: none; 
   margin: 25px 0;
}

.service-features li {
    padding   :      12px 0;
   padding-left: 30px;
    position: relative;
  color: var(--text-dark);
}

.service-features li:before {
  content: '✓';
   position: absolute;
        left: 0;
  color: var(--success-color);
   font-weight: bold;
   font-size: 1.3rem;

}

.service-duration  
  {


  background: var(--light-bg);
  padding: 15px 20px;
	border-radius     : 8px;
  color: var(--secondary-color);
          font-weight: 600;
  border-left: 4px solid var(--secondary-color);
}

.pricing-section {
  background: var(--light-bg);
	padding: 80px 20px;
}

.pricing-section h2 {
       text-align   :center;
   font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom    :     60px;

}

.pricing-grid {
  max-width: 1200px;
      margin: 0 auto;
    display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		 gap     :     30px;
}

.pricing-card {
  background: white;
  padding: 40px;
   border-radius: 12px;
  border: 2px solid var(--border-color);
   transition:       0.3s;
   position   :       relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.featured-badge {
       position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
   color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
    font-size: 0.9rem;
     }

.pricing-card h3 {
    font-size   :       1.5rem;
  color: var(--primary-color);
                    margin-bottom: 15px;
}

.pricing-amount {
				 font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight  :   bold;
    margin: 15px 0;
}  

.pricing-period {
  color: var(--text-light);
    margin-bottom: 25px;
  font-size  :        0.95rem; 
	
}

.pricing-features {
	list-style: none;
   margin     :25px 0;
	
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 25px;
	position     :       relative;
  color: var(--text-dark);
}

.pricing-features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
    font-size: 1.5rem;
}

.pricing-button {
    width: 100%;
   padding: 14px;
  background: var(--light-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
   margin-top: 25px;
}

.pricing-button:hover {
  background: var(--primary-color);
                    color: white;
	}

.pricing-button.primary {
  background: var(--accent-color); 
   color: white; 
  border-color: var(--accent-color);
}

.pricing-button.primary:hover {
    background: #991b1b;
}

.why-choose-us
{
   max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
}

.why-container h2 {
	text-align: center; 
	   font-size: 2.8rem; 
	  color: var(--primary-color); 
		margin-bottom: 60px;
}

.why-grid     {
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
     }

.why-item {
	  text-align: center;
   padding :      20px;
	}

.why-item h3 {
	    font-size: 1.4rem;
  color: var(--secondary-color);
	margin-bottom: 15px;

}

.why-item p {

  color: var(--text-light);
    line-height: 1.8;
	
	}

.testimonials-section
{
  background: var(--light-bg);
    padding   :80px 20px;
}

.testimonials-section h2 {
   text-align: center;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;


}

.testimonial-card {
   background: white;

   padding: 35px;

  border-radius: 12px;

  border-left: 4px solid var(--accent-color);

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

   transition: 0.3s;
}  

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
     transform: translateY(-5px);
}

.testimonial-text {


  color: var(--text-dark);
	font-size: 1.05rem;
    line-height   : 1.8;
    margin-bottom  : 25px;
  font-style   :        italic;}


.testimonial-author	{


  border-top: 1px solid var(--border-color);
	   padding-top :15px;

     }

.author-name	{
   font-weight: 700;
  color: var(--primary-color);
          margin-bottom: 5px;
}

.author-title {
  color: var(--text-light);
    font-size: 0.95rem;
}

.thank-you-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);

		 padding: 80px 20px;

	  min-height: 100vh;
}

.thank-you-container {
   max-width: 800px;
  margin: 0 auto;
}

.thank-you-content		{
	background: white;
   border-radius: 15px;
   padding: 60px 40px;
   text-align   :     center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
  color: var(--success-color);
    margin-bottom: 30px;
	display: inline-block;
}

.thank-you-content h1
	{
  font-size: 2.8rem; 
	  color: var(--primary-color); 
	    margin-bottom    :    15px;
	
}

.thank-you-main {
    font-size: 1.4rem;
  color: var(--success-color);
    font-weight    :    600;
     margin-bottom  : 20px;
	
}

.thank-you-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
   font-size: 1.05rem;
}

.thank-you-info  {
    text-align: left;
  background: var(--light-bg);
  padding: 40px;
   border-radius: 12px;
	margin: 40px 0;
}

.thank-you-info h2 {
  font-size: 1.6rem;
  color: var(--primary-color);
    margin-bottom: 30px;
	text-align: center;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
   align-items: flex-start;
}

.step-number   {
  display: flex;
  align-items: center;
    justify-content: center;
    width :     40px;
   height: 40px;
  background: var(--secondary-color);
	 color: white;
  border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0; 

}

.step-content h3 {
  color: var(--primary-color);
   margin-bottom: 5px;
	
}

.step-content p {
  color: var(--text-light);
     font-size: 0.95rem;
}

.thank-you-actions {
    display: flex;
    gap     :   15px;
   justify-content: center;
				 margin: 40px 0;
   flex-wrap: wrap;
}

.action-button {
    padding   :14px 35px;

	  border-radius: 8px;

	  text-decoration: none;

	    font-weight: 600;

	    transition: 0.3s;

	   display: inline-block;
}

.action-button.primary {
  background: var(--accent-color);
	   color: white;
}

.action-button.primary:hover {
 background: #991b1b;
  transform: translateY(-3px);
}

.action-button.secondary {
  background: var(--light-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
	
}

.action-button.secondary:hover {
  background: var(--primary-color);
    color: white;
	
}

.thank-you-contact {
    margin-top: 40px;
    padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.thank-you-contact p {
  color: var(--text-light);
}

.contact-phone		{
  font-size: 1.5rem;
  color: var(--primary-color);
      font-weight: bold;
   margin: 10px 0;
}

.contact-availability {

	  color: var(--text-light);
   font-size: 0.95rem;


}

.next-steps-section {
	 background: white;
   padding: 80px 20px;
}

.next-steps-container{
    max-width :        1200px;
    margin: 0 auto; 
	
}

.next-steps-container h2 {
   	text-align :        center; 
	    font-size: 2.5rem; 
	  color: var(--primary-color); 
		margin-bottom: 60px;
	}

.next-steps-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap :    30px;
}

.next-step-card {
  background: var(--light-bg);
	padding  :     35px;
    border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.next-step-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     border-color: var(--secondary-color);
}

.next-step-card h3 {
  color: var(--primary-color);
	font-size: 1.3rem;
  margin-bottom: 15px;
}

.next-step-card p {

  color: var(--text-light);
    line-height: 1.7;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-card,
    .service-detail-card.alternate {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .service-detail-card.alternate > * {
        direction: ltr;
    }

    .service-detail-image img {
        height: 300px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .info-list li {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .pricing-section h2,
    .testimonials-section h2,
    .next-steps-container h2,
    .why-container h2 {
        font-size: 1.8rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-main {
        font-size: 1.1rem;
    }

    .thank-you-info {
        padding: 25px;
    }
}.policySection {
   padding: 80px 2rem;
  background: var(--light-bg);
   min-height :        70vh;
}

.policyContainer {

		max-width: 900px;
   margin   :       0 auto;
  text-align: left;
    background     :  white;
	padding: 60px 50px;
    border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
 font-size     :    3rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.policyContainer h2 {
  font-size: 1.8rem;

	  color: var(--primary-color);

	   margin-top: 35px;

	    margin-bottom:15px;

	    font-weight   :       700;

	  line-height:      1.3;
}

.policyContainer p {
  color: var(--text-light);
    margin-bottom: 18px;
  line-height: 1.8;
   font-size: 1.05rem;
   text-align: justify;

}

.policyContainer p strong {
  color: var(--primary-color);
               font-weight: 600;
}

.policyContainer ul {
    margin: 20px 0;
	    padding-left: 30px;
	
}

.policyContainer li {
  color: var(--text-light);
   margin-bottom: 12px;
   line-height: 1.7;
   font-size: 1.05rem;
} @media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        padding: 40px 30px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .policyContainer li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer {
        padding: 30px 20px;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        text-align: left;
        line-height: 1.6;
    }

    .policyContainer li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .policyContainer ul {
        padding-left: 20px;
    }
}