* {
      margin: 0;
    box-sizing: border-box;
  padding: 0; 

}

html {
  scroll-behavior   :       smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: #2c3e50;
	 background-color: #f8f9fa;
}

.container {
  padding: 0 20px;
   margin: 0 auto;
      max-width: 1200px;
}

.app-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                    padding: 15px 0;
   position    :    sticky;
	 top :   0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	
}

.header-container {
  max-width     :    1200px;
 margin: 0 auto;
    padding: 0 20px;
    display: flex;
   justify-content: space-between;
    align-items: center; 
	
}

.logo-section {
  flex-shrink: 0;
}

.company-logo {
  height: 50px;
  width: auto;
                    display: block;
}

.main-nav {
   display: flex;
   align-items :      center;


}

.nav-list {
  display :    flex;
  list-style :   none;
   gap   :    30px;
}

.nav-link{

	color: #ecf0f1;
   text-decoration: none;
       font-weight: 500;
  transition: color 0.3s ease;
                    padding: 8px 15px;
  border-radius:        4px;


}

.nav-link:hover
{
   	color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);
}

.burger-menu {
  display: none;
  flex-direction: column;
    background: none;
  border: none;
    cursor: pointer;
   gap :      6px;
} 

.burger-line {
    border-radius: 2px;
    background-color: #ecf0f1;
  transition: all 0.3s ease;
    height: 3px;
    width: 25px;
}

.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-section {
     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;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
     }

.hero-subtitle {
    font-size     : 1.3rem;
    margin-bottom  :       40px;
   max-width: 700px;
  margin-left: auto;
  margin-right: auto;
    opacity     : 0.95;

}

.cta-button


{
  display: inline-block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
  border: none;
    cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
     transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
	
     }

.services-preview {
  padding: 80px 20px;
   background-color: white;
}

.services-preview h2 {
  font-size: 2.5rem;
    text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.service-card {
   background  :white;
 border-radius: 12px;
   overflow   :hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
    border: 1px solid #ecf0f1; 
	
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image {
    width:    100%; 
    height: 220px; 
   object-fit: cover; 
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
  padding: 20px 20px 10px;
  color  :       #2c3e50;
}


.service-card p{
    padding: 0 20px 20px;
   color: #7f8c8d;
	font-size: 0.95rem;
	line-height: 1.5;
}

.why-us {
  padding: 80px 20px;
	  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.why-us h2 {
    font-size: 2.5rem;
  text-align: center;
    margin-bottom    :   60px;
    color: #2c3e50;
}

.features-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	    gap: 40px;
}

.feature-item		{
  text-align: center;
  padding: 30px 20px;
  background    :   white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature-number {
  width    :     60px;
					height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
     border-radius: 50%;
    display: flex;
    align-items:  center;
   justify-content: center;
   font-size: 1.8rem;
        font-weight  : 700;
    margin: 0 auto 15px;
}


.feature-item h3 {
  font-size  :        1.2rem;
    margin-bottom     :     10px;
    color: #2c3e50;


}

.feature-item p {
   color: #7f8c8d;
   font-size: 0.95rem;
}

.cta-section {
     padding    :        80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   text-align: center;
   color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
	 font-size: 1.2rem;
  margin-bottom: 40px;
	max-width: 600px;
   margin-left: auto;
 margin-right: auto;
    opacity     : 0.95;
}

.cta-button-light{

	  background     :    white;
    color: #f5576c;}

.cta-button-light:hover {
	background: #ecf0f1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-section {
  padding: 80px 20px;
    background-color: white;
}

.contact-section h2 {
   font-size: 2.5rem;
	text-align    :        center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.contact-wrapper {
	  display: grid; 
 grid-template-columns:       1fr 1.2fr; 
   gap: 50px; 
  max-width: 1000px; 
   margin: 0 auto;
     }

.contact-info h3 {
	font-size: 1.3rem;
  margin-bottom: 30px;
    color: #2c3e50;
} 

.info-block 
 {
 margin-bottom: 30px;
}

.info-label
{
    font-weight: 600;
   color: #2c3e50;
	 margin-bottom     :       8px;
   font-size: 0.95rem;
}

.info-value {
          color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
   display: flex;
  flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
   flex-direction: column;
}

.form-input,
.form-textarea {


  padding: 14px 16px;
    border     :  2px solid #ecf0f1;
                    border-radius: 8px;
  font-family: inherit;
  font-size     :      0.95rem;
       transition: all 0.3s ease;
               background-color: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
   border-color: #667eea;
	background-color: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.form-textarea {
  resize:   vertical;
  min-height     :    120px;
}

.submit-button {

  padding: 14px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   border: none;
    border-radius: 8px;
   font-weight: 600;
    cursor: pointer;
   transition     :all 0.3s ease;
    font-size: 1rem;
      margin-top: 10px;


}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
     }

.app-footer {

	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color     :     #ecf0f1;
	 padding: 60px 20px 30px;
     }

.footer-container {
    max-width:      1200px;
	 margin: 0 auto;
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :   40px;
   margin-bottom: 40px;
}

.footer-section h4 {


	 font-size: 1.1rem;
   margin-bottom: 20px;
    color: white;
     }

.footer-logo {
    height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
    display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li 
 {
    margin-bottom: 12px;
}

.footer-links a {
  color     :#bdc3c7;
    text-decoration    :none;
  transition   :        color 0.3s ease;
  font-size     :      0.95rem;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-address {
  color: #bdc3c7;
  font-size: 0.95rem;
    margin-bottom: 12px;
}  

.footer-phone {
  color: #bdc3c7;
  font-size: 0.95rem;
} 

.footer-bottom {
    text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
    color: #95a5a6;
  font-size     :   0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #34495e;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-preview h2,
    .why-us h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-preview h2,
    .why-us h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
     color: white;
   	padding: 80px 20px;
       text-align     :     center;
      min-height: 350px;
     display: flex;
      align-items: center;
      justify-content: center;
}

.services-hero-content h1
{
    font-size: 3rem;
  margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
  font-size: 1.2rem;
   max-width: 700px;
    margin-left: auto;
   margin-right: auto;
   opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
  background-color: #f8f9fa; 

}


.service-detail {
   display: grid;
   grid-template-columns:    1fr 1fr;
	gap: 50px;
  margin-bottom: 80px;
   align-items: center;
	
}

.service-detail-reverse {
  direction: rtl;
}



.service-detail-reverse > * {
  direction: ltr;
}

.service-detail-image {
   overflow:  hidden;
   border-radius :    12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
     }

.service-detail-image img {
    width:   100%;
  height: auto;
    display   :block;
  transition :      transform 0.3s ease;
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size: 2rem;
    margin-bottom    :15px;
    color: #2c3e50;


}

.service-intro {
       font-size: 1.1rem;
   color: #555;
	 margin-bottom: 25px;
  line-height: 1.6;
}

.service-detail-content h3{
    font-size: 1.2rem;
   margin-top: 25px;
   margin-bottom: 15px;
  color: #2c3e50;
}

.service-list {
    list-style: none;

  margin-bottom: 20px;

}

.service-list li {
        position     :    relative;
   color: #555;
  padding: 10px 0 10px 30px;
    line-height: 1.6;
}

.service-list li:before {
    left     :  0;
					position    : absolute;
  font-weight: bold;
  content: "•";
    color: #3498db;
       font-size: 1.2rem;
}

.service-duration,
.service-price {
  margin :        15px 0;

	 font-size: 0.95rem;

    color: #2c3e50;
}

.service-cta {
    display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   padding: 12px 30px;
                    text-decoration: none;
  border-radius: 50px;
	font-weight: 600;
   margin-top: 20px;
   transition :     all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.package-section {

    padding: 80px 20px;
   background: white;


}

.package-section h2 {
   font-size: 2.5rem;
       text-align: center;
     margin-bottom: 60px;
   	color: #2c3e50;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     : 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
   background   :   white;
	 border: 2px solid #ecf0f1;
  border-radius: 12px;
   padding: 40px 30px;
   text-align     :      center;
    transition: all 0.3s ease;
   position: relative; 
	
}

.package-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-card-featured


{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	  border :   none; 
	  transform: scale(1.05);
}

.package-card-featured:hover     {
  transform: scale(1.05) translateY(-8px);
}

.package-card h3 {


   font-size: 1.5rem;
   margin-bottom: 15px;
  color: #2c3e50;
}  

.package-card-featured h3 {
  color: white;
}

.package-price {
    font-size: 2.2rem;
  font-weight: 700;
          margin-bottom: 10px;
  color: #3498db;

}

.package-card-featured .package-price
	{
   color: #fff;
}

.package-description {
	color: #7f8c8d; 
	   margin-bottom: 25px; 
	   font-size :       0.95rem;
}

.package-card-featured .package-description {
  color: rgba(255,255,255,0.9);
}

.package-list{
   list-style: none;
    text-align: left;
    margin: 30px 0;
}

.package-list li {
       padding: 12px 0;
   border-bottom: 1px solid #ecf0f1;
    color  :#555;
    position     :      relative;
  padding-left   :     30px;
     }



.package-card-featured .package-list li {
  border-bottom-color: rgba(255,255,255,0.2);
  color: white;
}

.package-list li:before  
  {
  content: "✓";
	position: absolute;
   left: 0;
   color: #2ecc71;
	 font-weight: bold;
   font-size: 1.1rem;
}

.package-card-featured .package-list li:before {
  color: #fff;
}

.process-section {
	   padding  :  80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}

.process-section h2 {
   font-size: 2.5rem;
   text-align     :      center;
   margin-bottom    :     60px;
	color: #2c3e50;
}

.process-timeline {
   max-width: 1000px;
   gap     :        20px;
    flex-wrap: wrap;
   justify-content: space-between;
     margin: 0 auto;
   display: flex;
    align-items: center;
}


.process-step 
 {
   background: white;
  padding: 30px 20px;
    border-radius: 12px;
 text-align :center;
  flex: 1;
   min-width   :       200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number   {
            width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    border-radius   :    50%;
  display: flex;
    align-items: center;
	justify-content: center;
  font-size: 1.5rem;
   font-weight: 700;
   margin: 0 auto 15px;}

.process-step h3 {
    font-size  :      1.1rem;
    margin-bottom: 10px;
                    color: #2c3e50;
}

.process-step p {
  color     :    #7f8c8d;
    font-size : 0.9rem;
}

.process-arrow {
  font-size: 2rem;
  color: #3498db;
   font-weight: bold;
  text-align: center;
}

.cta-final {
   padding   :  80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
	 text-align: center;
}

.cta-final h2	{
    font-size: 2.5rem;
	 margin-bottom: 20px;
}

.cta-final p {
	 font-size: 1.1rem;
   margin-bottom     :40px;
   max-width: 600px;
	 margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.thankyou-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);

  color: white;

   padding: 100px 20px;

    text-align: center;

	min-height: 600px;

  display: flex;

  align-items    :center;

   justify-content: center;
}

.thankyou-content {
   max-width: 700px;
}

.success-icon
	{
  width: 100px;
  height     :       100px;
  background: rgba(255,255,255,0.2);
    border     :    3px solid white;
  border-radius: 50%;
    display: flex;
       align-items: center;
	justify-content :        center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
   font-weight: 700; 
	
}

.thankyou-hero h1 {
   font-size: 3rem;
    margin-bottom: 15px;
  font-weight   :      700;
}

.thankyou-subtitle {

  font-size: 1.4rem;
    margin-bottom: 20px;
  opacity: 0.95;
	}  

.thankyou-description {
   font-size: 1.1rem;
	      margin-bottom: 40px;
	  opacity: 0.9;
	  line-height: 1.6;
}

.thankyou-info {
  background: rgba(255,255,255,0.1);

    padding: 30px;

    border-radius: 12px;

      margin-bottom: 40px;

  border: 1px solid rgba(255,255,255,0.2);
}

.info-label {
    font-weight: 600;
   margin-bottom: 15px;
    font-size: 1rem;
}

.info-list {
    list-style: none;
  text-align: left;
}

.info-list li


{
               padding: 10px 0 10px 30px;
   position: relative;
   font-size   : 0.95rem;
   line-height: 1.5;
}

.info-list li:before {
  content: "•";
  position: absolute;
   left: 0;
          font-weight: bold;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
     flex-wrap: wrap;
    margin-bottom    :       40px; 

}

.action-button {

	   display: inline-block;
	padding: 14px 30px;
  text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
   font-size: 0.95rem;

}

.action-button-primary {
     background  :        white;
    color: #2ecc71;
}

.action-button-primary:hover {
    background: #f0f0f0;
  transform: translateY(-2px);
}

.action-button-secondary
	{
  background: rgba(255,255,255,0.2); 
	   color: white; 
	    border: 2px solid white;
}

.action-button-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.thankyou-contact {
      font-size: 0.95rem;
    opacity: 0.9;
}

.next-steps {
   padding: 80px 20px;
    background: #f8f9fa;
}

.next-steps h2 {
	  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
   color     :   #2c3e50;}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
                    max-width  :        1200px;
   margin: 0 auto;
}


.step-card
	{
    background: white;
	 padding: 40px 30px;
   border-radius: 12px;
  text-align     :     center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step-card:hover
{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-icon {

   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
     color:white;
  border-radius: 50%;
  display  :   flex;
   align-items: center;
    justify-content: center;
               font-size: 1.8rem;
   font-weight: 700;
     margin: 0 auto 20px;


}

.step-card h3 {
	font-size: 1.2rem;
  margin-bottom: 15px;
   color  :      #2c3e50; 
	
     }

.step-card p {
                    color: #7f8c8d;
   font-size: 0.95rem;
        line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .thankyou-hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .thankyou-content {
        max-width: 100%;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card-featured {
        transform: scale(1);
    }

    .package-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .package-price {
        font-size: 1.8rem;
    }

    .thankyou-hero h1 {
        font-size: 1.5rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .thankyou-description {
        font-size: 0.95rem;
    }
}.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
      padding: 80px 20px;
    text-align: center;
    min-height: 300px;
   display   :flex;
                    align-items: center;
  justify-content: center;
}


.policy-hero-content h1 {
    font-size: 3rem;
   margin-bottom: 15px;
	 font-weight  :   700;
}

.policy-hero-content p {
       font-size    :    1.2rem;
  max-width: 700px;
    margin-left: auto;
    margin-right: auto;
   opacity: 0.95;


}

.policySection


{
   padding: 80px 2rem;
	  background: #f8f9fa;
}

.policyContainer {
		 max-width: 800px;
        margin   :   0 auto;
   text-align: left;
}

.policyContainer h2 {
    font-size: 1.8rem;
  color: #2c3e50;
     margin-top: 40px;
   margin-bottom: 20px;
  font-weight     :       700;
  border-left   :    4px solid #667eea;
    padding-left: 20px;
}

.policyContainer h2:first-child


{


	margin-top: 0;


}

.policyContainer p {
  color     :        #7f8c8d;
  margin-bottom: 20px;
	line-height: 1.8;
    font-size: 1rem;
         text-align: justify;
     }

.policyContainer ul

{
   margin-bottom: 20px;
	 padding-left   : 30px;
}

.policyContainer ul li{
   color: #7f8c8d;
   margin-bottom: 12px;
  line-height: 1.7;


}

.policyContainer ul li:before {
  content: "•";

	    color: #667eea;

	    font-weight: bold;

	   margin-right: 12px;
}@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-hero {
        padding: 60px 20px;
        min-height: 250px;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-hero-content h1 {
        font-size: 1.5rem;
    }

    .policy-hero-content p {
        font-size: 0.9rem;
    }

    .policy-hero {
        padding: 40px 20px;
        min-height: 200px;
    }

    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 15px;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .policyContainer ul {
        padding-left: 25px;
    }

    .policyContainer ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}