* {
  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: #fafafa;
  line-height: 1.6;
}

a {
  text-decoration: none;
   color :        inherit;
}

img {
   max-width: 100%;
    height: auto;
  display: block;
}

.navbar-main {
   background-color: #1a1f2e;
    padding: 1rem 0;
    position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container    {
	max-width    :    1200px;
   margin: 0 auto;
	padding: 0 2rem;
  display: flex;
  justify-content   : space-between;
    align-items: center;
}

.logo-section

{
    flex-shrink: 0;
}

.logo-img {
	 height: 45px;
    width     :    auto;
}

.nav-links {
	display: flex;
       list-style    :    none;
    gap: 2rem;
}

.nav-link {

   color: #ecf0f1;
   font-size: 1rem;
       font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
	}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
  content: '';

	  position: absolute;

	   bottom: -5px;

	  left: 0;

	   width: 0;

	   height: 2px;

	   background-color: #3498db;

		transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
	
}

.burger-menu {
   display: none;
	 flex-direction: column;
   background: none;
         border: none;
   cursor: pointer;
    gap: 5px;
}

.burger-line {
  width: 25px;
   height: 3px;
  background-color: #ecf0f1;
	 transition    :     all 0.3s ease;
}

.hero-section {

    max-width: 1200px;
  margin: 0 auto;
    padding:    4rem 2rem;
    display: grid;
  grid-template-columns   :  1fr 1fr;
    gap: 3rem;
   align-items  : center;
     }

.hero-content h1   {
    font-size: 3rem;
  color: #1a1f2e;
   margin-bottom   :      1rem;
  line-height: 1.2;
         font-weight: 700;
}

.hero-subtitle	{
   font-size: 1.2rem;
  color: #7f8c8d;
    margin-bottom   :        2rem;
    line-height: 1.6;
}

.cta-button {
		display: inline-block;
               padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
     color: white;
  border-radius    :        5px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
       border: none;
  font-size: 1rem;}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.hero-image {
  position: relative;
    overflow: hidden;
   border-radius: 10px;
}

.hero-image img {
   width:       100%;
   height: 400px;
         object-fit: cover;
	 border-radius: 10px;
}

.services-preview {
   max-width:       1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
   margin-bottom: 0.5rem;
   font-size: 2.5rem;
    color: #1a1f2e;}

.section-subtitle {
       font-size: 1.1rem;
	color: #7f8c8d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap  :  2rem;
}

.service-card {
    background: white;
    border-radius     :   8px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
			width: 100%;
   height :        200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
   font-size: 1.3rem;
  color: #1a1f2e;}

.service-card p {
  padding: 0 1.5rem 1.5rem;
   color: #7f8c8d;
   font-size: 0.95rem;
   line-height:     1.5;
}

.offer-section {

	  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   padding: 4rem 2rem;
	margin: 4rem 0;
     }

.offer-container {
   max-width: 1200px;
  margin: 0 auto;
	display: grid;
  grid-template-columns: 1fr 1fr;
   gap  : 3rem;
  align-items: center;
	}

.offer-text h2 {
      font-size: 2.2rem; 
	   color: #1a1f2e; 
	      margin-bottom: 1.5rem;
     }

.offer-text p {
  color: #2c3e50;
   font-size: 1rem;
   margin-bottom:      1.5rem;
  line-height     :        1.7;
}

.offer-benefits {
    list-style: none;
    display: flex;
   flex-direction: column;
    gap: 0.8rem;
}

.offer-benefits li {
    color: #2c3e50;
   padding-left: 1.5rem;
   position: relative;
  font-weight: 500;
}


.offer-benefits li:before {

  content: '✓';
  position: absolute;
  left    :     0;
   color    :      #27ae60;
    font-weight: bold;
  font-size: 1.2rem;

}

.offer-image {
   width: 100%;
                    height: 350px;
	object-fit: cover;
  border-radius: 8px;
}

.cta-booking {

  background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 4rem 2rem;
        text-align    :      center;
	}

.cta-content {
    max-width: 700px;
   margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
   color: white;
    margin-bottom   :1rem;
}

.cta-content p {
  font-size: 1.1rem;
   color: #ecf0f1;
   margin-bottom: 2rem;
   line-height  :   1.6;
}

.cta-large {
 background: white;
   font-weight: 600;
  padding: 1rem 2.5rem;
   font-size:     1.1rem;
   color     :   #3498db;
}

.cta-large:hover {
  background: #ecf0f1;
}

.contact-section {
	 max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem;
}

.contact-wrapper {
   background: white;
   padding: 3rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
} 

.contact-wrapper h2 {
    font-size: 2rem;
  color :  #1a1f2e;
    text-align: center;
   margin-bottom: 0.5rem;
}

.contact-intro   {
    text-align     :     center;
  color     :       #7f8c8d;
  margin-bottom: 2rem;
    font-size: 1rem;}

.contact-form {
    max-width: 600px;
   margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
   display: flex;
  flex-direction: column;
}

.form-group label	{
   font-weight:600;
	 color: #1a1f2e;
               margin-bottom: 0.5rem;
} 

.form-group input,
.form-group select,
.form-group textarea		{
    padding: 0.8rem;
    border: 2px solid #ecf0f1;
   border-radius: 5px;
  font-size: 1rem;
          font-family: inherit;
  transition: border-color 0.3s ease;
   color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus

{
   outline: none;
  border-color    : #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
  width: 100%;
    padding: 0.9rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
      border: none;
  border-radius: 5px;
         font-weight: 600;
   font-size: 1rem;
  cursor: pointer;
   transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer-main {
  background-color: #1a1f2e;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
      margin-top   :       4rem;
}

.footer-content 
 {
   max-width: 1200px;
    margin   : 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
   height: 40px;
    width: auto;
}  

.footer-block h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}



.footer-links {
  list-style    :     none;
	display: flex;
  flex-direction: column;
  gap :    0.5rem;
}

.footer-links a {
	    color: #bdc3c7;
   transition:    color 0.3s ease;

}

.footer-links a:hover {
       color:   #3498db;
}

.footer-contact {
    color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
    border-top     :     1px solid #34495e;
   padding-top: 1.5rem;
   text-align: center;
   color: #95a5a6;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #1a1f2e;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 0.8rem 2rem;
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-image {
        height: 250px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .offer-text h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .nav-links.active {
        max-height: 250px;
    }
}.services-hero


{
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
   padding:4rem 2rem;
   text-align: center;


}

.services-hero-content h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {
	font-size: 1.2rem;
   color: #ecf0f1;
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
	   max-width: 1200px;
  margin: 4rem auto;
	padding: 0 2rem;}

.services-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-item{

	  background: white;
	 border-radius: 10px;
  overflow :  hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:   all 0.3s ease;
   position: relative;


}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
    font-weight     :        700;
	top: 15px;
  font-size :  2rem;
   z-index: 1;
   position: absolute;
   color: #3498db;
    opacity: 0.3;
		right: 20px;
}

.service-item h2 {


   font-size:    1.5rem;
    color: #1a1f2e;
    padding: 1.5rem 1.5rem 0; 
}

.service-item img {
   width: 100%;
  height: 220px;
   object-fit: cover;
}

.service-item p {
     padding     : 1.5rem 1.5rem 0;
     color: #7f8c8d;
     font-size: 0.95rem;
                       line-height    :    1.6;}

.service-details-list {
  list-style    :none;
  padding: 1rem 1.5rem;
}

.service-details-list li {
    color: #2c3e50;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
        position: relative;
  font-size  :      0.9rem;
}

.service-details-list li:before {
  content: '›';
    position: absolute;
  left  :    0;
    color :     #3498db;
    font-weight: bold;
  font-size: 1.3rem;
}

.service-price {
  padding: 1.5rem 1.5rem 1.5rem;
  font-size: 1.3rem;
    font-weight: 700;
   color: #3498db;
    border-top: 1px solid #ecf0f1;
}

.service-comparison {
	background  :      #f8f9fa;
   padding: 4rem 2rem;
  margin: 4rem 0;
}

.comparison-container {
  max-width    :   1200px;
   margin: 0 auto;
}

.comparison-container h2 {

   font-size: 2.2rem;
  color: #1a1f2e;
    text-align: center;
    margin-bottom: 2rem;
     }

.comparison-table-wrapper {
   overflow-x  :   auto;
          border-radius     :        8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
   background: white;
  border-collapse: collapse;
}

.comparison-table thead 
 {
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.comparison-table th {
        padding: 1.2rem;
	   text-align: left;
	          font-weight: 600;
	  font-size: 0.95rem;
}

.comparison-table td {
    padding: 1rem 1.2rem;
     border-bottom: 1px solid #ecf0f1;
	color: #2c3e50;

}

.comparison-table tbody tr:hover {
  background-color: #f8f9fa;
} 

.package-selection {
   max-width: 1200px;
   margin: 4rem auto;
   padding: 0 2rem;
}

.package-container h2 {
          font-size:        2.2rem;
  color: #1a1f2e;
   text-align: center;
    margin-bottom     :   3rem; 

}

.packages-grid
	{
	  display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;

}

.package-card {
   background: white;
   border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding :    2rem;
  text-align: center;
   position: relative;
   transition: all 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border-color     :   #3498db;
}

.package-card.featured 
 {
  border-color: #3498db; 
  transform: scale(1.05); 
  box-shadow: 0 10px 35px rgba(52, 152, 219, 0.2);
}

.package-badge {
   display: inline-block;
	 background: #ecf0f1;
    color: #2c3e50;
  padding: 0.4rem 1rem;
   border-radius: 20px;
  font-size     :0.8rem;
  font-weight  :    600;
   margin-bottom: 1rem;
}

.featured-badge {
   color: white;
	background     :      #3498db;
}

.package-card h3 {
    font-size: 1.8rem;
    color: #1a1f2e;
        margin-bottom: 0.5rem;

}

.package-price {
    font-size: 2.5rem;
      color: #3498db;
					font-weight: 700;
	margin-bottom :    0.5rem;
}

.package-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
   text-align: left;
    margin-bottom: 2rem;


}

.package-features li 
 {
    color: #2c3e50;
    padding: 0.6rem 0;
   padding-left: 1.5rem;
  position: relative;

}

.package-features li:before {
  content: '✓';
   position: absolute;
    left: 0;
   color: #27ae60;
  font-weight: bold;
	
}

.package-btn {
    display: inline-block;
   padding: 0.9rem 2rem;
   background: #ecf0f1;
    color: #2c3e50;
  border-radius :        5px;
    font-weight: 600;
    transition   :  all 0.3s ease;
}

.package-btn:hover {
    background: #bdc3c7;}  

.featured-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.featured-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1f618d);
}

.faq-services {
  max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem; 

}

.faq-container h2 {
  font-size: 2.2rem;
    color: #1a1f2e;
    text-align: center;
     margin-bottom: 2rem;
}

.faq-items {
  display: flex;
   flex-direction: column;
  gap: 1rem;
}

.faq-item {
 background: white;
               border: 1px solid #ecf0f1;
  border-radius    :    8px;
   overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question  {

	  width: 100%;
		padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    border: none;
  text-align: left;
  cursor   :pointer;
    font-size: 1rem;
    font-weight: 600;
   color: #1a1f2e;
    transition: all 0.3s ease;
   display: flex;
  justify-content: space-between;
   align-items     :     center;
}

.faq-question:hover {
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);

}

.faq-question:after     {
  content: '▼';
  color: #3498db;
    font-size: 0.8rem;
	transition : transform 0.3s ease;
}

.faq-question.active:after {
  transform: rotate(180deg);
}

.faq-answer {
      max-height: 0;
   overflow: hidden;
  transition: max-height 0.3s ease;

}

.faq-answer.active {
	      max-height: 300px;


}  

.faq-answer p		{
   padding    :     1.5rem;
    color     :       #7f8c8d;
		line-height :      1.6;
	
}

.thankyou-section  {
  min-height: calc(100vh - 200px);
   display: flex;
  align-items: center;
	 justify-content: center;
    padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
}

.thankyou-wrapper {
   background: white;
   border-radius: 15px;
  padding: 3rem;
   max-width: 700px;
	text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon  
  {
   margin-bottom: 2rem;
    display: flex;
          justify-content: center;
}

.success-icon svg {
	animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-wrapper h1


{
    font-size: 2.5rem;
   color :       #1a1f2e;
   margin-bottom: 0.5rem;
}

.thankyou-main-text {
  font-size: 1.2rem;
  color: #3498db;
   margin-bottom: 2rem;
	font-weight: 600;
	
}

.thankyou-details {
  background   : #f8f9fa;
    padding: 1.5rem;
   border-radius: 8px;
        margin-bottom     :   2rem;
  text-align: left;
}

.thankyou-details p {
 color    :    #7f8c8d;
   line-height: 1.7;
               margin-bottom: 1.5rem;
	
}

.next-steps h2 {
	font-size: 1.3rem;
          color: #1a1f2e;
           margin-bottom: 1rem;
                       text-align: center;

}

.steps-list {

	  list-style: none;
    padding: 0;
}

.steps-list li {
  margin-bottom: 1rem;
    align-items:   flex-start;
   gap: 1rem;
   display: flex; 
	
}


.step-number {
   display: flex;
    align-items: center;
   justify-content:  center;
   width    :35px;
    height     :   35px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  font-weight: 700;
    flex-shrink:      0;
}

.step-content h3 {
  color     :      #1a1f2e;
    font-size     :    0.95rem;
   margin-bottom: 0.3rem;
   text-align: left;
}

.step-content p {
     font-size: 0.85rem;
   margin-bottom   :        0;
    color: #7f8c8d;
   text-align: left;
}


.thankyou-actions {
  display: flex;
               gap: 1rem;
  justify-content    : center;
    flex-wrap: wrap;
  margin-bottom: 2rem;
}

.action-btn {
   display: inline-block;
   padding: 0.9rem 1.8rem;
    border-radius: 5px;
   font-weight: 600;
    text-align: center;
   transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
	  background: linear-gradient(135deg, #3498db, #2980b9);
    color:     white;

}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.secondary-btn {
  color: #2c3e50;
   background: #ecf0f1;
}

.secondary-btn:hover {
    background: #bdc3c7;
}

.contact-support {
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
   padding: 1.5rem;
   border-radius: 8px;
   color  :    #2c3e50;
}


.contact-support p {
   margin-bottom    :    0.5rem;
   font-size    :      0.95rem;
}

.testimonial-section {
    background: #f8f9fa;
  padding: 4rem 2rem;
}

.testimonial-container  {
   max-width: 1200px;
    margin: 0 auto;
} 

.testimonial-container h2 {
    font-size: 2.2rem;
  color: #1a1f2e;
	text-align: center;
  margin-bottom: 3rem;
     }


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;

}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3498db;
}

.testimonial-text   {
   color: #2c3e50;
	 font-size: 0.95rem;
               line-height    :      1.7;
  margin-bottom: 1.5rem;
   font-style: italic;

}

.testimonial-author {
   color: #7f8c8d;
		 font-weight : 600;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .thankyou-wrapper {
        padding: 2rem;
    }

    .thankyou-wrapper h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-item h2 {
        font-size: 1.2rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .thankyou-wrapper {
        padding: 1.5rem;
    }

    .steps-list li {
        gap: 0.8rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}.policySection {
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 300px);
}



.policyContainer {
	max-width: 800px;
  margin: 0 auto;
	text-align: left;
}

.policyContainer h1 {
	 font-size: 3rem;
  color     :   #1a1f2e;
    margin-bottom: 2rem;
   font-weight    :  700;
   line-height: 1.2;
}

.policyContainer h2
{
    font-size: 1.8rem;
   color: #2c3e50;
  margin-top :2.5rem;
   margin-bottom: 1.2rem;
   font-weight: 700;
   border-left: 4px solid #3498db;
		 padding-left: 1rem; 

}

.policyContainer p {
   color:     #7f8c8d;
    margin-bottom    :        1.5rem;
	line-height: 1.8;
  font-size: 1rem;
	text-align: justify;
}

.policyContainer p:first-child {
  font-size: 1.1rem;
   color: #34495e;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-left: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
}