:root {
    --primary-color: #2563eb;
    --secondary-color: #f1f5f9;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --success-color: #10b981;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
    padding: 0;
       box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white); 
	
}

.container 
 {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.main_menu {
  background: var(--white);
  box-shadow: var(--shadow);
    position: fixed;
	top: 0;
  left: 0;
	right: 0;
    z-index: 1000;
}

.navbar {


    display:       flex;
    justify-content: space-between;
    align-items     :    center;
  padding: 15px 0;
    position: relative;
	}

.navbar-brand img {
    height: 40px;
    width: auto;
	}

.nav-toggle {

	    display: none;
     }

.nav-toggle-label {
  display: none;
}

.hamburger {
    width   :      30px;
   height: 3px;
  background: var(--text-color);
    position: relative;
  transition: var(--transition);
}

.hamburger:before,
.hamburger:after	{
  content: '';
  position: absolute;
   width: 30px;
	 height     :       3px;
  background: var(--text-color);
  transition: var(--transition);
}

.hamburger:before {
   top: -8px;
	
}

.hamburger:after {
   top: 8px;
}

.navbar-nav {
  display: flex;
  list-style: none;
                    gap: 30px;
  align-items : center;
}

.nav-item		{
    list-style: none;
}

.nav-link {
  color: var(--text-color);
	text-decoration: none;
   font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
	 padding : 8px 16px;
  border-radius: var(--border-radius);
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--gray-100);
}@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 20px;
        font-size: 18px;
        color: var(--text-color);
        width: 100%;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}main 
 {
          margin-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 100px 0;
  min-height: 80vh;
   display: flex;
   align-items: center;
}



.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
  font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
   gap: 20px;
     flex-wrap: wrap;
}

.btn {
   display: inline-block;
    padding: 14px 28px;
  border-radius: var(--border-radius);
  text-decoration    :    none;
   font-weight: 600;
  transition: var(--transition);
    cursor   :     pointer;
    border: 2px solid transparent;
   font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}



.btn-primary:hover {
  background-color     :       #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);

}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline {
    background-color: transparent;
  color: var(--text-color);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.btn-large {
	padding: 18px 36px;
    font-size: 18px;
}

.hero-image img {
   width: 100%;
   height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.services-section,
.about-preview,
.methodology-section,
.benefits-section {
  padding: 100px 0;
}

.services-section    {
  background-color: var(--gray-100);
}

.services-section h2,
.about-preview h2,
.methodology-section h2,
.benefits-section h2 {

   text-align: center;
    font-size: 2.5rem;
  font-weight: 700;
  margin-bottom    :      60px;
  color: var(--text-color);
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap     :    40px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
   text-align: center;
  transition: var(--transition);

}

.service-card:hover {
  transform: translateY(-5px); 
  box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
  height: 200px;
   object-fit: cover;
  border-radius: var(--border-radius);
	margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
  color: var(--text-color);
	}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.about-content {
    display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2	{
 text-align: left;
  margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
  color: var(--text-light);
      margin-bottom: 20px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.methodology-section {
  background-color: var(--gray-100); 
	

}

.methodology-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:    40px;
}

.step    {
        text-align: center;
  padding: 30px 20px;
}

.step-number {
  display: inline-block;
   width: 60px;
          height:  60px;
  background-color: var(--primary-color);
  color: var(--white);
   border-radius: 50%;
   font-size: 1.5rem;
      font-weight: 700;
  line-height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 15px;
  color: var(--text-color);
}

.step p 
 {
  color: var(--text-light); 
	     line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}



.benefit-item  
  {
   padding: 30px;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}



.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.benefit-item p {
  color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;

}

.cta-content h2 {
    font-weight: 700;
    font-size: 2.5rem;
  margin-bottom  :   20px;
}

.cta-content p {
  font-size :    1.25rem;
  margin-bottom :       40px;
   opacity: 0.9;
}

.cta-section .btn-primary
{
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

.contact-section {
	   padding   :        100px 0;
  background-color: var(--gray-100);


}

.contact-section h2  
  {
    text-align: center; 
	   font-size: 2.5rem; 
		font-weight: 700; 
	   margin-bottom: 60px; 
	  color: var(--text-color);
}

.contact-content {
         display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 60px;
}

.contact-form {
  background: var(--white);
  padding :40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
} 

.form-group label {
   display: block;
	margin-bottom: 8px;
		 font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
   font-size: 16px;
  transition: var(--transition);
  background-color: var(--white);



}

.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(37, 99, 235, 0.1);
}

.form-group textarea {
   resize:        vertical;

	 min-height: 120px;
}

.contact-info {
  background: var(--white);
   padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
               height: fit-content;
}

.contact-info h3 {
   font-size: 1.5rem;
    font-weight: 600;
  margin-bottom    :       30px;
  color: var(--text-color);
}

.contact-item {
   margin-bottom: 25px; 
	
}

.contact-item strong {

    display: block;
    margin-bottom: 5px;
  color: var(--text-color);}

.contact-item p {
  color: var(--text-light);
     line-height: 1.6;
}

.main-footer {
  background-color: var(--gray-800);
  color: var(--white);
    padding     : 60px 0 20px;
}

.footer-content {

	  display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 40px;
    margin-bottom: 40px; 
	
	}

.footer-brand img {
    margin-bottom: 20px;
    height: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
}

.footer-info h4,
.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom:    20px;
  color: var(--white);
}

.footer-info p {
	  color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  margin-bottom  :      10px;


     }  

.footer-links ul   {
    list-style: none;
}

.footer-links li   {
	  margin-bottom: 10px;


}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {


  color: var(--white);
	}

.footer-bottom {

  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   text-align: center;
	}

.footer-bottom p {
	  color: rgba(255, 255, 255, 0.6);


}  @media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .service-card,
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    section h2 {
        font-size: 1.75rem !important;
    }
}button[type="submit"] {
   background: none;
    border: none;
   font-family: inherit;
}

.smooth-scroll {
    scroll-behavior: smooth;
} 

.company-story,
.mission-vision,
.values-section,
.approach-section,
.achievements-section {
   padding: 100px 0;
}

.company-story {
  background-color: var(--white);
}

.mission-vision {
  background-color: var(--gray-100);
}

.values-section {
  background-color: var(--white);
}

.approach-section {
  background-color: var(--gray-100);
}

.achievements-section {
  background-color: var(--white);
}  

.story-content,
.approach-content {
   display :      grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.story-text,
.approach-text {
    line-height   :      1.7;
}

.story-text p,
.approach-text p {
    font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 25px;
	
}

.story-image img,
.approach-image img {
               width   :    100%;
    height    :     auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.mission-content {
  grid-template-columns: 1fr 1fr; 
  display: grid; 
    gap: 60px;
}

.mission-item {
  background: var(--white);
  padding:    40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
    text-align: center;
}

.mission-item h3 {
 font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 20px;
  color: var(--text-color);
}

.mission-item p {
  color: var(--text-light);
   line-height: 1.7;
  font-size: 1.1rem;
}

.values-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

   gap: 30px;
}

.value-item {
	 padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
    text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-item h3 {
  font-size: 1.25rem;
   font-weight: 600;
    margin-bottom: 15px;
  color: var(--text-color);
}

.value-item p

{
  color: var(--text-light);
  line-height: 1.6;
} 

.approach-list  {
   margin: 30px 0;
   padding-left: 0;
  list-style: none;
}

.approach-list li {
    margin-bottom: 20px;
         padding-left   :30px;
        position: relative;
  color: var(--text-light);
  line-height:1.6;
}

.approach-list li:before {
  content: '✓';
   position: absolute;
  left: 0;
       top: 0;
  color: var(--primary-color);
   font-weight: bold;
  font-size: 1.2rem;
}

.approach-list strong {
  color: var(--text-color);
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap    :     40px;
}

.achievement-item {


  text-align: center;
	padding: 40px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
	}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.achievement-number {
	  font-size: 3rem;
  font-weight: 700;
   margin-bottom: 10px;
  display: block;
}

.achievement-item h3 {
    font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.achievement-item p {
    opacity: 0.9;
    line-height: 1.5;
}@media (max-width: 768px) {
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .achievement-item {
        padding: 30px 15px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
}.thankyou-section  
  {
    padding: 120px 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    min-height: 80vh;
    display: flex;
  align-items: center;


}

.thankyou-content {
	text-align: center;
  max-width: 800px;
        margin:  0 auto;
}

.thankyou-icon {
  margin-bottom:     40px;
}

.success-checkmark {
       width: 80px;
    height:      80px;
        border-radius: 50%;
    display: block;
          stroke-width   : 2;
  stroke: var(--success-color);
    stroke-miterlimit: 10;
    margin: 0 auto 20px;
  box-shadow: inset 0px 0px 0px var(--success-color);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position: relative;}

.success-checkmark .check-icon  {
    width: 56px;
   height: 56px;
   position: absolute;
  left  :       12px;
    top   :  12px;
  z-index: 1;
     border-radius: 50%;
  background: var(--success-color);
}

.success-checkmark .check-icon:after{
  content: '';
    width: 16px;
    height: 24px;
   position: absolute;
  left: 20px;
	top: 12px;
  border: 3px solid var(--white);
   border-left: 0;
    border-top: 0;
  transform: rotate(45deg);
}

.thankyou-content h1 {
    font-size: 2.5rem;
         font-weight: 700;
  color: var(--text-color);
   margin-bottom: 20px;
	} 

.thankyou-message

{
	font-size: 1.25rem;
  color: var(--text-light);
   line-height: 1.6;
    margin-bottom: 60px;
}

.next-steps {
  margin-bottom    :    60px;
}

.next-steps h2 {
   font-size: 2rem;
    font-weight: 600;
  color: var(--text-color);
   margin-bottom     :40px;
}

.steps-grid {
    display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
   margin-bottom   :40px;
}

.step-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-item .step-number {
      display: inline-block;
  width: 40px;
   height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
    border-radius: 50%;
   font-size: 1.2rem;
  font-weight: 700;
   line-height: 40px;
    margin-bottom:    15px;

}

.step-item h3 {
    font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-color);
   margin-bottom   :    10px;
}

.step-item p {
  color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.helpful-links 
 {
   margin-bottom: 60px;
}

.helpful-links h2 {
  font-size:       1.75rem;
   font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px; 
	
}

.helpful-links > p     {
   font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom     :        30px;
}

.links-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 20px;

}

.info-link {
  display   :    block;
  background: var(--white);
   padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.info-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.info-link h3  {
      font-size: 1.125rem;

	  font-weight: 600;

	  color: var(--text-color);

	   margin-bottom: 8px;
}

.info-link p {
  color: var(--text-light);
   line-height: 1.5;
   font-size: 0.95rem;
}

.contact-reminder {
  background: var(--white);
   padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom :  40px;
	
}


.contact-reminder h3 {
   font-size:  1.25rem;

  font-weight: 600;

  color: var(--text-color);

   margin-bottom:  15px;
}

.contact-reminder > p  
  {
  color: var(--text-light);
  margin-bottom: 15px;
}

.contact-phone,
.contact-address {
  color: var(--text-light);
   margin-bottom   : 10px !important;
}

.contact-phone strong,
.contact-address strong {
  color: var(--text-color);
}

.action-buttons
{
         display: flex;
	gap: 20px;
   justify-content: center;
      flex-wrap    :     wrap;
}@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px var(--success-color);
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@media (max-width: 768px) {
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}.policy-section {
  padding: 120px 0;
  background-color: var(--gray-100);
}

.policy-content   {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.policy-content h1 {
	font-size: 2.5rem;
   font-weight: 700;
  color: var(--text-color);
   margin-bottom: 20px;
    text-align: center;
}

.policy-intro {
    font-size: 1.2rem;
  color: var(--text-light);
    line-height: 1.7;
    margin-bottom:     50px;
  text-align: center;
     font-style   :       italic;
}

.policy-section-item {
    margin-bottom:    40px;
}

.policy-section-item h2 {
   font-size: 1.75rem;
   font-weight: 600;
  color: var(--text-color);
   margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.policy-section-item h3 {


   font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
   margin: 25px 0 15px 0; 
	
}

.policy-section-item p  
  {


    font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
    margin-bottom: 15px; 
	


}

.policy-section-item ul.privacy-list {
	    margin: 20px 0;
   padding-left: 0;
    list-style: none;
     }


.policy-section-item ul.privacy-list li {
   margin-bottom: 10px;
   padding-left    :     25px;
  position: relative;
  color: var(--text-light);
    line-height: 1.6;
}

.policy-section-item ul.privacy-list li:before {
  content: '•';
   position: absolute;
  left: 0;
	top: 0;
  color: var(--primary-color);
   font-weight: bold;
   font-size: 1.2rem;
}

.policy-date {
	font-style: italic;
  color: var(--text-light);
	font-size: 0.9rem;
	 margin-top: 30px;
  text-align: center;
}@media (max-width: 768px) {
    .policy-content {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-intro {
        font-size: 1.1rem;
    }

    .policy-section-item h2 {
        font-size: 1.5rem;
    }

    .policy-section-item h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .policy-content h1 {
        font-size: 1.75rem;
    }

    .policy-section-item h2 {
        font-size: 1.375rem;
    }
}