* {
    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: #ffffff;
    border-bottom: 1px solid #e8e8e8;
  position   :      sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
   margin   :0 auto;
  padding: 1rem 2rem;
   display: flex;
    justify-content: space-between;
	 align-items: center;
}

.logo-section {
   flex: 0 0 auto;
  -ms-flex: 0 0 auto;
}

.logo {
     width: auto; 
	   height: 50px;
}

.nav-menu {
	display  : flex;
          gap     :2rem;
   list-style: none;
}

.nav-link 
 {
	text-decoration: none;
	color: #2c3e50;
  font-weight: 500;
   transition: color 0.3s ease;
   font-size    :    0.95rem;
}

.nav-link:hover {
  color :    #3498db;
}

.burger-menu {
    display: none;
    background    :      none;
  border    :      none;
  cursor: pointer;
  flex-direction: column;
   gap: 5px;
         padding     :  0.5rem;
}


.burger-line {
   width: 25px;
   height :        3px;
   background: #2c3e50;
  transition     :     all 0.3s ease;
    display: block;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.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 {
    max-width: 1200px;
    margin :0 auto;
    padding    : 3rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center; 
	
}

.hero-content h1


{


   font-size: 2.5rem;
	line-height: 1.2;
   margin-bottom: 1rem;
  color: #1a252f;
    font-weight: 700;


}

.hero-subtitle {


   font-size: 1.1rem;
   color: #555;
    margin-bottom :2rem;
  line-height: 1.8;
	}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
   padding:0.9rem 2rem;
  border-radius: 6px;
    text-decoration: none;
   font-weight: 600;
		transition  :      all 0.3s ease;
  cursor: pointer;
  border: none;
    font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3); 

}

.hero-image {
         width     :  100%;
    height: auto;
  border-radius: 8px;
   object-fit: cover;
}  

.services-overview {

	  max-width: 1200px;
	 margin: 4rem auto;
	padding: 2rem;


}

.services-overview h2 {
   font-size: 2rem;
		text-align: center;
    margin-bottom: 3rem;
   color: #1a252f;
}

.services-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	   gap   :        2rem;
}

.service-card {
	background:    #ffffff;
               border-radius: 8px;
	overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
   width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
               padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
}  

.service-card p {
	padding: 0.5rem 1.5rem 1.5rem;
    font-size   :   0.95rem;
               color:#555;
    line-height: 1.7;
}

.offerings-section {
   max-width: 1200px;
  margin: 4rem auto;
    padding: 2rem;
}


.offerings-section h2 {
    font-size: 2rem;
  text-align: center;
    margin-bottom: 3rem;
  color: #1a252f;
}

.offerings-content {

               display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;


}

.offering-item {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
               padding: 2rem;
    border-radius: 8px;
   border-left: 4px solid #3498db;
}

.offering-item h3 {
   font-size: 1.2rem;
    margin-bottom: 1rem;
	color: #2c3e50;
}

.offering-item p {
     font-size: 0.95rem; 
	      color: #555; 
	  line-height: 1.7;
}

.cta-section {


  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 3rem 2rem;
    text-align: center;
  margin    :      4rem 0;


}

.cta-wrapper  
  {
	 max-width: 800px;
  margin: 0 auto;
}

.cta-section h2	{
  font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height    : 1.8;
}

.cta-button-primary {
    display: inline-block; 
	  background   :    #3498db; 
	   color:        #ffffff; 
	   padding: 1rem 2.5rem; 
	    border-radius    :   6px; 
	    text-decoration: none; 
	  font-weight: 600; 
					 transition: all 0.3s ease; 
	   font-size: 1.05rem;}

.cta-button-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.contact-section{
  max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.contact-section h2 
 {
        font-size: 2rem;
    text-align:   center;
	 margin-bottom: 2rem;
    color: #1a252f;
	
}

.contact-container {
       background: #ffffff;
	padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   max-width: 600px;
   margin: 0 auto;
}

.contact-form {
  display: flex;
    flex-direction: column;
   gap  :   1.5rem; 
	
}

.form-group {
  display: flex;
    flex-direction: column;

}

.form-group label {
	 font-weight: 600;
   margin-bottom:     0.5rem;
   color: #2c3e50;
     font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {

   padding: 0.8rem;
       border  :        1px solid #ddd;
	border-radius: 6px;
   font-family: inherit;
    font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.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);
}

.submit-button {

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
   padding: 1rem;
    border: none;
  border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
   cursor: pointer;
   transition    :    all 0.3s ease;
}

.submit-button:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);


}

.footer-section {
    background  :    #1a252f;
    color: #ecf0f1;
     padding: 3rem 2rem 1.5rem;
	margin-top :   4rem;
}

.footer-content		{
  max-width: 1200px;
 margin   :0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
       margin-bottom: 2rem;
}

.footer-logo-img {
   height: 40px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h3 {
      font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-address,
.footer-phone
{
   font-size: 0.9rem;
   line-height: 1.8;
    color: #bdc3c7;
}

.footer-links h4 {
	  font-size: 1rem;
  margin-bottom: 1rem;

	}

.footer-links ul {

	         list-style: none;


}

.footer-links li {
   margin-bottom    : 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
    text-decoration: none;
  font-size: 0.9rem;
 transition: color 0.3s ease; 

}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
   padding-top  :   1.5rem;
   border-top :       1px solid #34495e;
   color: #95a5a6;
  font-size: 0.85rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        padding: 1rem 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offerings-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-overview h2,
    .offerings-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-primary {
        width: 100%;
        text-align: center;
    }

    .nav-container {
        padding: 1rem;
    }

    .services-grid {
        gap: 1rem;
    }
}.services-hero {

	  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
                    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
   margin-bottom: 3rem;
     } 

.services-hero-content h1 {
     font-size :2.5rem;

	  margin-bottom: 1rem;

	         font-weight: 700;
}

.services-hero-content p {
  font-size: 1.1rem;
    max-width: 800px;
   margin: 0 auto;
  line-height: 1.8;
    opacity: 0.95;


}

.services-detailed {
    max-width: 1200px;
    margin: 4rem auto;
   padding: 2rem;
}

.services-detailed h2 {
  font-size: 2rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #1a252f;
}

.services-list {
  grid-template-columns: 1fr;
	display     :     grid;
  gap    :2.5rem;
}

.service-detail-card {
  background: #ffffff;
 border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail-card:hover

{
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px); 

}

.service-detail-header {

	   display: flex;
    justify-content: space-between;
  align-items    :       center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    border-bottom: 2px solid #3498db;
}

.service-detail-header h3 {
  font-size: 1.4rem;
  color: #2c3e50;
	margin: 0;
	
}

.service-duration

{
    background: #3498db;
  color: #ffffff;
          padding   :    0.4rem 1rem;
	border-radius: 20px;
    font-size: 0.85rem;
   font-weight: 600;

} 

.service-detail-image {
  width     :     100%;
    height: 280px;
  object-fit: cover;
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-content p
	{
    font-size: 1rem;
   color: #555;
  line-height: 1.8;
	margin-bottom :        1.5rem;


}

.service-features   {
    list-style: none;
    display  :     grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-features li {
     padding-left: 1.5rem;
	    position:    relative;
	  color: #555;
	  font-size: 0.95rem;
}

.service-features li:before {
	  content: "✓";
    position: absolute;
  left: 0;
    color: #2ecc71;
  font-weight: bold;
   font-size: 1.2rem; 
	
}

.services-packages {
      max-width: 1200px; 
  margin: 4rem auto; 
    padding:  2rem;}

.services-packages h2 {
 font-size: 2rem;
    text-align     :      center;
  margin-bottom: 3rem;
	color: #1a252f;
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: #ffffff;
	border-radius: 8px;
  padding   :        2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
                    border-top: 4px solid #3498db;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); 
	
}

.package-featured

{

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
       color: #ffffff;
  transform: scale(1.05);
   border-top: none; 
	}

.package-featured .package-name,
.package-featured .package-price,
.package-featured .package-list li,
.package-featured .package-description {
  color :       #ffffff;
}

.package-featured .package-list li:before {
            color :       #2ecc71;

}

.package-name {
    font-size: 1.3rem; 
          font-weight:   700; 
   margin-bottom: 0.5rem; 
   color   :  #2c3e50;
}

.package-price {
   font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
       color: #3498db;
}

.package-featured .package-price {
    color: #ecf0f1;
}

.package-list {

  list-style: none;
	 margin-bottom   :     1.5rem;
    flex-grow     :    1;
}

.package-list li {
  padding:0.6rem 0;
    padding-left: 1.5rem;
	 position: relative;
	color: #555;
       font-size  :    0.95rem;
}

.package-list li:before

{

  content: "✓";
     position: absolute;
        left: 0;
  color     :       #2ecc71;
    font-weight: bold;
	}

.package-description  {
		font-size: 0.9rem;
	   color: #888;
	    font-style: italic;
	}

.services-process {
  max-width: 1200px;
    margin: 4rem auto;
   padding: 2rem;
}

.services-process h2 {
	    font-size    :        2rem;
    text-align: center;
  margin-bottom: 3rem;
   color: #1a252f;
}

.process-steps {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;


}

.process-step 
 {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
	    padding: 2rem;
		border-radius: 8px;
	     text-align: center;
	   transition: all 0.3s ease;
}

.process-step:hover  
  {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  transform: translateY(-5px);
}

.step-number {
  display :     inline-flex;
	   align-items :     center;
	   justify-content: center;
	   width: 50px;
	  height: 50px;
		background: #3498db;
	  color: #ffffff;
		 border-radius: 50%;
	               font-size: 1.5rem;
	  font-weight:        700;
	   margin-bottom:  1rem;
}

.process-step:hover .step-number {
	  background: #2ecc71;
     }

.process-step h3 {
   font-size: 1.1rem;
   margin-bottom: 0.8rem;
  color: #2c3e50;
}

.process-step:hover h3 {
   color: #ffffff;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
 line-height   :   1.6;
}

.process-step:hover p {
   color:#ecf0f1;
}

.services-benefits		{
	  max-width    :      1200px;
  margin: 4rem auto;
  padding: 2rem;}

.services-benefits h2 {
    font-size: 2rem;

	                    text-align  :center;

	         margin-bottom: 3rem;

	   color  :     #1a252f;
}

.benefits-container 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-box {
   background: #ffffff;
    padding     :2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #3498db;
   transition: all 0.3s ease;
}

.benefit-box:hover {


  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-left-color: #2ecc71;
}

.benefit-box h3 {
   font-size: 1.15rem;
    margin-bottom: 1rem;
               color: #2c3e50;
}

.benefit-box p     {
   font-size: 0.95rem;
    color: #555;
	 line-height: 1.7;
}

.services-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  padding: 3rem 2rem;
    text-align: center;
                    margin: 4rem 0;
}

.services-cta h2 {


	font-size  :  2rem;
   margin-bottom: 1rem;
	}

.services-cta p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
	line-height     :       1.8;
}

.cta-button-large {
    font-size: 1.05rem;
  padding  :1rem 2.5rem;
   color: #ffffff;
  transition: all 0.3s ease;
   text-decoration  :      none;
  display: inline-block;
	 background: #2ecc71;
    font-weight: 600;
  border-radius: 6px;
}

.cta-button-large:hover {
        background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
   max-width: 800px;
	margin: 4rem auto;
  padding:       2rem;
       min-height: 60vh;
  display  :        flex;
  align-items   :    center;
	justify-content: center;
}

.thankyou-container  
  {
    background: #ffffff;
    border-radius     :  12px;
    padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
          animation: slideUp 0.5s ease;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-icon {
    margin-bottom: 2rem;
  display: flex;
   justify-content: center;
	
}

.success-checkmark {
    width: 100px;
   height: 100px;
   animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-container h1 {
   font-size    :        2.2rem;
     color     :       #2ecc71;
   margin-bottom: 1rem;
                    font-weight: 700;
}

.thankyou-message {
  font-size: 1.3rem;
                    color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 600;
}

.thankyou-description {
    font-size: 1rem;
    color: #555;
  line-height: 1.8;
   margin-bottom: 2rem;
}

.thankyou-info {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 2rem;
  border-radius: 8px;
   margin-bottom: 2rem;
   text-align: left;
}

.thankyou-info h3 {
	 font-size: 1.1rem;
  color: #2c3e50;
   margin-bottom: 1rem;
  text-align: center; 

}

.thankyou-info ul {
	list-style: none;
   display: grid;
    gap: 0.8rem;
}  

.thankyou-info li
{
   position:    relative;
    font-size    :   0.95rem;
               padding-left: 1.5rem;
	color: #555;
}

.thankyou-info li:before {
	  font-weight: bold;
  left: 0;
    position     :    absolute;
  color: #3498db;
  content: "→";


}

.thankyou-actions   {
	    display     : grid;
	 grid-template-columns: 1fr 1fr;
    gap :  1rem;
         margin-bottom: 2rem;

}

.button-return,
.button-services {
   display: inline-block;
  padding: 0.9rem 1.5rem;
   border-radius: 6px;
    text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
   font-size: 0.95rem;

}

.button-return {

    color: #ffffff;
  background: #3498db;
	}

.button-return:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.button-services {
	 background: #ecf0f1;
	color: #2c3e50;
  border: 2px solid #3498db;
	
}

.button-services:hover {
  background: #3498db;
    color: #ffffff;
}

.thankyou-contact {
    padding: 1.5rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
	 border-radius: 8px;
  color: #ffffff;
}

.contact-label {
   font-size: 0.95rem;
	 margin-bottom  :       0.5rem;
    opacity: 0.9;
}

.contact-phone {
    font-size: 1.2rem;
     font-weight: 600;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .success-checkmark {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-detail-header h3 {
        font-size: 1.2rem;
    }

    .thankyou-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-info {
        padding: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
    background    :        #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
	max-width: 900px;
    margin: 0 auto;
  text-align: left;
			background: #ffffff;
  padding: 3rem;
  border-radius    :    8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {

	   font-size: 2.8rem;
	 color: #1a252f;
   margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid #3498db;
	padding-bottom: 1rem;
	}

.policyContainer h2 {

	          font-size: 1.6rem;
	color: #2c3e50;
    margin-top: 2rem;
       margin-bottom: 1rem;
	 font-weight: 700;
    color: #3498db;
	}

.policyContainer p 
 {
  color: #555;
  margin-bottom: 1.5rem;
	 line-height: 1.8;
    font-size: 1rem;
}

.policyContainer strong {


  color: #2c3e50;
    font-weight: 600;
     }

.policyContainer ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.policyContainer li  {
       padding-left  :   1.5rem; 
  margin-bottom: 0.8rem; 
          position: relative; 
   color    :     #555; 
   line-height: 1.7; 
  font-size: 1rem;
}

.policyContainer li:before {

	  content: "•";
    position   :     absolute;
   left   :    0;
   color: #3498db;
  font-weight: bold;
    font-size: 1.2rem;


}

.navbar
{
   position: sticky;
    top :  0;
	z-index   :   1000;
}

.footer-section {
                    margin-top: auto;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
        padding-left: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 320px) {
    .policyContainer {
        padding: 1rem;
    }

    .policyContainer h1 {
        font-size: 1.4rem;
    }

    .policyContainer h2 {
        font-size: 1rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 0.85rem;
    }
}