* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
 scroll-behavior: smooth;
	
} 

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	line-height: 1.6;
  color: var(--text-dark);
    background-color:        #fff;
}

.navbar {
  background-color: var(--primary-color);
   padding: 1rem 0;
  position: sticky;
	top: 0;
    z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
     max-width: 1200px;
  margin   :     0 auto;
   padding: 0 2rem;
    display: flex;
    justify-content :       space-between;
 align-items: center;
}

.logo-nav {
    height: 45px;
  width: auto;
  filter: brightness(0) invert(1);


}

.nav-menu {
    gap: 2rem;
   list-style: none;
   display :       flex;
}

.nav-link {
    color: #fff;
  text-decoration: none;
    font-weight   : 500;
  transition: var(--transition);
    position: relative;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
    position  :        absolute;
  bottom: -5px;
    left  :   0;
    width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;}

.nav-link:hover::after {
    width: 100%;}

.burger-menu {
	  display: none;
                       flex-direction: column;
       cursor: pointer;
      background: none;
       border: none;
      gap: 6px;
     }  

.burger-line {
               width  :25px;
    height: 3px;
    background-color  :    #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.hero-section     {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
 color: #fff;
  padding: 120px 2rem;
   text-align     :     center;
  min-height: 600px;
  display: flex;
    align-items   :      center;
         justify-content: center;
}

.hero-content h1 {
   font-size: 3.5rem;
    font-weight   :        700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle


{
	    font-size: 1.5rem;
    margin-bottom: 2rem;
	opacity: 0.95;
	 font-weight: 300;}

.cta-button {
     display: inline-block;
     background-color: var(--accent-color);
       color: #fff;
         padding    :      14px 40px;
   	text-decoration: none;
      border-radius: 5px;
       font-weight: 600;
     transition: var(--transition);
     border: 2px solid var(--accent-color);
     cursor: pointer;
       font-size: 1rem;}

.cta-button:hover {

	  background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
	}

.section-header {


    text-align  :     center;
   margin-bottom: 4rem;
     }

.section-header h2 {
	font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
   font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.services-preview {
  padding  :        80px 2rem;
    max-width: 1200px;
   margin :       0 auto;
}

.services-grid
	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
  background: var(--light-bg);
   border-radius: 8px;
      overflow  :   hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow); 

}

.service-image {
  width: 100%;
    height: 250px;
		object-fit: cover;
   display: block; 

}

.service-card h3 {
                    font-size: 1.4rem;
  color: var(--primary-color);
	 padding   :      1.5rem 1.5rem 0.5rem;
   font-weight: 600;
}

.service-card p {
  color: var(--text-light);
    padding: 0.5rem 1.5rem 1.5rem;
   font-size: 0.95rem;
   line-height: 1.6;
}

.programs-section     {
   padding: 80px 2rem;
  background-color: var(--light-bg);
    max-width     :  1200px;
   margin: 0 auto;
  width: 100%;}

.programs-list {
    display: flex;
  flex-direction   :       column;
   gap    :     4rem;
}

.program-item {
   display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
     align-items: center;
}

.program-item.reverse {

   direction: rtl;
}

.program-item.reverse > * {
               direction: ltr;
}

.program-image {
 width:      100%;
  height  :  350px;
    object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);}

.program-content h3 {
       font-size: 1.8rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
   font-weight :      700;


}

.program-content p
	{
	font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8; 

}

.features-section {
      padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.feature-box {
  padding: 2rem;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
   position: relative; 

}

.feature-box:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-number {
   font-size: 2.5rem;
    font-weight: 700;
  color: var(--secondary-color);
	margin-bottom:      1rem;
	opacity: 0.3;
}

.feature-box h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-box p


{
  color: var(--text-light); 
		font-size: 0.95rem; 
	  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
   color: #fff;
  padding   :        80px 2rem;
    text-align   :     center;
}

.cta-content h2 {
    font-size: 2.5rem;
  font-weight: 700;
   margin-bottom   :  1rem;
}

.cta-content p {
    font-size: 1.1rem;
	margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-large {
          display: inline-block;
  background-color: var(--accent-color);
    color: #fff;
    padding     :   16px 50px;
    text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
    font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
}

.cta-button-large:hover {
    background-color: transparent;
  transform: scale(1.05);
}

.contact-section {
  padding: 80px 2rem;
  max-width: 800px;
	margin: 0 auto; 

}

.contact-form {
     background: var(--light-bg);
   padding: 2.5rem;
	 border-radius  :   8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);}

.form-group {
   margin-bottom: 1.5rem;
}

.form-input,
.form-textarea  {
        width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
	border-radius: 5px;
    font-size: 1rem;
    font-family :     inherit;
  transition: var(--transition);
  color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
				 outline     :      none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
   resize:vertical;


}

.submit-button {
  width: 100%;
   padding: 14px;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
    font-size: 1rem;
    font-weight     : 600;
    cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover		{

	  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);}

.footer {


  background-color: var(--primary-color);
  color: #fff;
       padding: 3rem 2rem 1rem;
}

.footer-content {
                    max-width: 1200px;
  margin: 0 auto;
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap   :    2rem;
  margin-bottom: 2rem;
}

.logo-footer {
   height: 60px;
    width: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
   font-size: 1.1rem;
      margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-section p {
         font-size: 0.95rem; 
   line-height: 1.6; 
	opacity: 0.85;
}

.footer-links {
               list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {

	    color: #fff;
  text-decoration  :    none;
   opacity: 0.8;
  transition: var(--transition);
  font-size     :      0.95rem;
     }

.footer-links a:hover {
    opacity   :   1;
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
	text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        box-shadow: var(--shadow);
    }

    .nav-menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .program-item {
        grid-template-columns: 1fr;
    }

    .program-item.reverse {
        direction: ltr;
    }

    .program-image {
        height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-preview,
    .programs-section,
    .features-section,
    .contact-section {
        padding: 40px 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .program-content h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #fff;
	padding: 100px 2rem;
  text-align: center;
}

.services-hero .hero-content h1 {
   font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1rem;
}

.services-main {
      padding: 80px 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.service-detailed {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
     align-items: center;
    margin-bottom: 5rem; 
	
}

.service-detailed.reverse-layout {
  direction: rtl;
}

.service-detailed.reverse-layout > * {
	direction: ltr;
}

.service-detail-content h3 {
	font-size: 1.8rem;
   color: #2c3e50;
   margin-bottom     :    1.5rem;
  font-weight: 700;
}  

.service-detail-content p		{
	                    font-size: 1rem;
   color: #555;
    line-height: 1.8;
         margin-bottom: 1.5rem;




}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: #f8f9fa;
    padding: 1.2rem;
  border-radius: 8px;
  border-left:    4px solid #3498db;
}

.highlight-title {
   display: block;
   font-size: 0.85rem;
   color  :      #7f8c8d;
  font-weight: 600;
  margin-bottom: 0.5rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.highlight-value {
	display: block;
   font-size: 1.2rem;
    color: #2c3e50;
  font-weight  :       700;
}

.service-detail-image {


   width: 100%;
  height: 400px;
   object-fit: cover;
    border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}

.services-comparison {
    padding     :     80px 2rem;
    background:  #f8f9fa;
  max-width: 1200px;
    margin: 0 auto;
       width: 100%;
}

.comparison-table {
   overflow-x   : auto;
		margin-top: 2rem;
}

.services-table {
   width: 100%;
    border-collapse: collapse;
	background  :     #fff;
	border-radius: 8px;
   overflow    :      hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-table thead {
    color: #fff;
   background-color:#2c3e50;
}

.services-table th {
    font-weight: 600;
  font-size: 0.95rem;
		 text-align: left;
    padding: 1.2rem;
}

.services-table td {
 padding: 1.2rem;
   border-top: 1px solid #e0e0e0;
    color: #555;
  font-size: 0.95rem;
}

.services-table tbody tr:hover {
    background-color: #f0f7ff;
}

.services-table tbody tr:nth-child(odd) {
		background-color: #f8f9fa; 

}

.process-section {
   padding: 80px 2rem;
               max-width: 1200px;
    margin: 0 auto;

}

.process-steps {
	display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
	   gap: 2rem; 
	         margin-top: 2rem;
}

.step-box {


                    text-align: center;
  padding: 2rem;
  background:#fff;
   border-radius: 8px;
   border: 2px solid #e0e0e0;
   transition :        all 0.3s ease;
	 position: relative;
}  

.step-box:hover {
  border-color   : #3498db;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15); 
	
}

.step-number {
   font-size  : 2.5rem;
    font-weight: 700;
   color: #3498db;
  margin-bottom: 1rem;
   opacity: 0.2;
}

.step-box h3


{
	font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 0.8rem;
   font-weight: 600;
}

.step-box p {
   color: #7f8c8d;
    font-size: 0.95rem;
  line-height: 1.6;
}

.additional-info    {
	  padding    :  80px 2rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
     max-width: 1200px;
       margin: 0 auto;
      width: 100%;

}

.info-content h2 {
   font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
                    margin-bottom: 3rem;
   font-weight: 700; 

}

.info-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;


}

.info-box {
	background: #fff;
  padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.info-box h3 {
   font-size: 1.3rem;
   color:      #2c3e50;
  margin-bottom: 1rem;
    font-weight   :    600;
}

.info-box p {
    color: #7f8c8d;
	 line-height: 1.7;
	  font-size  :     0.95rem;
}

.thankyou-section {
    padding    :  80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  min-height: 800px;
  display: flex;
    align-items:  center;
   justify-content   :  center; 

}

.thankyou-container  {
   background: #fff;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
   max-width: 700px;
    text-align :      center;
}

.success-icon-wrapper {
		margin-bottom: 2rem;
	   display: flex;
	      justify-content     :       center;
}

.success-checkmark {
    color: #2ecc71;
    animation: checkAnimation 0.6s ease-out;
}@keyframes checkAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
    font-size: 2.5rem;
	color   :   #2c3e50;
  margin-bottom: 0.5rem;
    font-weight: 700;
}

.thankyou-title {

	    font-size  :1.3rem;
	color:      #3498db;
    margin-bottom: 2rem;
    font-weight: 600;
}

.thankyou-content {
    margin-bottom  :    2rem;
    padding: 1.5rem;
   background: #f8f9fa;
     border-radius: 8px;
}

.thankyou-content p {
   color: #555;
   font-size :      1rem;
  line-height: 1.8;
	 margin-bottom: 1rem;
}

.thankyou-content p:last-child {
       margin-bottom: 0;
	}

.thankyou-content strong {
   color: #2c3e50;
    font-weight: 700;
}

.next-steps {
     padding: 2rem 0;
   border-top: 2px solid #e0e0e0;
  margin: 3rem 0;
  border-bottom: 2px solid #e0e0e0;}



.next-steps h2 {
     font-size    :       1.5rem;
  color: #2c3e50;
          margin-bottom: 1.5rem;
	font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.step-item {
       text-align: center;
}

.step-circle  
  {
  width  :        50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
  border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content    :   center;
  font-size: 1.5rem;
  font-weight  :       700;
   margin: 0 auto 1rem;
}

.step-item p {
   font-size: 0.9rem; 
	    color: #555; 
	  line-height: 1.5;


}

.contact-reminder {
   margin-top: 2rem;
    padding: 2rem;
  background: #f0f7ff;
  border-radius  :     8px;
   border-left: 4px solid #3498db;
}

.contact-reminder h3 {
   	 font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
   font-weight: 600;
	}

.contact-reminder p {
  color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
   line-height: 1.6;
}

.contact-buttons {
    display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.thankyou-link		{
   display: inline-block;
   padding: 12px 24px;
   text-decoration: none;
  border-radius: 5px;
   font-weight   :        600;
    transition: all 0.3s ease;
	font-size: 0.95rem;
}

.thankyou-link.primary {
       background-color: #3498db;
    color: #fff;
         border: 2px solid #3498db;


}



.thankyou-link.primary:hover {
   background-color    :    transparent;
  color: #3498db;
}


.thankyou-link.secondary {
    border: 2px solid #2c3e50;
   color: #2c3e50;
  background-color: transparent;
}

.thankyou-link.secondary:hover  
  {
    background-color: #2c3e50;
	    color: #fff; 
	
}

.faq-section {
  padding :  80px 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background :       #f8f9fa;
   padding: 2rem;
    border-radius: 8px;
 border-left :4px solid #3498db;
  transition  :     all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);


}

.faq-item h3


{
    font-size: 1.1rem;
    color: #2c3e50;
   margin-bottom: 0.8rem;
               font-weight:   700;
	
}

.faq-item p {
     color     :#555;
    font-size: 0.95rem;
    line-height: 1.7;
	}@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-image {
        height: 300px;
        order: -1;
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 1rem;
    }

    .services-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-main,
    .services-comparison,
    .process-section,
    .additional-info,
    .faq-section {
        padding: 40px 1rem;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .service-detail-content p {
        font-size: 0.9rem;
    }

    .thankyou-section {
        padding: 40px 1rem;
        min-height: auto;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.5rem;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .info-box,
    .faq-item {
        padding: 1.5rem;
    }
}.policySection {
   background: #f8f9fa;
	min-height: 800px;
  padding: 80px 2rem;
}

.policyContainer

{
   max-width: 800px;
  margin: 0 auto;
      text-align: left;
}

.policyContainer h1 {
  font-size: 2.8rem;
         color: #2c3e50;
   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: 700;
	 margin-top   :    2.5rem;

}

.policyContainer h2:first-of-type {
    margin-top: 1rem;
}

.policyContainer p


{
    color: #555;
  margin-bottom: 1.5rem;
	line-height: 1.8;
  font-size: 1rem;
         text-align     :      justify;
}

.policyContainer p:last-of-type  {
                    margin-bottom: 0;
}

.policyContainer h2 {
    padding     :        0.5rem 0;
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid #3498db;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}