* {
    margin   :     0;
    padding: 0;
   box-sizing: border-box;
}

html {
	 scroll-behavior: smooth;
	
}

body     {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
                    color: #2c3e50;
   background-color: #f8f9fa;


}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding  :       0.8rem 0;
	position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
	    max-width:      1200px;
      margin: 0 auto;
     padding: 0 20px;
       display: flex;
   	justify-content: space-between;
       align-items: center;


}

.nav-brand  {
    flex-shrink  :  0;
}

.logo-img {
    height   :      45px;
	 width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
   display: none;
  flex-direction: column;
    background: none;
    border: none;
   cursor: pointer;
        padding    :5px; 

}

.burger-line {
	width: 25px;
   height: 3px;
    background-color: white;
   margin: 5px 0;
   transition: 0.3s ease;
    border-radius: 2px;
}

.nav-menu {


         list-style  :     none; 
  gap: 30px; 
    display: flex;
	}

.nav-link {
    color: white;
    text-decoration: none;
 font-weight  : 500;
   transition: all 0.3s ease;
	position   :       relative;
}

.nav-link::after {
  content: '';
	    position: absolute;
	    bottom: -5px;
	   left: 0;
	   width: 0;
	   height: 2px;
	    background-color: white;
	  transition: width 0.3s ease;
	
}

.nav-link:hover::after {
  width: 100%;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        padding: 20px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
      padding: 100px 20px;
  text-align: center;
   min-height: 500px;
	 display: flex;
    align-items: center;
    justify-content: center;

}

.hero-content h1
{
     font-size: 3.5rem;
  margin-bottom: 20px;
   font-weight: 700;
  line-height: 1.2;

}
	/* Component styles */
/* Generated styles */



/* Generated styles */

.hero-content p {

	  font-size: 1.25rem;
  margin-bottom: 40px;
   opacity: 0.95;
    max-width: 700px;
	margin-left: auto;
  margin-right     :   auto;
     }

.cta-button {
  display: inline-block;
   background-color: #f39c12;
  color     :      white;
    padding: 15px 40px;
    border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
	}

/* NOTE: keep for legacy support */


/* Typography */

/* Minified version */
.cta-button:hover {
    background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 350px;
    }
}.features {
      padding: 80px 20px;
                    background: white;
}

.features-container {
     max-width: 1200px;
    margin: 0 auto;


     }

.features > h2 {

	  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50; 

     }

.features-grid {
   display    : grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap    :     40px;
}

.feature-card {
   background: #f8f9fa;
    padding: 40px;
    border-radius    : 12px;
    text-align: center;
    transition: all 0.3s ease;
   border: 2px solid transparent; 
	
}

.feature-card:hover {
     transform: translateY(-5px);
                    border-color: #667eea;
    background: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);

}

.feature-icon {

	    margin-bottom: 20px;
   height :        60px;
    display: flex;
     justify-content: center;
	align-items: center;}  

.feature-icon img {
    width: 60px;
    height: 60px;
    stroke: #667eea;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.3));
}

.feature-card h3 {
  margin-bottom: 15px;
     font-size: 1.5rem;
   color: #2c3e50;
	
}

.feature-card p{
   color: #7f8c8d;
   line-height: 1.8;
}

.showcase {
   padding    :80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.showcase-container {


	margin: 0 auto;
	max-width: 1200px;}


.showcase > h2 {
   text-align : center;
  color: #2c3e50;
       font-size: 2.5rem;
    margin-bottom:60px;
}

.showcase-grid {
   display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}

.showcase-item {
    background    :white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.showcase-item:hover


{
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showcase-item img {
   width: 100%;
   height: 200px;
    object-fit    :cover;
 transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
	}

.showcase-item h3 {
               font-size: 1.3rem;
	 padding: 20px 20px 10px;
  color: #2c3e50;
}

.showcase-item p {
   padding: 0 20px 20px;
     color: #7f8c8d;
  line-height: 1.6;


}

.services-preview

{
   padding: 80px 20px;
	 background: white;
}

.services-container {


   max-width: 1200px;
  margin: 0 auto; 


}

.services-preview h2 {

	 text-align: center;
   font-size  :    2.5rem;
    margin-bottom: 60px;
  color: #2c3e50;

}

.services-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px; 

}

.service-item {
    padding  :     35px;
    border-left: 4px solid #667eea;
    background: #f8f9fa;
    border-radius: 8px;
	 transition: all 0.3s ease;


}


.service-item:hover {
  background: white;

	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);

	  transform: translateX(5px);
}

.service-item h3
	{
   font-size: 1.4rem;
	 margin-bottom :        15px;
  color: #2c3e50; 

}

.service-item p {
  color: #7f8c8d;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    padding: 80px 20px;
   text-align: center;
}

.cta-container {

  max-width: 900px;
   margin: 0 auto;
	}

.cta-section h2 {
	 font-size: 2.8rem;
    margin-bottom: 20px;

}

.cta-section p
{
       font-size: 1.2rem;
	 margin-bottom: 40px;
    opacity: 0.95;}

.cta-button-large {
     display: inline-block;
   background-color: #f39c12;
    color: white;
   padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);

}

.cta-button-large:hover {
  background-color  :        #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.contact {
  padding    :      80px 20px;
  background: white; 

}

.contact-container {
   max-width: 700px;
  margin :   0 auto;
}

.contact h2 {
    text-align: center;
  font-size :  2.5rem;
     margin-bottom: 50px;
  color: #2c3e50;
}



.contact-form {
   background: #f8f9fa;
        padding: 50px;
       border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
     margin-bottom: 25px;}

.form-group label {
  display: block;
  margin-bottom: 8px;
    font-weight: 600;
    color   :        #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 12px;
  border: 2px solid #e0e0e0;
    border-radius     :        6px;
   font-family: inherit;
   font-size: 1rem;
    transition   :       all 0.3s ease;
                    background: white;
}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color   :   #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
   width    :       100%;
   padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border: none;
    border-radius    :      6px;
    font-size: 1rem;
  font-weight: 600;
   cursor:  pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	}

.submit-btn:hover		{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4); 
	
}

.footer {
  background: #2c3e50;

	color :    white;

    padding  :        60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 50px;
					margin-bottom: 40px;
}

.footer-section h4 {
     margin-bottom :    20px; 
	  font-size: 1.2rem;
}

.footer-logo-img {
	 height    :        40px;

	   width: auto;

	  filter: brightness(0) invert(1);

	  margin-bottom: 15px;
}

.footer-description {
    line-height: 1.8;
    color     : #bdc3c7;
   font-size: 0.95rem;
}

.footer-links {
	list-style: none;

}

.footer-links li {

	  margin-bottom: 12px;}

.footer-links a {
   color: #bdc3c7;
  text-decoration :   none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-address

{

   color: #bdc3c7;
    line-height: 1.8;
          font-size   : 0.95rem;
	margin-bottom: 15px;


} 

.footer-phone {
	 color: #f39c12;
   font-weight: 600;
	}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .features > h2,
    .showcase > h2,
    .services-preview h2,
    .cta-section h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        gap: 30px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	         color: white; 
	         padding: 100px 20px; 
	   text-align: center; 
		min-height: 400px; 
	  display: flex; 
	               align-items: center; 
	   justify-content: center;
}

.services-hero-content h1 {
  font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
  line-height: 1.2;
}

.services-hero-content p {
  margin-right: auto;

    opacity: 0.95;

    max-width: 700px;

  margin-left: auto;

  font-size: 1.2rem;
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.service-details {
	padding: 80px 20px;
   background: white;
}

.service-details-container {
  margin: 0 auto;
  max-width: 1200px;
}

.service-block {
    display   :        grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
    margin-bottom: 80px;}

.service-block-reverse {
          grid-template-columns: 1fr 1fr;
}

.service-block-reverse .service-block-image {
	order: -1;
}


.service-block-content h2   {
   font-size: 2.2rem;
   margin-bottom: 20px;
   color    :       #2c3e50;
}

.service-block-content p {
	 margin-bottom: 20px;
  font-size: 1rem;
  color: #7f8c8d;
   line-height: 1.8;
}

.service-features {
   list-style: none;
               margin: 25px 0;
}

.service-features li {
   padding   :10px 0;
	 padding-left: 30px;
   position: relative;
      color: #2c3e50;
    font-weight: 500;
}

.service-features li::before {
     content: '✓';
  position: absolute;
    left: 0;
  color: #667eea;
    font-weight: bold;
   font-size: 1.2rem;

}

.service-duration,
.service-format
	{
    margin-top: 20px; 
	         padding: 12px; 
	  background: #f8f9fa; 
	  border-left: 4px solid #667eea; 
	  border-radius: 4px; 
	    color: #2c3e50; 
	  font-size: 0.95rem;
}

.service-block-image img{
  width  :  100%;
  height: 300px;
    object-fit  :     cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
	transition  :    transform 0.3s ease;
}

.service-block-image:hover img {
  transform: scale(1.05);
}@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-block-reverse .service-block-image {
        order: 0;
    }

    .service-block-content h2 {
        font-size: 1.8rem;
    }

    .service-block-image img {
        height: 250px;
    }
}.service-packages {

	  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);




}

.packages-container {
    max-width: 1200px;
	   margin: 0 auto;
}



.service-packages h2 
 {
   text-align: center;
    font-size  :   2.5rem;
    margin-bottom     :        60px;
  color: #2c3e50; 
	
}

.packages-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :    40px;
}

.package-card {
    background: white;
   padding: 40px;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
               position: relative;
   transition: all 0.3s ease;
   display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-featured {
	  border: 2px solid #667eea;
  transform: scale(1.05);


}

.package-featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.package-badge   {
   position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
  font-weight: 600;
}

.package-card h3 {


  font-size: 1.6rem;
   margin-bottom: 15px;
    color: #2c3e50;
        margin-top  :        10px; 

	}

.package-price {
  font-size: 1.3rem;
  color    :  #667eea;
  font-weight: 600;
    margin-bottom: 25px;
}

.package-features


{
  list-style: none;
	margin-bottom: 30px;
  flex-grow: 1;
}

.package-features li	{
   padding: 10px 0;
  padding-left: 25px;
  position: relative;
   color: #7f8c8d;
}

.package-features li::before {
  content: '•';
  position: absolute;
	 left: 0;
  color :       #667eea;
    font-size: 1.5rem;
}

.package-btn {
  display: inline-block;
                    padding: 12px 25px;
  border: 2px solid #667eea;
   color: #667eea;
    text-decoration    :      none;
  border-radius: 6px;
  text-align: center;
    transition: all 0.3s ease;
 font-weight: 600;
}

.package-btn:hover {
        background-color: #667eea;
	color: white;
}

.package-btn-primary {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
        border-color: transparent;
}

.package-btn-primary:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}  

.service-process {
    padding: 80px 20px;
   background     :   white; 
	
}

.process-container {
  max-width  :  1200px;
	 margin: 0 auto;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
}

.process-step {
			text-align: center;
  background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
  padding: 30px;
    border-radius: 12px;
}

.process-step:hover {
    background: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.step-number {
  font-size: 3rem;

	    font-weight: 700;

	    color: #667eea;

		 margin-bottom: 15px;
}

.process-step h3 {
   font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;

}

.process-step p {
	   color: #7f8c8d;
    line-height: 1.6;}

.faq-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}

.faq-container {
   max-width: 1200px;
  margin   : 0 auto;


}

.faq-section h2 {
  text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
  color  :#2c3e50;
	
}

.faq-grid{
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

	   gap: 30px;
} 

.faq-item {
	  background: white;
        padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.faq-item h3 {
		font-size: 1.1rem;
   color: #2c3e50;
        margin-bottom: 15px;
}

.faq-item p {


     color:     #7f8c8d;
   line-height: 1.8;
    font-size    :0.95rem;

}

.cta-final {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color    : white;
    padding: 80px 20px;
	 text-align: center;


}

.cta-final-container {
    max-width: 900px;
   margin: 0 auto;
}

.cta-final h2 {
  font-size: 2.8rem;
     margin-bottom :       20px;
	
}

.cta-final p 
 {
     font-size: 1.2rem; 
	    margin-bottom: 40px; 
	   opacity: 0.95;
}

.thank-you-section {
               padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
      min-height: 600px;
    display: flex;
   align-items:center;
    justify-content     :     center; 

} 

.thank-you-container {
    max-width     :       800px;
    margin: 0 auto;
        text-align: center;
}

.thank-you-content {

	  background: rgba(255, 255, 255, 0.1);
   padding: 50px;
  border-radius    :       15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.success-icon  
  {
    margin-bottom: 30px;
}  

.success-icon img {
    width: 80px;
    height: 80px;
    stroke: white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.thank-you-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
	font-weight :       700;
}

.thank-you-message {
   font-size: 1.5rem;
  margin-bottom: 15px;
    opacity: 0.95;
}

.thank-you-subtitle {
    font-size: 1.1rem;

  opacity:    0.9;

    margin-bottom: 40px;

    line-height: 1.6;
}

.thank-you-details {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 30px;
   margin: 40px 0;
    text-align: left;
}

.detail-item {
  background: rgba(255, 255, 255, 0.15);
    padding: 25px;
	 border-radius: 10px;
}

.detail-item h3 
 {
    font-size: 1.2rem;
         margin-bottom: 12px;
} 

.detail-item p {
	font-size   :        0.95rem;
    opacity     : 0.9;
    line-height     :      1.6;
}

.thank-you-actions {

	       display: flex;
	gap: 20px;
   justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
     }

.thank-you-btn {
    display: inline-block;
        padding    :       14px 35px;
    background-color  :  #f39c12;
   color: white;
   text-decoration  :        none;
    border-radius: 6px;
       font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.thank-you-btn:hover {
   background-color:     #e67e22;
	  transform: translateY(-2px);
	  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
	
}



.thank-you-btn-secondary  {
   background-color: transparent;
  border: 2px solid #f39c12;
    color: #f39c12;
   box-shadow: none;
}

.thank-you-btn-secondary:hover {
     background-color: #f39c12;
	color     :        white;
}

.thank-you-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap   :   25px;
   margin-top   :   40px;
   padding-top     :       40px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}  

.info-box {
  background: rgba(255, 255, 255, 0.1);
	padding: 20px;
   border-radius: 8px;
}

.info-box h4 {
  font-size: 1rem;
	margin-bottom     :  10px;
   font-weight: 600;
}

.info-box p {
	 font-size: 0.95rem;
  opacity     :   0.9;


}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-packages h2,
    .service-process h2,
    .faq-section h2,
    .cta-final h2 {
        font-size: 1.8rem;
    }

    .thank-you-section {
        padding: 60px 20px;
        min-height: 400px;
    }

    .thank-you-content {
        padding: 30px;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-details {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-btn {
        width: 100%;
    }

    .package-featured {
        transform: scale(1);
    }

    .package-featured:hover {
        transform: scale(1) translateY(-10px);
    }
}.policySection {
   padding: 80px 2rem;
  background    :     #f8f9fa;
   min-height:   600px;
}

.policyContainer {
  text-align: left;
  max-width: 900px;
  margin: 0 auto; 

}  

.policyContainer h1 {
   color   :     #2c3e50;
	 font-weight: 700;
	font-size    :   3rem;
    text-align: center;
	 margin-bottom: 2rem;
}

.policyContainer h2 {
    font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-weight: 600;
  padding-bottom: 10px;
    border-bottom     :  2px solid #667eea;
}

.policyContainer p {
   color: #7f8c8d;
   margin-bottom: 1.5rem;
	 line-height: 1.8;
               font-size: 1rem;
}

.policyContainer strong {
    color: #2c3e50;
       font-weight: 600;
}@media (max-width: 968px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}