* {
  margin: 0;
                    padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior:smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
	background-color: #fff;
  line-height    :        1.6;
}

.section-container {
  max-width: 1200px;
   margin: 0 auto;
	 padding  :   0 20px;
     }

h1, h2, h3, h4, h5, h6 {
   line-height: 1.3;
    font-weight: 600;
}

h1 {
  font-size: 3.5rem;
   margin-bottom: 1rem;
  color: var(--primary-color);
}

h2 {
  font-size  :   2.5rem;
	margin-bottom: 1.5rem;
  color: var(--primary-color);
   text-align: center;
}

h3 {
       font-size: 1.5rem;

	   margin-bottom: 0.8rem;

	  color: var(--primary-color);
}

p {

	  font-size:  1rem;
  color: var(--text-light);
   margin-bottom: 1rem;
	}

.navbar {
  background-color: var(--primary-color);
    padding: 1rem 0;
  position: sticky;
	 top: 0;
   z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar-container {

	      max-width: 1200px;
    margin    :        0 auto;
  padding: 0 20px;
    display: flex;
   justify-content: space-between;
	 align-items: center;
}

.nav-logo-wrapper {
    flex-shrink: 0;

}

.nav-logo {
  height: 50px;

	    width : auto;

	  filter: brightness(0) invert(1);

}

.nav-menu {
    display: flex;
   list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item a    {

   color: #fff;
   text-decoration   :    none;
  font-size: 1.1rem;
   font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
   border-radius: 4px;}

.nav-item a:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.burger-menu {
	         display: none;
	background: none;
   border: none;
   cursor: pointer;
  flex-direction: column;
	 gap: 5px;

}

.burger-line {
  width: 25px;
          height: 3px;
   	background-color: #fff;
       border-radius: 2px;
     transition: var(--transition);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--primary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        display: block;
        padding: 1rem 20px;
        border-radius: 0;
    }

    .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);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}.hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
   color: white;
    padding    :        100px 20px;
    text-align: center;
   min-height: 500px;
  display: flex;
    align-items: center;
    justify-content: center;

}

.hero-content {
               max-width    :        800px;
}

.hero-subtitle {
         font-size: 1.3rem;
    margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-button-primary
{
      display: inline-block;
  background-color: #e74c3c;
   color   :     white;
    padding: 15px 40px;
  text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
   border: 2px solid #e74c3c;
   cursor: pointer;
}

.cta-button-primary:hover     {
    background-color: transparent;
 color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.services-preview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-intro {
   font-size: 1.2rem;

  color: var(--text-light);

   text-align: center;

  margin-bottom: 3rem;

}

.services-grid {
          display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
  margin-top: 2rem;
}

.service-card {
    background: white;
   padding: 2rem;
   border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
   text-align   :   center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 180px;
    margin-bottom: 1.5rem;
  border-radius: 6px;
   width: 100%;
               object-fit     :   cover;
}

.service-card h3 {


    margin-bottom: 1rem;}

.service-card p {
	font-size: 0.95rem;
	 line-height: 1.5;
}

.benefits-section {

	   padding: 80px 20px;
    background-color    :     white;
}

.benefits-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :     2.5rem;
    margin-top: 2rem;
} 

.benefit-item {
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
 background-color   : #f8f9fa;
    border-radius: 4px;
  transition: var(--transition);
}

.benefit-item:hover {
  background-color: rgba(52, 152, 219, 0.05);
  transform: translateX(5px);
}

.benefit-item h3 {
  color: var(--accent-color);
	  margin-bottom: 0.8rem;
}

.testimonials-section {
   padding: 80px 20px;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 2rem;
}

.testimonial-card {
     background: white;
    padding  :       2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-color);} 

.testimonial-text 
 {
         font-size: 1rem; 
         font-style: italic; 
  color: var(--text-dark); 
  margin-bottom    :      1rem; 
	 line-height     : 1.7;
}

.testimonial-author{


    font-weight: 600;
  color: var(--primary-color);
			font-size: 0.95rem;}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
}

.cta-box {
    max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
   color: white;
   margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
 margin-bottom: 2rem;
}

.contact-section {
  padding: 80px 20px;
  background-color: white;
}

.contact-form {
    max-width: 600px;
  margin: 2rem auto;
    background-color: #f8f9fa;
    padding  :      2.5rem;
         border-radius: 8px;
  box-shadow: var(--shadow);
}

.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: 12px 15px;
  border: 2px solid var(--border-color);
   border-radius: 6px;
    font-family: inherit;
   font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline     :      none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
      resize: vertical;
        font-family: inherit;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 30px;
  background-color: var(--accent-color);
  color: white;
    border   :     none;
        border-radius: 6px;
    font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition: var(--transition);
}

.form-submit-btn:hover {
  background-color: #2980b9;

	  transform: translateY(-2px);

	  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.footer {
  background-color: var(--primary-color);
    color: white;
   padding: 50px 20px 20px;
}

.footer-container {
    margin   :     0 auto;
	max-width: 1200px;
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :     2rem;
  margin-bottom: 2rem;
}  

.footer-section h3 {
     color: white;
    font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-logo-img {

	   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
	}

.footer-links {
    list-style: none;
} 

.footer-links li


{
    margin-bottom: 0.8rem; 

}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
   font-size: 0.95rem;
   line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
   margin-bottom: 0.5rem;
}

.footer-phone {
  color: var(--accent-color);
               font-weight  :   600;
    margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
    font-size :  0.95rem;
  line-height:  1.6;

}

.footer-bottom {
	text-align: center;
  padding-top   :    2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
	 font-size: 0.9rem;
}  @media (max-width: 768px) {
    .hero-banner {
        padding: 60px 20px;
        min-height: 400px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .benefits-content,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-preview,
    .benefits-section,
    .testimonials-section,
    .cta-section,
    .contact-section {
        padding: 50px 20px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero {


  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color   : white;
    padding: 80px 20px;
    text-align :   center;
   margin-top     :        60px;


}

.services-hero h1 {

   color   :  white; 
	        font-size     :   3rem; 
	   margin-bottom: 1rem;
     }

.services-hero-subtitle {


   font-size  :   1.3rem;
  color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;

}

.services-detailed {
 background-color: white;
    padding: 80px 20px;
}



.service-detailed-item {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
	 align-items: center;
 margin-bottom: 4rem;
    padding: 2rem;
  background-color: #f8f9fa;
	 border-radius: 8px;
}

.service-detailed-item.alternate  {
   grid-template-columns: 1fr 1fr;

}

.service-detailed-item.alternate .service-detail-content {
    order: 2;
}


.service-detailed-item.alternate .service-detail-image

{
    order: 1;
}

.service-detail-content h2 {
    text-align   :   left;
    margin-top: 0;
  margin-bottom: 1rem;
}

.service-detail-content p {
  text-align :     justify;
   line-height: 1.8;
    margin-bottom: 1.5rem;
     }

.service-detail-image img	{
   width: 100%;
    height: auto;
	border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-features {
         display    :     grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
	margin: 2rem 0;
}

.feature-item h4 {
  color: var(--accent-color);
   margin-bottom: 0.5rem;
	 font-size: 1rem;
}

.feature-item p {

    font-size: 0.95rem;
  color: var(--text-dark);
   margin: 0;
     }

.service-cta {

   display: inline-block;
  background-color: var(--accent-color);
    color: white;
  padding: 12px 30px;
    text-decoration: none;
  border-radius     :     50px;
    font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
  margin-top: 1rem;
}

.service-cta:hover{
    background-color: transparent;

  color: var(--accent-color);
}

.pricing-overview

{
  padding: 80px 20px;
   background-color: #f8f9fa;
}

.pricing-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
  margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
	 border-radius: 8px;
  box-shadow: var(--shadow);
   text-align :        center;
  transition: var(--transition);
	position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} 

.pricing-card.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-badge {
   position: absolute;
  top     :     -15px;
    left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
    color: white;
  padding: 8px 20px;
                    border-radius: 50px;
    font-size: 0.85rem;
   font-weight: 600;
}

.pricing-card h3 {
 font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-price {
  font-size  :       2rem;
  color: var(--accent-color);
  font-weight: 700;
	margin: 1rem 0 2rem;
}

.pricing-features {
  list-style: none;
   margin: 2rem 0;
	text-align: left;
}

.pricing-features li {
      padding: 0.8rem 0;
       border-bottom: 1px solid #e0e0e0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom:  none;
	
}

.faq-section {

  padding  : 80px 20px;
    background-color     :       white;

}

.faq-container {
    max-width: 800px;
   margin     :  3rem auto;
}



.faq-item {
   margin-bottom    :     1.5rem;
    border-radius: 8px;
   overflow  :      hidden;
  box-shadow: var(--shadow);
  background-color: white;
}

.faq-question

{
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: var(--transition);
   user-select: none;
}

.faq-question:hover {

	  background-color: rgba(52, 152, 219, 0.08);}

.faq-question h4 {

  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
	}

.faq-toggle {
    font-size   :   1.8rem;
  color: var(--accent-color);
  transition: var(--transition);
               font-weight: 300;
}

.faq-answer {
  max-height: 0;
   overflow     :  hidden;
  transition: max-height 0.3s ease;
     background-color: white;


}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
	  color: var(--text-light);
   line-height: 1.8;
    margin: 0;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.cta-services-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.cta-services-section .cta-box {
   max-width :   600px;

	  margin:  0 auto;

	   text-align: center;
     }

.cta-services-section .cta-box h2 {
   color: white;
}

.cta-services-section .cta-box p {
  color: rgba(255, 255, 255, 0.9);
   font-size     :      1.2rem;
    margin-bottom: 2rem;
}

.thankyou-section {
   padding: 80px 20px;
      background-color: #f8f9fa;
  min-height: calc(100vh - 200px);
    display  : flex;
   align-items:   center;
  justify-content: center;
               margin-top: 60px;
} 

.thankyou-content {
   max-width: 700px;
  background: white;
   padding: 3rem;
               border-radius  : 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
               text-align :   center;
}

.success-icon-wrapper {
  margin-bottom: 2rem;
}

.success-checkmark {
   width :       80px;
	height: 80px;
   margin: 0 auto;
  background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
  align-items: center;
   justify-content: center;
	 animation: scaleIn 0.5s ease;
}

.success-checkmark::after {
  content: '✓';
  font-size: 3rem;
   color: white;
  font-weight: bold;
}

.thankyou-content h1 {
  color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.thankyou-main-text {
  font-size: 1.3rem;
  color: var(--accent-color);
       font-weight: 600;
    margin-bottom: 2rem;
     }

.thankyou-details {
  border-radius: 8px;
 margin: 2rem 0;
   padding: 1.5rem;
  background-color   :        #f8f9fa;
    text-align: left;
}

.thankyou-details p {
  color: var(--text-light);
   line-height: 1.8;
}

.next-steps h3,
.thankyou-tips h3 {
	  color: var(--primary-color);
   text-align: center;
    margin: 1.5rem 0 1rem;
}

.steps-list {
    list-style: decimal;
   	 margin-left: 1.5rem;
     color: var(--text-light);
}

.steps-list li {
   margin-bottom: 0.8rem;
  line-height: 1.6;
}

.thankyou-tips {

                    margin-top     :       2rem;
    padding-top   :2rem;
    border-top: 2px solid #e0e0e0;
	}

.tips-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 1.5rem;
   margin-top  : 1.5rem;
}

.tip-card   {
    background     :    white;
      padding: 1.5rem;
	 border-radius: 8px;
  border-left: 4px solid var(--accent-color);
    text-align: left;
}

.tip-card h4 {
  color: var(--accent-color);
   margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tip-card p {
    font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height  :      1.5; 

}  

.thankyou-cta {
  display: flex;
    gap: 1rem;
  margin :        2rem 0;
    justify-content: center;
	flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
  color: var(--accent-color);
 padding: 12px 30px;
     text-decoration: none;
         border-radius :  50px;
    font-weight: 600;
	font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
  cursor: pointer; 

}

.cta-button-secondary:hover {

  background-color: var(--accent-color);
	color: white;
	
     }

.thankyou-footer-text {
  color: var(--text-light);
   font-size: 1rem;
    margin-top: 2rem;
}

.trust-section {
  padding: 60px 20px;
               background-color: white;
}

.trust-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap     :        2rem;
  margin-top: 2rem;
}

.trust-item {
  text-align: center;
     padding: 2rem;
   background-color: #f8f9fa;
  border-radius: 8px;
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}



.trust-number {
  font-size    :   2.5rem;
  color: var(--accent-color);
         font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
  color: var(--text-light);
  font-weight: 500;
} @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-detailed-item.alternate .service-detail-content {
        order: 1;
    }

    .service-detailed-item.alternate .service-detail-image {
        order: 2;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-cta {
        flex-direction: column;
    }

    .thankyou-cta a {
        width: 100%;
        text-align: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 1.5rem 1rem;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .success-checkmark::after {
        font-size: 2rem;
    }

    .thankyou-main-text {
        font-size: 1.1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 200px);
    margin-top: 60px;
}



.policyContainer {
  max-width: 800px;
    margin: 0 auto;
    text-align: left;
      background: white;
  padding: 3rem;
       border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policyContainer h1 {
    font-size: 3rem;
               color     :  #2c3e50;
	margin-bottom: 2rem;
   font-weight: 700;
 text-align: center;
}

.policyContainer h2  {
  font-size: 1.8rem;
  color: #2c3e50;
   margin-top: 2rem;
   margin-bottom: 1rem;
   font-weight: 600;
   border-bottom: 3px solid #3498db;
  padding-bottom: 0.5rem;
}

.policyContainer h2:first-of-type {
   margin-top: 0;
}

.policyContainer p {
   color   : #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1rem;
    text-align: justify;
}

.policyContainer p:last-child {
	margin-bottom: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        margin-top: 0;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        margin-top: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }
}