*  {
  margin: 0;
   padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

html {
   scroll-behavior:    smooth;

}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
   background-color: #fff;
}

.container {
    max-width: 1200px;
  margin     : 0 auto;
    padding: 0 20px;
}

.navigation-bar {


  background: var(--primary-color);
  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 20px;
         display   :  flex;
    justify-content :        space-between;
  align-items: center;
}



.brand-logo {
	 height: 50px;
  filter: brightness(0) invert(1); 
	
}

.nav-menu {
	display: flex;
    gap: 2rem;
  align-items: center;
}

.nav-link {
	color: white;
    text-decoration: none;
  font-weight: 500;
    transition     :        color 0.3s ease;
	font-size: 1rem;

}

.nav-link:hover {
  color: var(--accent-color);
}

.burger-menu {
   border: none;
   padding: 8px;
	 flex-direction: column;
  cursor: pointer;
  background: none;
	 display: none;
  gap: 6px;
}

.burger-line {
 width     :  25px;
     height: 3px;
	 background: white;
  border-radius  :    2px;
  transition: all 0.3s ease;
}

.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(8px, -8px);
}  

.nav-menu.mobile-open {
 position: absolute;
   top: 70px;
  left: 0;
   right: 0;
  background: var(--primary-color);
    flex-direction: column;
  gap: 0;
	padding:    1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-menu.mobile-open .nav-link {
         padding: 0.75rem 1.5rem;
  display: block;
}

.hero-section {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
                    align-items   :        center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero-content h1 {
   font-size: 3.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  line-height  :        1.2;
    font-weight :  700;
}

.hero-content p {

                    font-size: 1.1rem;
   color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.8;}

.cta-button


{
  display: inline-block;
  background: var(--secondary-color);
    color: white;
      padding: 1rem 2.5rem;
	text-decoration    :        none;
  border-radius: 6px;
   font-weight: 600;
       transition  :  all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.cta-button:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.hero-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-preview	{
   padding:      5rem 0;
   background: white;
	
}

.services-preview h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   text-align: center;
  margin-bottom: 3rem;
   font-weight: 700;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
}

.service-card {
  background: var(--light-bg);
    padding :      2rem;
    border-radius: 10px;
  border: 1px solid var(--border-color);
   transition    :     all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 60px;
   height: 60px;
   margin-bottom: 1.5rem;
}

.service-icon img {
   width: 100%;
  height: 100%;
  stroke: var(--secondary-color);
}

.service-card h3
{
    font-size: 1.3rem;

  color: var(--primary-color);

     margin-bottom: 0.75rem;

    font-weight: 600;
}

.service-card p {
               line-height: 1.6;
  font-size: 0.95rem;
  color  :   #6b7280;
}

.gallery-section {
    padding: 5rem 0;
  background: var(--light-bg);
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
			text-align     :    center;
   margin-bottom: 3rem;
   font-weight: 700;
}

.gallery-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
   overflow: hidden;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
   height: 100%;
    object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img
	{
  transform: scale(1.08);
}

.benefits-section {
     padding: 5rem 0;
   background: white;}

.benefits-section h2	{
    font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
	font-weight: 700; 
	
}

.benefits-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item

{
   	 display: grid;

               grid-template-columns: auto 1fr;

	 gap: 1.5rem;

    align-items: start;

  padding: 2rem;

  border-left: 4px solid var(--secondary-color);

  background: var(--light-bg);

   border-radius: 8px;

    transition: all 0.3s ease;
	}

.benefit-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.benefit-number {
  font-size     :        2rem;
   font-weight: 700;
  color: var(--secondary-color);
    min-width     :    50px;
}

.benefit-item h3 {
    font-size: 1.2rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
   font-weight :    600; 

}

.benefit-item p {
   color: #6b7280;
	font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color  :   white;
    padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
    margin-bottom    :    1rem;
}

.cta-section p {
  font-size: 1.2rem;
	 margin-bottom: 2rem;
  opacity: 0.95;


}

.cta-button-large {
  display: inline-block;
  background: var(--accent-color);
   color: white;
  padding :      1.2rem 3rem;
	 text-decoration: none;
	border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button-large:hover {
  transform: translateY(-3px);
   background: transparent;
	border-color: white;
}

.contact-section {
	          padding: 5rem 0;
  background: var(--light-bg);


}

.contact-section h2 {
	  font-size: 2.5rem;
  color: var(--primary-color);
               text-align: center;
    margin-bottom: 3rem;
    font-weight: 700; 
	


}

.contact-form {
  max-width: 600px;
	 margin: 0 auto;
    background     :  white;
          padding: 2.5rem;
   border-radius     :12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}  

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
      display: block;
  margin-bottom: 0.5rem;
       font-weight: 600;
  color: var(--primary-color);


}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
               padding  :     0.75rem 1rem;
  border: 1px solid var(--border-color);
         border-radius  :       6px;
    font-family: inherit;
	font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); 
	
}

.submit-button {
    width: 100%;
    padding: 1rem;
  background: var(--secondary-color);
    color: white;
   border: none;
    border-radius: 6px;
  font-weight: 600;
   font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover

{
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-preview h2,
    .gallery-section h2,
    .benefits-section h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .gallery-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}svg {
  stroke: var(--secondary-color);
   fill: none;
   stroke-width: 1.5;
      stroke-linecap: round;
    stroke-linejoin: round;
  transition: all 0.3s ease;
}

.service-card:hover svg {
  stroke: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.3));
}

.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color  : white;
    padding: 4rem 0;
    text-align    :   center;
}

.services-hero h1 {
	font-size:  3rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.services-hero p {
        font-size: 1.2rem;
   opacity: 0.95;
}

.services-full {
    padding: 5rem 0;
}



.service-full-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap:     3rem;
   align-items: center;
    margin-bottom: 4rem;
}

.service-full-item.reverse {
   grid-template-columns: 1fr 1fr;
}

.service-full-item.reverse .service-full-image	{
	 order: 2;
}

.service-full-item.reverse .service-full-content {

	  order: 1; 



}

.service-full-image {
  overflow: hidden;
     border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-full-image img {
    transition: transform 0.4s ease;
    width: 100%;
  height: 400px;
  object-fit  :  cover;
}

.service-full-item:hover .service-full-image img {
  transform: scale(1.05);
}

.service-full-content h2 {
   font-size: 2.2rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
          font-weight: 700;
}

.service-full-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
   color :        #4b5563;
    font-size: 1rem;
}

.service-benefits {
   list-style: none;
}

.service-benefits li {
   position: relative;
    font-size: 0.95rem;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #555;
}

.service-benefits li:before {
  content: "";
    position: absolute;
   left  :  0;
  top: 1.2rem;
  width:      8px;
   height: 8px;
  background: var(--secondary-color);
    border-radius: 50%; 

}

.pricing-section	{
   padding: 5rem 0;
  background: var(--light-bg);
}

.pricing-section h2 {
   font-size :  2.5rem; 
  color: var(--primary-color); 
    text-align: center; 
  margin-bottom:3rem; 
  font-weight: 700;
}

.pricing-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
     }

.pricing-card {
 background: white;
    border-radius: 12px;
  border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
   display: flex;
   flex-direction: column;
    position: relative;
}

.pricing-card:hover{

	  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--secondary-color);


}

.pricing-card.featured {
  border-color: var(--secondary-color);
    background: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15); 
	
}

.pricing-card.featured:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
}

.pricing-badge {
  position: absolute;
	       top: 20px;
	  right: 20px;
	  background: var(--secondary-color);
	   color: white;
	    padding: 0.5rem 1rem;
	  border-radius: 20px;
	   font-size: 0.8rem;
	    font-weight: 600;
}

.pricing-header {
   padding: 2rem;
  border-bottom: 1px solid var(--border-color);

}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
    font-weight:  600;
}

.pricing-price {
    font-size: 2.2rem;
  color: var(--secondary-color);
   font-weight    :      700;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
          flex-direction  :       column;
}

.pricing-desc  {


   color: #6b7280;
    font-size: 0.95rem;
    margin-bottom   :  1.5rem; 



}

.pricing-features		{
   list-style: none;
       margin-bottom: 2rem;
   flex-grow :  1;
}

.pricing-features li {
  padding: 0.6rem 0;
          color: #555;
  font-size: 0.9rem;
   padding-left: 1.5rem;
   position: relative;
	
}

.pricing-features li:before {
  content: "";
        position: absolute;
  left: 0;
  top: 0.8rem;
	 width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.pricing-button 
 {
					display: inline-block;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
  border-radius: 6px;
	font-weight :   600;
  text-align: center;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
   transition: all 0.3s ease;
}

.pricing-button:hover {
  background: var(--secondary-color);
   color: white;
}

.pricing-button.primary 
 {
  background: var(--secondary-color);
	color     :  white;
}

.pricing-button.primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.process-section {
  padding: 5rem 0;

	    background: white;
}

.process-section h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
      text-align: center;
		 margin-bottom: 3rem;
  font-weight: 700;
}

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}



.process-step {
  background: var(--light-bg);
	 padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition     :       all 0.3s ease;
	border: 2px solid transparent;
}

.process-step:hover {
  border-color: var(--secondary-color);
    background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-number 
 {
  font-size: 2.5rem;
	font-weight: 700;
  color: var(--secondary-color);
    margin-bottom :      1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
   font-weight: 600;
}

.process-step p {
 color: #6b7280;
   font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-section {
	 padding: 5rem 0;
  background: var(--light-bg);
}

.testimonials-section h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
       font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
    border-radius :   10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-text {
   margin-bottom  :        1.5rem;
}

.testimonial-text p {
  font-size: 0.95rem;
	color  :        #555;
  line-height: 1.8;
   font-style: italic;
}

.testimonial-author {
     border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
	}

.author-name {
    font-weight: 600;
  color: var(--primary-color);
    font-size: 1rem;
  margin-bottom: 0.3rem;
}

.author-title {
  font-size: 0.85rem;
  color: #6b7280;
}


.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
       justify-content   :     center;
  padding: 2rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--light-bg) 100%);
}

.thankyou-container {
	text-align:center;
					background: white;
    padding: 3rem;
   border-radius   :       16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
}

.success-icon {
	width: 100px;
   height: 100px;
    margin: 0 auto 2rem;
    display: flex;
      align-items   :    center;
                    justify-content: center;
}

.success-icon img {
  width: 100%;
    height: 100%;
  stroke: var(--success-color);
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.thankyou-section h1 {
  font-size     :      2.5rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
  font-weight: 700;
}

.thankyou-main-text {
       font-size: 1.3rem;
  color: var(--success-color);
  font-weight: 600;
       margin-bottom :       1.5rem;
}

.thankyou-content {
  color: #555;

	    font-size: 1rem;

	               line-height:   1.8;

	  margin-bottom: 2rem;
}

.thankyou-content p {
  margin-bottom: 1rem;
}

.thankyou-actions {
               display :  flex;
  gap: 1rem;
      justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
   border: 2px solid transparent;
	transition: all 0.3s ease;
  padding: 0.9rem 2rem;
  display: inline-block;
   text-decoration: none;
   font-weight  :     600;
    border-radius: 6px;
}

.btn-primary{
  background: var(--secondary-color);
	color: white;

	}

.btn-primary:hover {

	  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);}

.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}


.btn-secondary:hover  
  {
  background: var(--secondary-color);
    color: white;
}

.thankyou-details {
  background: var(--light-bg); 
		padding: 1.5rem; 
	    border-radius: 10px; 
	    text-align: left; 
	  border-left: 4px solid var(--secondary-color);
}

.thankyou-details h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
	font-weight: 600;
}

.details-list {
  list-style: none;
}

.details-list li  
  {
  padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
   color  :      #555;
    font-size: 0.9rem;
}

.details-list li:before   {
  content: "";
   position   :   absolute;
  left: 0;
   top: 0.8rem;
    width: 6px;
          height: 6px;
  background: var(--secondary-color);
   border-radius: 50%;
	
}

.faq-quick


{
	  padding: 5rem 0;
	background     :      white;
} 

.faq-quick h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
       text-align: center;
   margin-bottom: 3rem;
  font-weight: 700;
}

.faq-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
  background: var(--light-bg);
	padding  :   2rem;
   border-radius: 10px;
   transition: all 0.3s ease;
}

.faq-item:hover {
	 background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-item h3 {
	 font-size     : 1.1rem;
  color: var(--primary-color);
    margin-bottom: 0.75rem;
  font-weight: 600;

}

.faq-item p {
   color: #6b7280;
  font-size: 0.9rem;
    line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-full-item {
        grid-template-columns: 1fr;
    }

    .service-full-item.reverse .service-full-image,
    .service-full-item.reverse .service-full-content {
        order: unset;
    }

    .service-full-image img {
        height: 300px;
    }

    .service-full-content h2 {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section h2,
    .process-section h2,
    .testimonials-section h2,
    .faq-quick h2 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }
}svg {
  stroke: var(--success-color);
    fill: none;
   stroke-width: 1.5;
       stroke-linecap: round;
        stroke-linejoin :    round;
}

.policy-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    min-height: 70vh;
}

.policy-container {
	   max-width: 800px;
               margin: 0 auto;
	text-align: left;
   background: white;
  padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

.policy-container h1 {
    font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
		 font-weight: 700;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 1rem;
}

.policy-container h2  {
   font-size: 1.8rem;
  color: var(--primary-color);
    margin-top: 2rem;
      margin-bottom: 1rem;
    font-weight: 600;
}

.policy-container p {
     color: #555;
   margin-bottom: 1.2rem;
   line-height: 1.8;
   font-size: 1rem;
     }

.policy-container h2:first-of-type {
   margin-top: 0;
}

.policy-container h2 {
   padding-left: 1rem;
      position: relative;
}

.policy-container h2:before {

  content: "";
  position: absolute;
	left: 0;
  top  : 0;
  bottom: 0;
   width: 4px;
  background: var(--secondary-color);
  border-radius  :2px;}

.policy-container ul {
    margin-bottom   :  1.2rem;
   margin-left:       2rem;
}

.policy-container li {
    color: #555;
   margin-bottom: 0.6rem;
  line-height: 1.6;

}


.policy-container strong {
  color: var(--primary-color);
       font-weight: 600;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .policy-container h2:before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}

@media print {
    .policy-section {
        background: white;
        padding: 0;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
        background: white;
    }

    .navigation-bar,
    .main-footer {
        display: none;
    }
}.main-footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: #fff;
                    padding: 60px 20px 30px 20px;
}

.footer-container {
   max-width: 1200px;

	         margin   :       0 auto;

	    display: flex;

	   flex-wrap: wrap;

	     gap: 40px;

	   justify-content: space-between;
}

.footer-brand {
   display: block;
  margin-bottom: 24px;
     max-height: 52px;
  filter: brightness(0) invert(1);
}

.footer-section {


   min-width: 220px;
  flex: 1 1 200px;
     }

.footer-section h3 {
  color: #fff;
  font-size   :  1.15rem;
    margin-bottom: 15px;
   letter-spacing :   1px;
   font-weight    :    600;
}

.footer-section ul{
  list-style: none;
    padding: 0;
}

.footer-section li {
   margin-bottom: 10px;
}

.footer-section a {
  color   :        #fff;
   text-decoration    :      none;
   transition    :   color 0.3s;
	
}

.footer-section a:hover {

	  color: var(--accent-color);
      text-decoration: underline;

}

.footer-address,
.footer-phone		{
    color: #fff;
				 font-size:        1rem;
  margin-bottom: 8px;
  opacity    :      0.92;
}

.footer-bottom {
      text-align  :    center;
	    padding-top: 22px;
	  color: var(--light-bg);
	        font-size: 0.98rem;
	  opacity: 0.8;
	  border-top: 1px solid rgba(255,255,255,0.12);
	  margin-top  :        38px;
	}@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}