* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
	
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
        color   :#333;
  background-color: #fafafa;
}

.container {
  padding: 0 20px;
   max-width: 1200px;
          margin: 0 auto;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navigation-bar 
 {
    display: flex;
   justify-content: space-between;
   align-items: center;
       padding:  1rem 2rem;
   max-width: 1200px;
    margin     :    0 auto;

}

.main-logo {
    height: 45px;
          width: auto;
}

.nav-menu {
     display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
    padding   :        0.5rem 1rem;
    border-radius: 25px;
	 transition: all 0.3s ease;
   color :     white;
   text-decoration: none;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.burger-toggle {
  display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.burger-toggle span {
  width     :  25px;
   height: 3px;
   background-color: white;
    transition: 0.3s;
   border-radius: 2px;
}

.hero-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
       padding: 4rem 2rem;
  min-height: 80vh;
  display: flex;
   align-items    :     center;
      justify-content: center;
}

.hero-content {
   max-width: 1200px;
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}



.main-heading {
  font-size: 3.2rem; 
          color: white; 
  font-weight: 700; 
    line-height: 1.2; 
   margin-bottom: 1.5rem; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}  

.hero-description {
    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
   margin-bottom: 2rem;
    line-height     :  1.7;
}

.primary-button {
  display: inline-block;
    background-color: white;
   color  :       #667eea;
   padding: 1rem 2.5rem;
    border-radius :  50px;
    text-decoration: none;
  font-weight: 600;
	 font-size    : 1.1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.primary-button:hover {
     transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-showcase {
    padding: 5rem 2rem;
    background-color    :white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
  content: '';
       position: absolute;
   bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
   width: 80px;
               height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.service-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
    margin-top: 4rem;


}

.service-card {
     background: white;
    border-radius: 20px;
   padding   :2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
   border: 1px solid #f0f0f0;
}

.service-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

}

.service-card img {
      width: 100%;
   height: 200px;
  object-fit    :        cover;
   border-radius: 15px;
    margin-bottom: 1.5rem;
     }

.service-card h3 {
    font-weight: 600;
       font-size: 1.4rem;
  color: #333;
  margin-bottom     :        1rem;
	}

.service-card p {
    color: #666;
     line-height :     1.6;
}

.about-preview {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	
}

.about-content {
    display: grid;

	    grid-template-columns: 1fr 1fr;

	  gap: 4rem;

	    align-items: center;
}

.text-section h2 {
    font-size: 2.5rem;
   color: white;
    margin-bottom: 2rem;
  font-weight: 600;
}

.text-section p {
  color: rgba(255,255,255,0.9);
   margin-bottom: 1.5rem;
  font-size: 1.1rem;
   line-height: 1.7;
}

.benefits-list

{
   list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
  color: white;
    padding: 0.7rem 0;
    font-size: 1.1rem;
   position: relative;
	padding-left  :      2rem;
}

.benefits-list li::before   {
  content: '✓';
    position: absolute;
  left: 0;
   color: #f093fb;
   font-weight: bold;
               font-size: 1.3rem; 
	
} 

.image-section img {
    width: 100%;
  height     : auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-section {
    padding: 4rem 2rem;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
   color: white;
         margin-bottom: 1.5rem;
  font-weight    :   700; 

}

.cta-content p
{
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
     margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left     :     auto;
  margin-right     :auto;
}

.cta-button {
  display: inline-block;
	 background-color: white;
   color: #f5576c;
    padding: 1.2rem 3rem;
  border-radius: 50px;
   text-decoration: none;
  font-weight: 700;
          font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-form-section {
   padding :   5rem 2rem;
    background-color: #f8f9fa;
	
}

.contact-form-section h2 {
    text-align: center;
   font-size: 2.5rem;
   color     :#333;
	 margin-bottom: 3rem;
}

.contact-wrapper {
   display: grid;
	grid-template-columns: 1fr 2fr;
    gap: 4rem;
  max-width :      1000px;
  margin: 0 auto;
}


.contact-info h3

{
			font-size: 1.5rem;
         color :       #667eea;
   margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}


.contact-item strong {

	    font-size: 1.1rem;
   display: block;
  color: #333;
   margin-bottom: 0.5rem;

}

.contact-item p {
   color: #666;
	 line-height: 1.6;
}

.contact-form {
   background: white;
      padding: 2.5rem;
   border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

}

.form-group {
  margin-bottom: 1.5rem;
	}

.form-group label {
 display: block;
  margin-bottom: 0.5rem;
                    font-weight: 600;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {

	               width: 100%;
   padding: 0.8rem 1rem;
     border: 2px solid #e0e0e0;
   border-radius: 10px;
   font-size: 1rem;
    transition: all 0.3s ease;



}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline : none;
  border-color: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   : white;
    padding: 1rem 2.5rem;
   border: none;
  border-radius: 50px;
    font-size     :      1.1rem;
  font-weight: 600;
    cursor  :     pointer;
    transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   gap     :       2rem;

   max-width: 1200px;

     margin: 0 auto;
	
}

.footer-logo {
		height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;

}

.footer-section h4 {
    margin-bottom: 1rem;
          font-size: 1.2rem;
               color :       #ecf0f1;
}

.footer-section p {
   color: #bdc3c7;
  line-height     :     1.6;
}

.footer-menu {
       list-style: none;
     }

.footer-menu li {
       margin-bottom: 0.5rem;
     }

.footer-menu a {
  color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
	   color: white;
	}

.footer-bottom {
    text-align: center;
  margin-top: 2rem;
    padding-top: 2rem;
    border-top     :1px solid #34495e;
  color: #95a5a6;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .burger-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .navigation-bar {
        padding: 1rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-banner,
    .services-showcase,
    .about-preview,
    .cta-section,
    .contact-form-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
    color: white;
}

.about-hero .container {
  max-width: 1200px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
   gap: 3rem;
    display: grid;
}

.about-title {
   font-size   :        2.8rem;
   font-weight: 700;
   line-height: 1.2;
  margin-bottom : 1.5rem;
}

.about-subtitle {
         font-size    :    1.2rem;
    line-height    :    1.7;
   opacity: 0.95;
}

.about-hero-image img {
  width     :    100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.our-story {
   padding: 5rem 2rem;
   background-color: white;
}

.story-content		{
      display: grid;
   	grid-template-columns: 1fr 1fr;
       gap: 4rem;
      align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     }

.story-text h2  
  {
    font-size: 2.3rem;
	color: #333;
    margin-bottom  :    2rem;
   font-weight: 600;
}

.story-text p {
   color: #666;
   font-size: 1.1rem;
   line-height: 1.7;
    margin-bottom: 1.5rem;
} 

.story-image img {
   width     :      100%;
    height: auto;
 border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.our-mission {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;}

.mission-card {
  background    :  white;
   padding: 2.5rem;
   border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: center;
    transition:       transform 0.3s ease;
}

.mission-card:hover 
 {
  transform: translateY(-5px); 
	
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom   :   1.5rem;
  font-weight: 600;
}

.mission-card p		{
         color: #666;
    line-height: 1.6;
    font-size: 1rem;


}

.our-approach		{
    padding: 5rem 2rem;
  background-color: white;
}

.approach-content {

    display: grid;
   grid-template-columns: 1fr 1fr;
  gap    :      4rem;
  align-items: center;
    max-width  :    1200px;
   margin: 0 auto;
}


.approach-text h2 {
   font-size: 2.3rem;
   color: #333;
      margin-bottom: 2rem;
    font-weight: 600;
}

.approach-text p{
  margin-bottom: 2rem;
    font-size: 1.1rem;
   line-height: 1.7;
  color: #666;
}

.approach-pillars {
	 display: flex;
	 flex-direction: column;
    gap: 1.5rem;


}

.pillar {
    padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 15px;
    color: white;
}

.pillar h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
    font-weight: 600; 
	
}

.pillar p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
   line-height: 1.5;
}

.approach-image img {
    width: 100%;
    height: auto;
		 border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.our-methods {
	    padding    : 5rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color  :        white;


}

.methods-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2rem; 
   margin-top: 3rem;
}

.method-item
{
     background: rgba(255,255,255,0.1);
	padding: 2rem;
    border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
     }

.method-item h3 {
    font-size    :     1.3rem;
   margin-bottom    :        1rem;
    font-weight: 600;
}

.method-item p {
  opacity: 0.9;
	line-height: 1.6;
   font-size: 0.95rem;
}

.why-choose-us {
  padding: 5rem 2rem;
   background-color: white;
}

.why-content {

   display: grid;
  grid-template-columns:        1fr 1fr;
    gap: 4rem;
  align-items: center;
   max-width: 1200px;
  margin: 0 auto;
	}

.why-text h2 {
    font-size: 2.3rem;
  color: #333;
	margin-bottom:2rem;
  font-weight: 600; 

}

.why-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
  margin-bottom: 2rem;
}

.why-list {
   list-style: none;
  padding    :    0;
}

.why-list li {
        color: #333;
   padding: 0.8rem 0;
  font-size: 1rem;
    position: relative;
   padding-left  :       2rem;
} 

.why-list li::before {


  content: '→';
   position: absolute;
   left: 0;
         color: #667eea;
   font-weight: bold;
   font-size:       1.2rem;
	}

.why-image img {
        width: 100%;
    height: auto;
  border-radius   :       20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
	
}

.our-results {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
                    color: white;
}

.results-stats 
 {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {

  font-size: 3rem;
  font-weight: 700;
	color: #f093fb;
  margin-bottom: 1rem;
	}

.stat-label {
   font-size: 1.1rem;
    opacity: 0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			padding: 5rem 2rem;
         text-align: center;
    color: white;
   min-height: 60vh;
    display: flex;
	align-items: center;
}

.thankyou-content	{
    max-width: 800px;
    margin: 0 auto;
}

.success-icon


{
    margin-bottom: 2rem;
}

.checkmark-circle {


    width: 80px;
		 height: 80px;
   border-radius :  50%;
  background-color: rgba(255,255,255,0.2);
    margin: 0 auto;
  display: flex;
    align-items: center;
   justify-content: center;
   border: 3px solid white;
   animation: checkmark-bounce 0.6s ease-in-out;}

.checkmark {
   width: 25px;
   height: 15px;
  border: solid white;
   border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}@keyframes checkmark-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.thankyou-title {
  font-size    : 3rem;
   font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;

}

.thankyou-message {
   font-size  : 1.3rem; 
  line-height: 1.7; 
   opacity: 0.95; 
   max-width :  600px; 
    margin: 0 auto;
}

.next-steps {
  padding: 5rem 2rem;
  background-color: white;
}

.steps-timeline
{
  max-width    :        800px;
    margin: 3rem auto 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
    position: absolute;
  left: 30px;
   top     :  0;
    bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.step-item {
  display  :flex;
   align-items: flex-start;
    gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-number
	{
    width: 60px;
  height  :        60px;
   border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :  white;
	 display:    flex;
    align-items: center;
  justify-content: center;
  font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
  position: relative;
    z-index: 1; 
	
}

.step-content h3 {
   font-size: 1.5rem;
    color :     #333;
	margin-bottom: 1rem;
  font-weight     :     600;
}

.step-content p {
       color     :#666;
	line-height: 1.6;
      font-size: 1rem;
}


.while-waiting {
                    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 

}

.waiting-content {
	 display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 4rem;
  align-items: center;
    max-width: 1200px;
       margin: 0 auto;
}

.waiting-text h2 {
    font-size    :    2.3rem;
   color: #333;
   margin-bottom: 2rem;
  font-weight: 600;
}

.waiting-text p {
               color: #666;
   font-size: 1.1rem;
  line-height: 1.7;
         margin-bottom: 2.5rem;
}

.tips-list {
   display: flex;
    flex-direction:column;
   gap: 1.5rem;
}

.tip-item {
   padding: 1.5rem;
	background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tip-item h4 {
               font-weight: 600;
    margin-bottom     :     0.8rem;
  color: #667eea;
	font-size: 1.2rem;}

.tip-item p {
	color: #666;
    line-height: 1.5;
   font-size: 0.95rem;
}

.waiting-image img {
    width: 100%;
    height: auto;
				 border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.emergency-contact {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
   text-align: center;
}

.emergency-info h2 {
   font-size  :2.2rem;
  margin-bottom: 1.5rem;
   font-weight: 600;
}

.emergency-info p  
  {

   font-size: 1.2rem;
    margin-bottom  :        2.5rem;
  opacity: 0.95;
	}

.contact-details {
  display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}



.emergency-contact .contact-item {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px); 

	}

.emergency-contact .contact-item strong


{
  display: block;
  font-size: 1.2rem;
   margin-bottom: 1rem;
    color: white;
}

.emergency-contact .contact-item p {
  opacity  :0.9;
   line-height: 1.6;
}

.back-to-site {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.back-content h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
   font-weight: 600;
}

.back-content p {
	          color: #666;
   max-width :       500px;
    font-size: 1.1rem;
   margin-right: auto;
   margin-left: auto;
   margin-bottom: 2.5rem;
	}

.back-buttons {
	display: flex;
	gap: 1.5rem;
    justify-content: center;
	flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
  background-color  :   transparent;
	color: #667eea;
  padding: 1rem 2.5rem;
    border: 2px solid #667eea;
  border-radius:        50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
   transition: all 0.3s ease;
}


.secondary-button:hover {
    background-color    :       #667eea;
	color: white;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .about-hero .container,
    .story-content,
    .approach-content,
    .why-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title,
    .thankyou-title {
        font-size: 2.2rem;
    }

    .mission-grid,
    .methods-grid,
    .results-stats {
        grid-template-columns: 1fr;
    }

    .steps-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .back-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .our-story,
    .our-mission,
    .our-approach,
    .our-methods,
    .why-choose-us,
    .our-results,
    .thankyou-hero,
    .next-steps,
    .while-waiting,
    .emergency-contact,
    .back-to-site {
        padding: 3rem 1rem;
    }

    .about-title,
    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }
}.cookies-policy,
.privacy-policy {
   padding: 5rem 2rem;
      background-color: #f8f9fa;
}

.policy-content {
               max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.8rem;
    color: #333;
     margin-bottom: 1.5rem;
   font-weight: 600;
}

.policy-content p {
    color :  #666;
      line-height: 1.7;
    margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .cookies-policy,
    .privacy-policy {
        padding: 3rem 1rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .policy-content h2 {
        font-size: 1.4rem;
    }
}.benefits-list li {

	  color: #111;
     }