* {


  margin  :        0;
  padding: 0;
   box-sizing: border-box;


}  

html		{
    scroll-behavior :       smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		color: #2c3e50;
  background-color :#ffffff;
  line-height: 1.6; 
	
}

.navigation-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 0;
                    position: sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.2);
}

.nav-container {
  max-width   :    1200px;
	margin: 0 auto;
    display: flex;
   justify-content   :  space-between;
   align-items: center;
    padding: 0 2rem;
}

.logo-img {
	    max-width: 120px;
   height: auto;
  filter: brightness(0) invert(1);
	
     }

.nav-menu

{
     display: flex;
   list-style: none;
    gap: 2rem;
}

.nav-link {
	   color: #ffffff;
    text-decoration: none;
   font-weight: 500;
    transition     :       all 0.3s ease;
    padding: 0.5rem 1rem;
  border-radius: 5px;
	}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);


}

.hamburger {
    display: none;
   flex-direction: column;
    cursor     :        pointer;
    gap: 0.5rem;
}

.hamburger-line {
  background-color: #ffffff;
 transition: all 0.3s ease;
 border-radius: 3px;
    width: 25px;
    height: 3px;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
    
    .nav-menu li {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
}.hero-section {
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
	 display: grid;
   margin: 0 auto;
   padding: 4rem 2rem;
  max-width: 1200px;
    align-items: center; 

}

.hero-content h1 {
                    font-size  :2.8rem;
   color: #667eea;
         margin-bottom: 1.5rem;
	 line-height: 1.2;
}

.hero-content p {
	font-size: 1.1rem;
   color: #555555;
	 margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
    padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration:        none;
          font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image img {
  width    :      100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}.about-section {

	  background-color: #f8f9fa;
    padding: 4rem 2rem;

}

.section-content {
    max-width: 1200px; 
	    margin: 0 auto;
}

.about-section h2 {
   font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
}  

.about-section > .section-content > p     {
	    font-size: 1rem;
    color: #555555;
    margin-bottom: 2.5rem;
  max-width: 800px;
     }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card   {
     background: #ffffff;
	 padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
    border-left: 4px solid #667eea;
     }  

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.benefit-card h3 {
    color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666666;
  line-height: 1.6;
}

.expertise-section {
               padding:4rem 2rem;
   max-width: 1200px;
  margin :0 auto;

}

.expertise-section h2 {
  font-size: 2.2rem;
    color: #2c3e50;
         margin-bottom: 3rem;
	 text-align     :      center;
}

.expertise-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.expertise-item    {
  background: #ffffff;

	  border-radius: 10px;

	    overflow: hidden;

	  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);

	  transition  : all 0.3s ease;

}

.expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.expertise-item img {
     width     :  100%;
  height  :      200px;
   object-fit: cover;
     }

.expertise-item h3 {
	color: #667eea;
  padding: 1.5rem 1.5rem 0.5rem;
      font-size: 1.1rem;
}

.expertise-item p {
   color: #666666;
    padding: 0 1.5rem 1.5rem;
   line-height: 1.6;
}  

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding : 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin     :     0 auto;
}

.cta-content h2 {
   font-size: 2rem;
	color: #ffffff;
  margin-bottom    :1rem;
}

.cta-content p {
    font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.primary-button {
  display: inline-block;
   background-color: #ffffff;
    color: #667eea;
	 padding: 1rem 2.5rem;
	border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
    margin: 0 1rem 1rem 0;
    transition: all 0.3s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



.secondary-button	{
    display: inline-block;
    background-color: transparent;
		color: #ffffff;
   padding: 1rem 2.5rem;
  border-radius  :    50px;
  text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
	margin: 0 1rem 1rem 0;
   transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}@media (max-width: 768px) {
    .primary-button, .secondary-button {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}.contact-section {
   	 padding: 4rem 2rem;
  background-color  :    #f8f9fa;

}

.contact-container {
    max-width: 600px;
  margin: 0 auto;
}

.contact-section h2  
  {
     font-size: 2rem;
   color: #2c3e50;
    margin-bottom: 0.5rem;
  text-align: center;
}

.contact-intro {
    text-align: center;
	color: #666666;
  margin-bottom: 2.5rem;
   font-size   :  1rem;
	
}

.contact-form   {


  background:   #ffffff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);}

.form-group {
   margin-bottom: 1.5rem;

}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem;
 border: 2px solid #e0e0e0;
   border-radius: 8px;
  font-family: inherit;
	font-size: 1rem;
  transition :   all 0.3s ease;
    color: #2c3e50;
}

.form-input:focus, .form-textarea:focus  
  {
    outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
  resize: vertical;
    min-height: 120px;
}

.submit-button{
  width    :    100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  border  : none;
  border-radius: 8px;
        font-size    :        1rem;
    font-weight     :     600;
        cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
     }

.submit-button:active {
  transform: translateY(0);
}

.footer-section {
	    background   :#2c3e50;
      color: #ecf0f1;
          padding  :     3rem 2rem 1rem;
	}

.footer-wrapper {
    max-width    :        1200px;
   margin     :        0 auto;
}

.footer-main {
          display: grid;
  grid-template-columns: 200px 1fr;
   gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {

	   max-width: 100%;
   height     :      auto;
  margin-bottom:1rem;
  filter: brightness(0) invert(1);
	}

.footer-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-block h4 {

    color: #ffffff;
   margin-bottom: 1rem;
	font-size: 1rem;

}

.footer-block ul {
   list-style: none;
	
}

.footer-block li  {


  margin-bottom: 0.5rem;
}

.footer-block a {
  color: #bdc3c7;
 text-decoration: none;
    transition: all 0.3s ease;
}

.footer-block a:hover {
     color: #ffffff;
}

.footer-block p {
   color: #bdc3c7;
  font-size: 0.95rem;
   line-height: 1.6;
    margin-bottom:0.5rem;
}

.phone-footer  
  {
    color    :  #667eea;
	font-weight: 600;
}

.footer-bottom {
   border-top: 1px solid #34495e;
  padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
  font-size    : 0.9rem;
}

.footer-bottom p {
    margin: 0.3rem 0;
}@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    padding: 3rem 2rem;
		text-align: center;
	  color: #ffffff;
}

.services-hero-content h1 
 {

	    font-size: 2.5rem;
   margin-bottom: 1rem;
    line-height: 1.2;

}

.services-hero-content p
{
     font-size: 1.2rem;
   opacity: 0.95;
}

.services-main {
  padding: 4rem 2rem;
   background-color: #ffffff;
} 

.services-container {
    max-width  :1200px;
                    margin: 0 auto;
}

.service-card-full {


   display:     grid;
    grid-template-columns   :    1fr 1fr;
    gap    :   3rem;
   margin-bottom  :      4rem;
  align-items: center;
   padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
    transition: all 0.3s ease;
     }

.service-card-full:hover {
		 background: #f0f1f5;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.service-card-full:nth-child(even) {
	grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-card-full:nth-child(even) .service-card-content {
    direction: ltr;
}

.service-card-image {
    border-radius :     10px;
   -moz-border-radius: 10px;
	-webkit-border-radius     :      10px;
               overflow: hidden;
}

.service-card-image img {
   width: 100%;
     height: auto;
       display  :       block;
     transition: transform 0.3s ease;
}

.service-card-full:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content h2


{
    font-size: 1.8rem;
    color: #667eea;
  margin-bottom: 1rem; 
	
}

.service-card-content p {
   color: #555555;
   margin-bottom:        1.5rem;
  line-height     :      1.8;
  font-size: 1rem;
}

.service-highlights {
      display: flex;
    flex-direction:  column;
    gap: 0.8rem;
   margin-bottom :   1.5rem;
   padding: 1.5rem;
   background: #ffffff;
        border-radius: 8px;
    border-left: 4px solid #667eea;
}

.highlight-item {
   color: #2c3e50;
    font-size: 0.95rem;
    padding :     0.3rem 0;
}



.highlight-item::before {
  content: "✓ ";
  color   :      #667eea;
    font-weight: 600;
   margin-right: 0.5rem;
}

.service-cta {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.9rem 2rem;
	border-radius: 50px;
    text-decoration  :       none;
	font-weight:  600;
        transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);

}@media (max-width: 768px) {
    .service-card-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .service-card-full:nth-child(even) {
        direction: ltr;
    }
    
    .service-card-full:nth-child(even) .service-card-content {
        direction: ltr;
    }
    
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
}.pricing-section     {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 2rem;
}

.pricing-section h2 {
       font-size: 2.2rem;
   text-align: center;
    color: #2c3e50;
   margin-bottom    :    0.5rem;
	}

.pricing-intro  {
  text-align    :  center;
  color: #666666;
		margin-bottom: 3rem;
	font-size: 1.1rem;
}

.pricing-grid {


  max-width    :        1000px;
  margin: 0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
     }

.pricing-card {
   border-radius  :  10px;
    background: #ffffff;
  transition: all 0.3s ease;
   padding:       2.5rem;
    position: relative;
  border: 2px solid #e0e0e0;
}

.pricing-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.pricing-card.featured {
	 border     :  2px solid #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  transform: scale(1.05);
	}

.featured-badge {
   position     :      absolute;
   top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :      #ffffff;
    padding: 0.5rem 1.2rem;
               border-radius: 50px;
   font-size: 0.85rem;
  font-weight: 600;
}  

.pricing-card h3 {

   color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom :      0.5rem;
	margin-top: 0.5rem;


}

.pricing-description

{
  color: #666666;
    font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
   list-style: none;
   margin-bottom: 2rem;
}

.pricing-features li {
  color: #555555;
    padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
}  

.pricing-features li::before

{


  left: 0;
     content: "✓";
   	font-weight: 600;
       position: absolute;
       color: #667eea;}

.pricing-button {
     display: block;
  width: 100%;
    padding: 1rem;
	 background: #f0f1f5;
  color: #667eea;
   border :  2px solid #e0e0e0;
   border-radius: 8px;
    text-align: center;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  cursor: pointer;

} 

.pricing-button:hover {
      background: #e0e5f0;
     border-color: #667eea;}

.pricing-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: #ffffff; 
  border: none;
}

.pricing-button.primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a3d91 100%);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.faq-section {
    background-color: #ffffff;
   padding: 4rem 2rem;
}

.faq-container {
  max-width: 1000px;
   margin: 0 auto;
}

.faq-section h2 {
   font-size: 2.2rem;
  color    :     #2c3e50;
  margin-bottom: 2.5rem;
   text-align :   center;


}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap :       2rem; 

}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
	border-radius: 10px;
    border-left: 4px solid #667eea;
   transition:    all 0.3s ease;
}

/* Browser compatibility */


.faq-item:hover {
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: #667eea;
  margin-bottom: 1rem;
   font-size: 1.1rem;
}
	/* TODO: optimize for mobile */


/* Generated styles */
.faq-item p {


   font-size: 0.95rem;
	color: #555555;
    line-height: 1.7; 


}

.cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding   :        3.5rem 2rem;
   text-align    : center;
}

/* Auto-generated CSS */

.cta-final h2 {
  font-size: 2rem;
                    color: #ffffff;
   margin-bottom: 1rem;
}

.cta-final p {
  font-size:1.1rem;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2rem;
}

.cta-button-large
{
  display: inline-block;
    background-color: #ffffff;
   color :        #667eea;
  padding: 1.2rem 3rem;
  border-radius: 50px;
    text-decoration: none;
   font-weight :  600;
   font-size: 1.05rem;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
/* State modifiers */
	/* Legacy code */


.thankyou-section {
    min-height: 60vh;
   display: flex;
  align-items: center;
   justify-content: center;
   padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);


}

.thankyou-container {

  max-width: 700px;
   width: 100%;
  text-align: center;
}
	/* Performance critical */
/* Generated styles */


.thankyou-icon


{
  margin-bottom: 2rem;
   animation: checkmark-bounce 0.6s ease; 

}

.thankyou-icon svg {
   color: #667eea;
}
@keyframes checkmark-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
  font-size:       2.2rem;
  color: #2c3e50;
	margin-bottom: 1rem;
}

.thankyou-message

{
  font-size: 1.05rem;
	color: #555555;
    line-height: 1.8;
  margin-bottom: 2.5rem;
}

.thankyou-details {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-bottom: 2.5rem;
}

.detail-block {
  background: #ffffff;
   padding :        2rem;
    border-radius: 10px;
  border: 2px solid #e0e0e0;
   text-align     :        left;
}

.detail-block h3 {
  color     :    #667eea;
  margin-bottom: 1rem;
	font-size: 1.2rem;
}

.detail-block ul {
    list-style: none;
  color: #555555;
  line-height: 1.8;
}

.detail-block li {
   margin-bottom: 0.7rem;
  padding-left: 1.5rem;
    position: relative; 
	
}

.detail-block li::before {
  content: "→";
	 position: absolute;
   left: 0;
    color: #667eea;
  font-weight: 600;
}


.detail-block p {
    color: #555555;
  line-height: 1.8;
    margin: 0.5rem 0;
}

.contact-phone {
   font-size: 1.3rem;
   color:        #667eea;
   font-weight: 600;
    margin-top :     1rem;
}



.contact-hours {
   font-size: 0.9rem;
   color: #888888;
    font-style: italic;
  margin-top    :        0.5rem;
}

.thankyou-actions {


   display: flex;
    gap: 1rem;
  justify-content: center;
   flex-wrap    :       wrap;
    margin-bottom: 2rem;

}

.button-primary {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    padding :1rem 2.5rem;
   border-radius: 50px;
	text-decoration :   none;
	font-weight: 600;
  transition  :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
     }

.button-secondary {
   display: inline-block;
    background: transparent;
   color: #667eea;
	 padding: 1rem 2.5rem;
       border-radius    :        50px;
  text-decoration: none;
    font-weight: 600;
    border: 2px solid #667eea;
  transition:  all 0.3s ease;

}

.button-secondary:hover {
   background: #667eea; 
         color: #ffffff;
}

.thankyou-footer-message {

	   background: #f0f1f5; 
  padding: 1.5rem; 
	border-radius: 8px; 
    border-left: 4px solid #667eea;


}

.thankyou-footer-message p {
    color: #555555;
   line-height: 1.8;
  margin: 0;
}@media (max-width: 768px) {
    .thankyou-section {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
    
    .thankyou-section h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-details {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .button-primary, .button-secondary {
        width: 100%;
    }
    
    .service-card-full {
        padding: 1rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}.policySection   {
		 padding: 80px 2rem;
	 background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {

	  max-width: 900px;
    margin: 0 auto;
   text-align: left;
  background: #ffffff;
	padding: 3rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	


}

.policyContainer h1 {
   font-size: 2.8rem;

      color: #2c3e50;

   margin-bottom: 2rem;

  font-weight :  700;

   border-bottom:    3px solid #667eea;

    padding-bottom: 1rem;
}


.policyContainer h2 {
  font-size: 1.8rem;
  color: #667eea;
  margin-top: 2rem;
  margin-bottom: 1rem;
					font-weight: 700;
  line-height: 1.3;
}

.policyContainer p {
   color: #555555;
	margin-bottom   :    1.5rem;
          line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}



.policyContainer p:last-of-type		{
    margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }
    
    .policyContainer {
        padding: 2rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }
    
    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 5px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}