* {

	  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;
}

.nav-primary {
    position: fixed;
  top :        0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition     :       all 0.3s ease;
}

.nav-primary.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
	
}

.nav-wrapper {
    max-width   :      1200px;
 margin: 0 auto;
    display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.brand-logo {
   height: 45px;
  width: auto;
}

.nav-links {
    display: flex;
  list-style: none;
  gap :     35px;
}

.nav-links a {
	 text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
   transition: color 0.3s ease;
   font-size: 16px;
}

.nav-links a:hover {
  color     :        #e74c3c;
}

.burger-menu {
    display: none; 
   flex-direction: column; 
   cursor :    pointer; 
  gap: 4px;
}

.burger-menu span

{
   width: 25px;
   height: 3px;
  background-color: #2c3e50;
   transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); 
	
}

.burger-menu.active span:nth-child(2) {
		 opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);

}

.hero-section {
       margin-top: 80px;

		min-height: 80vh;

	   display     :flex;

	  align-items: center;

	   max-width    : 1200px;

	    margin-left: auto;

	   margin-right:     auto;

	    padding:        0 20px;

	    gap: 50px;
}

.hero-content {
   flex     :   1;
}

.hero-content h1 {
    font-size :    3.2rem;
   font-weight: 700;
  color: #2c3e50;
			margin-bottom: 25px;
   line-height: 1.2;
}

.hero-description {
   font-size: 1.2rem;
  color: #555;
    margin-bottom     :    35px;
   line-height: 1.8;
}

.hero-actions {
   display: flex;
  gap: 20px;

}

.primary-button, .secondary-button {
   padding: 15px 30px;
   text-decoration: none;
	border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
               transition: all 0.3s ease;
}

.primary-button {
    color: white; 
    background-color: #e74c3c;
}

.primary-button:hover {

	          background-color: #c0392b;
  transform: translateY(-2px);}

.secondary-button {
    background-color: transparent;
   color: #e74c3c;
          border: 2px solid #e74c3c;
}

.secondary-button:hover {
   color: white;
       background-color: #e74c3c; 
	
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
   width: 100%;
  height     :     auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-showcase {
  padding: 100px 0;
    background-color: #f8f9fa; 

}

.services-container

{
    max-width :      1200px;
    margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.services-showcase h2 {
	font-size: 2.8rem;
   margin-bottom: 60px;
   color: #2c3e50;
    font-weight :       700; 
	
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
	margin-top: 50px;
}

.service-card {
	 background: white;
      padding: 40px 30px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
   color: #2c3e50;
    font-weight: 600;
 font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card p   {
   color: #666;
       line-height: 1.7;
      font-size: 1rem;
}

.transformation-story {

	   padding: 120px 0;


} 

.story-content {
    max-width: 1200px;
	 margin: 0 auto;
  padding: 0 20px;
		display: flex;
	align-items: center;
	 gap: 60px;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 30px;
   font-weight: 700;
}

.story-text p {

  font-size: 1.1rem;
         color: #555;
  margin-bottom    :  25px;
   line-height: 1.8;}

.story-stats {
	display: flex;
    gap: 50px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
   display: block;
    font-size: 3rem;
    font-weight: 700;
       color     :    #e74c3c;
   margin-bottom: 10px;
}


.stat-label {
    font-size:  1rem;
   color: #666;
	font-weight: 500;
}

.story-image {

	  flex: 1;


}

.story-image img	{
    width:      100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.approach-section {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.approach-wrapper {
   max-width: 1200px;
    margin: 0 auto;
                    padding: 0 20px;
	
}

.approach-wrapper h2 {
  text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 70px;
    font-weight: 700;
}

.approach-layout {

    display: flex;
    align-items: center;
   gap: 60px;
     }

.approach-visual {
   flex: 1;
}

.approach-visual img 
 {
	    width   : 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.approach-steps {

   flex: 1;

}

.step-item {
  margin-bottom: 35px;
    padding: 25px;
    background: white;
  border-radius    : 10px;
    border-left: 4px solid #e74c3c;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-item h3 {

	  font-size: 1.3rem;
					color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;}

.step-item p {
	   color: #666;
   line-height: 1.7;
	}

.cta-section {
   position    :    relative;
	 padding: 120px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
          text-align: center;
	 overflow: hidden;
}

.cta-content {
    max-width: 800px;
  margin   :    0 auto;
    padding: 0 20px;
   position: relative;
  z-index: 2;
}

.cta-content h2 {
   font-size: 3rem;
   margin-bottom  : 25px;
    font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
       margin-bottom  :40px;
    opacity: 0.95;
}

.cta-button {
   display: inline-block;
   background: white;
  color: #e74c3c;
    padding: 18px 40px;
   text-decoration   : none;
  border-radius :  50px;
  font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}

.cta-background {
    top: 0; 
	  opacity :  0.1; 
	   width    : 100%; 
	    z-index :1; 
	  height: 100%; 
	  left: 0; 
	       position   :   absolute;
}

.cta-background img {
  width: 100%;
  height : 100%;
   object-fit: cover;
}

.contact-section{
  padding    :  100px 0;
}

.contact-container  {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap     :  80px;
   align-items: start;
}

.contact-info h2 {
   font-size: 2.5rem;
   color:        #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {


	 font-size: 1.1rem;
  color:#666;
   margin-bottom    :  40px;}

.contact-details {
   gap: 20px;
   display: flex;
  flex-direction: column;
} 

.contact-item {
	display: flex;
    gap:       15px;
}



.contact-label {
   font-weight: 600;
      color: #2c3e50;
  min-width: 80px;
}

.contact-value {
	color: #666;
}

.contact-form {
				 background     :white;
         padding: 40px;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.form-group {
				 margin-bottom: 25px;
}

.form-group label {
          display: block;
               margin-bottom: 8px;
          font-weight: 600;
    color: #2c3e50;
   font-size :  1rem;
}

.form-group input,
.form-group select,
.form-group textarea    {
  padding: 15px;
  border-radius: 8px;
   font-size: 1rem;
   font-family: inherit;
    border: 2px solid #e1e8ed;
    transition: border-color 0.3s ease;
   width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #e74c3c;
}



.submit-button {
	width: 100%;
   background-color  :        #e74c3c;
  color    :       white;
   padding: 18px;
   border: none;
  border-radius: 8px;
        font-size: 1.1rem;
   font-weight  :600;
        cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #c0392b;


}

.main-footer {
    background-color: #2c3e50;

	                    color: white;

	    padding: 60px 0 20px;
}

.footer-content {
    max-width :        1200px; 
  margin: 0 auto; 
    padding: 0 20px; 
   display: grid; 
      grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 40px;
}

.footer-brand {
   max-width  :      300px;
}

.footer-logo {
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
   line-height: 1.6;
    color: #bdc3c7;
}

.footer-column h4 {
   margin-bottom: 20px;
   font-size     :1.1rem;
   font-weight: 600;
}

.footer-column ul

{
  list-style: none;
}

.footer-column ul li {


    margin-bottom: 10px;
	}

.footer-column ul li a {
   transition: color 0.3s ease;
    color: #bdc3c7;
  text-decoration: none;
}



.footer-column ul li a:hover {
   color: white;
}

.footer-bottom {
                    max-width: 1200px;
                    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #34495e;
   text-align: center;
  color   :    #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .story-content,
    .approach-layout {
        flex-direction: column;
        text-align: center;
    }

    .story-stats {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .services-showcase h2,
    .approach-wrapper h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}.about-hero    {
        margin-top: 80px;
   padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.about-hero-content {
   max-width  :800px;
   margin: 0 auto;
  padding :0 20px;
}

.about-hero h1 {
  font-size: 3.5rem; 
	  color: #2c3e50; 
	   margin-bottom    :     30px; 
	    font-weight: 700;

}

.about-hero-description {
  max-width    :   600px;
    font-size:     1.3rem;
   color: #555;
  margin: 0 auto;
    line-height: 1.8;
}

.expertise-section {
    padding: 120px 0;
}  

.expertise-container
	{
	padding: 0 20px;
   max-width: 1200px;
 display: flex;
  gap: 80px;
   align-items: center;
       margin: 0 auto;
}

.expertise-text {
   flex: 1;
}

.expertise-text h2 {
  font-size: 2.8rem;
   color: #2c3e50;
  margin-bottom: 30px;
   font-weight: 700;
}

.expertise-text p    {
	    font-size: 1.1rem;
   color: #555;
    line-height :1.8;
    margin-bottom: 25px;

}

.expertise-highlights {
          display: flex;
  gap: 40px;
        margin-top: 50px;
}

.highlight-item {
     text-align: center;
	
     }

.highlight-number   {
  display: block;
    font-size: 2.5rem;
    font-weight: 700;
   color: #e74c3c;
  margin-bottom: 10px;
	
}

.highlight-text {
   font-size: 0.9rem;
    color: #666;
          font-weight: 500;
}

.expertise-visual {
  flex: 1;
}

.expertise-visual img	{
  width: 100%;
   height: auto;
  border-radius   :15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-section {
  padding: 100px 0; 
   background-color :     #f8f9fa;
}

.mission-content {
  max-width     :      1200px;
    margin: 0 auto;
                    padding: 0 20px;
   text-align: center;
}

.mission-content h2 {
  font-size: 2.8rem;
          color: #2c3e50;
	margin-bottom: 30px;
  font-weight : 700;
}

.mission-content > p {

	  font-size: 1.2rem;
	color: #555;
    line-height: 1.8;
  max-width: 800px;
    margin: 0 auto 60px;

}

.mission-values {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
   padding  :   40px 30px;
	 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card h3 {
	   font-size: 1.4rem;
	  color: #2c3e50;
		margin-bottom: 20px;
	   font-weight: 600;
	}

.value-card p {
    color: #666;
   line-height: 1.7;
}

.methodology-section {
    padding: 120px 0;
}

.methodology-container {
    max-width :       1200px;
         margin  :       0 auto;
   padding: 0 20px;
  display: flex;
   align-items: center;
    gap: 80px;
}

.methodology-visual {

  flex: 1;
	}  

.methodology-visual img {
  width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.methodology-text {
  flex: 1;
}

.methodology-text h2 {
   font-size: 2.8rem;
  color: #2c3e50;
	margin-bottom: 30px;
  font-weight: 700;


}

.methodology-text > p {
  font-size: 1.1rem;
	    color: #555;
	   line-height: 1.8;
	          margin-bottom: 40px;
}

.methodology-steps {

          display: flex;
    flex-direction: column;
  gap: 25px;
     }

.method-step {
  padding: 25px;
    background     :        #f8f9fa;
   border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.method-step h4 {
    font-size: 1.2rem;
               color: #2c3e50;
   margin-bottom: 15px;
    font-weight  :      600;
}

.method-step p {
    color: #666;
  line-height: 1.7;
}

.success-stories {
      background-color: #f8f9fa;
	padding: 100px 0;
}

.stories-content {
  max-width: 1200px;
   margin    :     0 auto;
  padding: 0 20px;
}

.stories-content h2 {
   font-size: 2.8rem;
    color: #2c3e50;
   text-align: center;
  margin-bottom: 30px;
    font-weight: 700;
}

.stories-intro {
  font-size: 1.2rem;
	  color: #555;
	  text-align: center;
	    max-width: 700px;
	   margin: 0 auto 60px;
	  line-height: 1.8;
}

.stories-grid     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
    margin-top: 60px;
}

.story-item {
  background: white;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateY(-10px);
}

.story-image img {
  width: 100%;
    height: 250px;
          object-fit: cover;
}

.story-content {
       padding:   35px 30px;
}

.story-content h3 {
    font-size: 1.4rem;
	 color: #2c3e50;
  margin-bottom: 20px;
   font-weight    :     600;
}

.story-content p {
      line-height: 1.7;
  color: #666;
}

.why-choose-us {
  padding: 120px 0; 

}

.choose-container {
  max-width: 1200px;
  margin     :  0 auto;
  padding: 0 20px;
}

.choose-container h2 {
  font-size: 2.8rem;
	   color    :  #2c3e50;
	  text-align: center;
	         margin-bottom: 70px;
	    font-weight :700;
}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.reason-item {
    background: white;
   padding: 35px 25px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        text-align  :       center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 

}

.reason-item:hover   {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.reason-item h3

{
   font-size: 1.3rem;
    color: #2c3e50;
   margin-bottom: 20px;
	font-weight: 600;
}

.reason-item p{
   color: #666;
    line-height: 1.7;
}

.thankyou-hero
	{
   margin-top: 80px;
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
	max-width :    1200px;
	margin   :  0 auto;
  padding: 0 20px;
    display   :       flex;
   align-items: center;
  gap: 80px;
}

.thankyou-content {
  -ms-flex    :      1;
    flex: 1;
    -webkit-flex: 1;
}

.success-indicator {
	margin-bottom: 40px;}

.checkmark-circle  {
   width : 80px;
    height: 80px;
  border: 3px solid #27ae60;
       border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content: center;
	margin: 0 auto;
  position    : relative;
  animation: pulse 2s infinite;
}

.checkmark {
  width: 20px;
  height: 35px;
   border     :solid #27ae60;
   border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  animation: checkmark-animation 0.6s ease-in-out 0.3s both;
}@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes checkmark-animation {
    0% { transform: rotate(45deg) scale(0); }
    100% { transform: rotate(45deg) scale(1); }
}.thankyou-content h1 {
     font-size: 3rem;
  color: #2c3e50;
	text-align: center;
	margin-bottom:       25px;
  font-weight: 700;

}


.thankyou-message {
        font-size: 1.2rem;
    color: #555;
  text-align:   center;
    line-height: 1.8;
	max-width: 600px;
    margin: 0 auto 60px;
}

.next-steps	{
               margin: 60px 0;
}

.next-steps h2 {
	    font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 40px;
  font-weight: 600;}

.steps-timeline {
        display: flex;
    flex-direction: column;
   gap: 30px;
}

.timeline-item {
    display: flex;

    align-items     :    flex-start;

    gap: 25px;

    padding     :     25px;

    background: white;

  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-marker {
	    width: 40px;
    height: 40px;
  background: #e74c3c;
		color: white;
   border-radius: 50%;
  display: flex;
    align-items: center;
	justify-content: center;
    font-weight: 600;
   flex-shrink: 0;


}

.timeline-content h3 {
   font-size: 1.3rem;
   color   :     #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p


{
   color: #666; 
 line-height: 1.7;
}

.additional-info {
   margin: 60px 0;
}

.additional-info h2 {


  font-size: 2.2rem;
   color: #2c3e50;
          margin-bottom  :   40px;
    font-weight: 600;}

.info-cards {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 30px;
	}

.info-card {
  background: white;
   padding: 30px 25px;
 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align: center;
}

.info-card h3 {
   font-size: 1.2rem;
   color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600; 

}

.info-card p {
	line-height: 1.7;
    color: #666;
}

.contact-reminder {
	    background: white;
   padding: 40px 30px;
  border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin: 60px 0;

}

.contact-reminder h3 {
  font-size: 1.5rem;
   color: #2c3e50;
  margin-bottom: 15px;
 font-weight    :   600;
}

.contact-reminder p {


   color  :        #666;
                    margin-bottom: 25px;
      line-height: 1.7;
     }

.urgent-contact 
 {
  display: flex;
    flex-direction: column;
   gap: 10px;
    align-items: center;
}

.phone-number {
   font-size: 1.3rem;
    font-weight: 600;
        color: #e74c3c;
}  

.address {
    color: #666;
  font-size: 1rem;
}

.thankyou-actions {
   display  :   flex; 
   gap: 20px; 
     justify-content: center; 
       margin-top: 50px;
}

.thankyou-visual {
	   flex: 1;


}

.thankyou-visual img {
  width:   100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .expertise-container,
    .methodology-container,
    .thankyou-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .expertise-highlights,
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-timeline {
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .expertise-section,
    .methodology-section,
    .why-choose-us {
        padding: 80px 0;
    }
    
    .mission-section,
    .success-stories {
        padding: 80px 0;
    }
    
    .expertise-text h2,
    .methodology-text h2,
    .mission-content h2,
    .stories-content h2,
    .choose-container h2 {
        font-size: 2.2rem;
    }
}.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;
    }
}