* {
  margin    :     0;
    padding: 0;
   box-sizing: border-box;
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height    :1.6;
    color: #2c3e50;
  background   :   #fdfeff;
}

.main-header  {
  background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: 1.2rem 0;
   position: sticky;
   top: 0;
   z-index    :1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-wrapper {
   max-width  :1240px;
    margin: 0 auto;
   padding: 0 20px;
    display: flex;
	 justify-content: space-between;
  align-items: center;
}

.logo-area {
	 flex    :        0 0 auto;
}

.brand-logo {
   height: 48px;
  filter: brightness(0) invert(1);
  width    :        auto;
}

.primary-nav {
   display: flex;
			gap: 2.5rem;
}

.nav-item {
  color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
  transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
	  color: #3498db;


}

.nav-item::after {
  content: '';
  position: absolute;
   bottom: -5px;
   left  :   0;
    width    :  0;
	height: 2px;
   background: #3498db;
   transition: width 0.3s;
}

.nav-item:hover::after {
  width: 100%;
}

.burger-toggle {
	   display: none;
    flex-direction     :       column;
   cursor: pointer;
   gap: 5px;

}

.burger-toggle span  {
   width: 28px;
 height: 3px;
  background: #ecf0f1;
    transition: 0.3s;
	border-radius: 2px;
}

.hero-block {

  display    :      flex;
    max-width: 1240px;
   margin:  60px auto;
      padding: 0 20px;
  gap: 60px;
    align-items: center;
	}

.hero-content {
  flex :    1;
}

.hero-content h1	{
  font-size: 3rem;

	    color: #1a2332;

	   margin-bottom: 1.5rem;

	  line-height     :1.2;

	   font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
	color : #546e7a;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.hero-actions {
   display: flex;
          gap: 1.5rem;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
  display   :   inline-block;
} 

.btn-primary {
  background: #3498db;
       color: white; 

}

.btn-primary:hover {
        background     :  #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
	}

.btn-secondary {
    background: transparent;
   color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover


{
   	background: #3498db;
  color: white;}

.hero-visual {
   flex: 1;
}

.hero-visual img {
  width: 100%;
	  height: auto;
	  border-radius: 12px;
	  box-shadow: 0 10px 40px rgba(0,0,0,0.15); 

}

.features-zone {
     background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
          padding   : 80px 20px;
}

.container-main {
  max-width: 1240px;
  margin: 0 auto;
}

.features-zone h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a2332; 
	
}

.features-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.feature-card {
   background: white; 
   padding: 35px; 
   border-radius: 10px; 
  box-shadow: 0 5px 25px rgba(0,0,0,0.08); 
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
     }

.feature-card h3 
 {
   font-size    :    1.5rem; 
	   margin-bottom: 1rem; 
	                    color: #2c3e50;
}



.feature-card p {
    color: #5d6d7e; 
	               line-height: 1.7;
}

.transformation-showcase {
    padding: 80px 20px;
}

.showcase-wrapper {
       max-width: 1240px;
   margin: 0 auto;
   display   :    flex;
   gap: 60px;
   align-items: center;
}

.showcase-image {
    flex:     1;
}

.showcase-image img {
  width: 100%;
     border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.showcase-text {
      flex: 1;


}

.showcase-text h2   {
    font-size: 2.3rem;
  margin-bottom: 1.5rem;
   color: #1a2332;
}


.showcase-text p {
    margin-bottom: 1.5rem;
   color: #546e7a;
   font-size: 1.05rem;
   line-height: 1.8;
}

.benefits-list {
   list-style: none;
   margin-top: 2rem;
}

.benefits-list li {
  padding: 12px 0;
    padding-left  :  30px;
   position: relative;
   color: #2c3e50;
}

.benefits-list li::before {
  content: "✓";
	position: absolute;
   left: 0;
   color: #27ae60;
   font-weight: bold;
        font-size: 1.3rem;
}

.programs-section {
    background: #f4f6f8;
       padding  :        80px 20px;
}

.programs-section h2  {
    text-align: center;
  font-size :    2.5rem;
   margin-bottom: 3rem;
    color: #1a2332;
}

.programs-layout {
   display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.program-box {

	background: white;
   padding: 40px 30px;
        border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
     border-top: 4px solid #3498db;
  transition  :     transform 0.3s;

}

.program-box.featured {
    border-top-color   :  #e74c3c;
  transform: scale(1.05);


}

.program-box:hover {
  transform: translateY(-5px);
}

.program-box h3 {
  font-size: 1.6rem;
    margin-bottom: 1rem;
         color: #2c3e50; 

}



.program-box p {
    color: #5d6d7e;
		 margin-bottom: 1.5rem;
  line-height: 1.7;
}

.program-details {
    display: flex;
   flex-direction: column;
  gap: 10px;
}

.program-details span    {
    color: #7f8c8d;
    font-size: 0.95rem;
    padding: 8px;
  background: #ecf0f1;
   border-radius: 5px;
}

.testimonial-area {
	padding: 80px 20px;
}

.testimonial-area h2 {
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #1a2332;
}

.testimonials-grid {
     display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 40px;

}

.testimonial-card {
	padding: 35px;

   border-left: 5px solid #3498db;

  background: #f8f9fa;

  border-radius: 10px;
}

.testimonial-card p {
            font-style: italic;
  color: #2c3e50;
   margin-bottom: 1.5rem;
   line-height   : 1.8;
    font-size     :        1.05rem;

}

.testimonial-author {
   color: #7f8c8d;
   font-weight: 600;
}

.cta-block {
  background: linear-gradient(135deg, #2d4059 0%, #1a2332 100%); 
	   padding: 100px 20px; 
	  text-align     :  center; 
	
}

.cta-content h2 {
   color: white;
   font-size    :       2.8rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
  color: #ecf0f1;
	    font-size: 1.2rem;
	   margin-bottom: 2.5rem;
	  max-width: 700px;
	    margin-left: auto;
	   margin-right: auto;
}

.btn-cta {
	background: #e74c3c;
   color: white;
  padding: 16px 40px;
    text-decoration: none;
   border-radius  :       6px;
   font-weight: 600;
  display: inline-block;
   transition: all 0.3s;
}

.btn-cta:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

.gallery-section {
   padding: 80px 20px;
   background: white;
}

.gallery-section h2 {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color     :  #1a2332;
}

.gallery-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap  :  25px;
}

.gallery-grid img {
   width: 100%;
    height: 280px;
   object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s;
	}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact-section {
    background: #f4f6f8;
    padding: 80px 20px;
}

.contact-section h2 {
    text-align   :   center;
    font-size: 2.5rem;
          margin-bottom: 1rem;
   color: #1a2332;
}

.contact-intro {
   text-align: center;
  max-width: 600px;
	margin: 0 auto 3rem;
   color: #546e7a;
    font-size: 1.1rem;
}

.contact-form {
   max-width : 800px;
      margin: 0 auto;
      background:  white;
   	padding: 50px;
        border-radius: 10px;
     box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 25px;
   margin-bottom: 25px;
}

.form-group {
   display: flex;
    flex-direction: column;
     }

.form-group.full-width {
    margin-bottom: 25px; 

}

.form-group label {
    margin-bottom: 8px;
   font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	 padding: 12px;
  border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size  :     1rem;
      transition: border-color 0.3s;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
   background: #3498db;
   color: white;
   padding:  14px 40px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s;
	
}

.btn-submit:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.site-footer {
   background: #1a2332;
   color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
	 max-width: 1240px;
  margin: 0 auto;
    display: grid;
         grid-template-columns: 2fr 1fr 1fr;
   gap: 60px;
   margin-bottom: 40px;
}

.footer-col h4 {
   margin-bottom: 1.5rem;
	color: white;
  font-size: 1.2rem;
}

.footer-col a {
   display: block;
    color: #bdc3c7;
   text-decoration: none;
   margin-bottom: 12px;
    transition :        color 0.3s;
}

.footer-col a:hover     {
    color: #3498db;
}

.footer-logo {
  height: 45px;
   margin-bottom     :       20px;
  filter: brightness(0) invert(1);
}

.footer-address,
.footer-phone    {

	         color: #bdc3c7;
   margin-bottom: 10px;
 line-height: 1.6;
}

.footer-bottom {
  max-width: 1240px;
    margin: 0 auto;
                    padding-top: 30px;
   border-top    : 1px solid #34495e;
  text-align: center;
        color: #95a5a6; 

}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: #1a2332;
        flex-direction: column;
        gap: 0;
        padding: 30px;
        transition: left 0.4s;
    }

    .primary-nav.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 0;
        border-bottom: 1px solid #34495e;
    }

    .hero-block {
        flex-direction: column;
        margin: 40px auto;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .showcase-wrapper {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.about-hero	{
  background: linear-gradient(to right, #2d4059 0%, #1a2332 100%);
    padding: 120px 20px 80px;
    text-align: center;
}

.about-hero-content {
   max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1 {
    color: white;
   font-size: 3.2rem;
		margin-bottom  :        1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
  line-height: 1.8;
    color: #ecf0f1;
   font-size: 1.3rem;
}

.mission-area {
  padding: 90px 20px;
}

.wrapper-content {
    max-width: 1240px;
    margin: 0 auto;
  display   :  flex;
  gap  :70px;
    align-items     :    center;
}

.mission-text {
			flex: 1;
}

.mission-text h2{
    font-size   :2.5rem;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.mission-text p {
  color: #546e7a;
    font-size: 1.1rem;
	line-height  :      1.9;
               margin-bottom:     1.5rem;
}

.mission-visual {
   flex: 1; 
	
}

.mission-visual img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.philosophy-block    {
  background: #f8f9fa;
   padding: 90px 20px;
}



.philosophy-block h2 {
  text-align: center;
  font-size:        2.6rem;
   margin-bottom: 3.5rem;
  color: #1a2332;
}

.philosophy-cards {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;


}

.phil-card {
	  background: white;

		 padding: 40px;

	   border-radius: 10px;

	  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

	  border-left: 5px solid #3498db;

	   transition: all 0.3s;
     }  

.phil-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);


}

.phil-card h3 {
    font-size  : 1.6rem;
    margin-bottom: 1rem;
   color  :   #2c3e50;
}

.phil-card p {
    line-height: 1.8;
    color: #5d6d7e; 

}

.approach-section {
                  padding: 90px 20px;}

.approach-wrapper {
        max-width: 1240px;
	 margin  :     0 auto;
    display: flex;
  gap: 70px;
}

.approach-image {
               flex     :       1;
  -webkit-flex: 1;
  -ms-flex: 1;
}

.approach-image img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.approach-content {
  flex     :     1;
}

.approach-content h2 {
    color: #1a2332;
   font-size: 2.5rem;
          margin-bottom: 1.5rem;
} 

.approach-content > p {
 color: #546e7a; 
    font-size: 1.1rem; 
  line-height: 1.8; 
    margin-bottom: 2.5rem;
}

.method-steps {

  display: flex;
    flex-direction     :       column;
   gap: 25px;
     }

.step-item {
   display: flex;
    gap: 20px;
  align-items    :      start;
}

.step-number {
   background: #3498db;
	  color: white;
	    width: 50px;
	  height: 50px;
	    display: flex;
	   align-items: center;
	  justify-content: center;
	  border-radius: 50%;
	   font-weight: bold;
	   font-size: 1.2rem;
	   flex-shrink: 0;
}

.step-text h4 {
       font-size: 1.3rem;
       margin-bottom: 0.5rem;
            color: #2c3e50;
}

.step-text p {
    color: #5d6d7e;
 line-height: 1.7;
}

.values-zone {
  background: linear-gradient(135deg, #f4f6f8 0%, #ffffff 100%);
  padding: 90px 20px;
}

.values-zone h2 {


   text-align: center;
   font-size:  2.6rem;
    margin-bottom: 3.5rem;
   color: #1a2332;
	}

.values-layout {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap   : 30px;
	

} 

.value-box {
   background: white;
   padding: 35px;
    border-radius:       10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-box:hover {

  transform: translateY(-5px);
}

.value-box h3

{
  font-size: 1.5rem;
    margin-bottom: 1rem;
  color    :   #2c3e50;
}

.value-box p {

    color: #5d6d7e;
   line-height: 1.7;}

.journey-timeline {
   padding: 90px 20px;
}

.journey-timeline h2 {


    text-align: center;
	  font-size     :       2.6rem;
	       margin-bottom: 4rem;
	          color    :   #1a2332;
	}

.timeline-content {
   max-width: 900px;
    margin  :     0 auto;
   position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 60px;
   top: 0;
  bottom: 0;
   width: 3px;
      background: #3498db;
}

.timeline-entry {
    position    : relative;
  gap: 40px;
  display: flex;
  margin-bottom: 50px;
}

.timeline-year {
  font-size: 1.8rem;
   font-weight: bold;
	 color: #3498db;
  min-width: 80px;
   position :       relative;
}

.timeline-year::after {
  content: '';
	position: absolute;
   right: -22px;
  top: 8px;
   width: 15px;
    height  : 15px;
  background: #3498db;
  border-radius: 50%;
  border: 3px solid white;
    box-shadow: 0 0 0 3px #3498db;
}

.timeline-info h4 {
	font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.timeline-info p {
  color    :  #5d6d7e;
    line-height: 1.8;
}

.impact-stats {
  background: linear-gradient(135deg, #2d4059 0%, #1a2332 100%); 
    padding: 90px 20px;
}

.impact-stats h2 {
    text-align: center;
  font-size: 2.6rem;
    margin-bottom    :   4rem;
   color: white; 
	
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
  font-weight: bold;
  font-size   :        3.5rem;
    color: #3498db;
    margin-bottom    : 0.5rem;
  display: block;
}

.stat-label {
   display    :  block;
                    color: #ecf0f1;
   font-size: 1.1rem;
	
}

.location-info {
   padding: 90px 20px;
   background: #f8f9fa;
}

.location-wrapper {
    max-width  :      900px;

	  margin :     0 auto;
}

.location-text h2 {
   font-size: 2.5rem;
    color: #1a2332;
	margin-bottom: 1.5rem;
}

.location-text p {
  color: #546e7a;
  font-size: 1.1rem;
     line-height: 1.9;
   margin-bottom   :1.5rem;
	
}

.location-address {
    font-weight: 600;
    color: #2c3e50;
    font-size    :    1.2rem;
}

.location-phone
	{
    font-weight: 600;
  color: #3498db;
 font-size: 1.2rem;
    margin-bottom: 2rem;
}

.location-image {
     width: 100%;
  border-radius: 10px;
        margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);}

.final-cta {

	  padding: 100px 20px;

   background: white;}

.cta-box
{
   max-width: 700px;
   margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
  font-size: 2.8rem;
    color: #1a2332;
  margin-bottom: 1.5rem;
}

.cta-box p {
  color: #546e7a;
    font-size: 1.2rem;
	 line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-start {
   background: #3498db;
   color: white;
  padding   :  16px 45px;
   text-decoration: none;
  border-radius: 6px;
          font-weight: 600;
  display: inline-block;
					transition: all 0.3s;
}

.btn-start:hover {
  background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52,152,219,0.3);
     }

.thankyou-container     {
   min-height: 70vh;
	padding   :     80px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-content {
	max-width: 800px;
	margin: 0 auto;
}

.success-icon  {


    text-align: center;
    margin-bottom: 2rem;
}

.thankyou-content h1 {
	text-align: center;
  font-size: 2.8rem;
     color: #1a2332;
    margin-bottom: 1.5rem;
}

.thankyou-message {
  text-align: center;
	 font-size: 1.2rem;
   color: #546e7a;
   line-height:        1.8;
    margin-bottom: 3rem;
}

.next-steps {
  background: white;
   padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   margin-bottom: 2.5rem;
}

.next-steps h2 {
	font-size: 2rem;
 color: #2c3e50;
  margin-bottom: 2rem;
   text-align     : center;
}


.steps-list {
    display: flex;
	 flex-direction: column;
    gap: 25px;
}

.step-box {
   display: flex;
   gap  :20px;
 align-items: start;
}

.step-num {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  width: 45px;
	height: 45px;
  display: flex;
    align-items    :      center;
    justify-content: center;
   border-radius     :  50%;
   font-weight: bold;
  font-size: 1.2rem;
          flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.3rem;
   color :        #2c3e50;
   margin-bottom: 0.5rem;
}

.step-content p {
   color:      #5d6d7e;
  line-height: 1.7;


}



.info-box {

	-webkit-border-radius: 10px;
   background: #f4f6f8;
   padding: 35px;
  -moz-border-radius  :10px;
    border-radius: 10px;
   margin-bottom: 2.5rem;
}

.info-box h3 {
    font-size: 1.6rem;
  color :   #2c3e50;
  margin-bottom: 1rem;
}

.info-box p {
    color:#546e7a;
    line-height: 1.7;
	 margin-bottom: 2rem;
}

.thankyou-actions{
  gap   :  20px;
  display: flex;
   justify-content: center;
}

.btn-link {
  color  :    #3498db;
  padding: 14px 30px;
   display: inline-block;
   font-weight: 600;
    text-decoration: none;
	border-radius: 6px;
    transition    :     all 0.3s;
   border :        2px solid #3498db;
}

.btn-link:hover	{
    background: #3498db;
    color: white;
}

.contact-reminder    {
   text-align: center;
    padding: 30px;
   background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-reminder p {
    color: #546e7a;
    font-size:  1.05rem;
	margin-bottom: 0.5rem;

}

.phone-highlight		{
  font-size: 1.5rem;
  font-weight: bold;
    color: #3498db;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .wrapper-content {
        flex-direction: column;
    }

    .approach-wrapper {
        flex-direction: column-reverse;
    }

    .timeline-content::before {
        left: 30px;
    }

    .timeline-year {
        min-width: 60px;
        font-size: 1.4rem;
    }

    .timeline-year::after {
        right: -17px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}.policySection {


  padding: 80px 2rem;

      background: #f8f9fa;
     }

.policyContainer {


        max-width: 800px;
   margin  :     0 auto;
    text-align: left;
	}

.policyContainer h2 {

	  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom :  1.5rem;
    font-weight: 700;

}

.policyContainer p
	{
  color: #7f8c8d;
    margin-bottom: 1.5rem;
         line-height: 1.7;
    font-size  :    1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}