* {
   margin: 0;
   padding   :0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif; 
	    line-height: 1.6; 
	  color: #333; 
	   background-color: #ffffff;
}

.container {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.main-navigation 
 {
    background  :    #2c3e50;
         padding: 1rem 0;
   position: fixed;
    width: 100%;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.nav-container {
  max-width: 1200px;
	 margin: 0 auto;
    display: flex;
  justify-content: space-between;
	 align-items: center;
   padding: 0 20px;
}

.brand-section .company-logo {
    height: 45px;
    width: auto;
}

.navigation-links {
    display: flex;
    list-style: none;
  gap: 2rem;
}

.navigation-links a {
   color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
   padding: 0.5rem 1rem;
	border-radius: 4px;
}

.navigation-links a:hover {
   	color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);}

.menu-toggle {
  display: none;
    flex-direction :  column;
   cursor: pointer;
}

.menu-toggle span {
  width: 25px;
    height: 3px;
   background: #ecf0f1;
    margin: 3px 0;
   transition: 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 120px 0 80px;
  min-height: 100vh;
    display: flex;
    align-items     : center;
}

.hero-content {
    max-width    :        1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items    :center;
}

.hero-text h1 {
   font-size: 3.2rem; 
	   font-weight   :bold; 
	    margin-bottom: 1.5rem; 
	    line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
    display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.primary-button, .secondary-button {
	   padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
   font-weight  :600;
    transition: all 0.3s ease;
    display: inline-block;
     }

.primary-button {
  background: #e74c3c;
   color: white;
}

.primary-button:hover    {
          background: #c0392b;
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.secondary-button {
	  background    :        transparent;
     color  :      white;
  border: 2px solid white;
	}

.secondary-button:hover {
	 background: white;
	 color: #667eea;
}

.hero-image img {
   width: 100%;
	 height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


} 

.services-section {
	 padding     :     100px 0;
      background: #f8f9fa;
	
}



.services-section h2 {
   margin-bottom: 3rem;
    font-size: 2.5rem;
  color: #2c3e50;
    text-align: center;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
   background: white;
    padding  :      30px;
	 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;

	 height   :  200px;

  object-fit: cover;

  border-radius: 10px;

    margin-bottom: 20px;
}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom: 15px;
   color: #2c3e50;
}

.service-card p {

   line-height: 1.7;
  color: #666;
     }

.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
   padding: 80px 0;
	color: white;
}

.cta-content {
 max-width   :1200px;
    margin: 0 auto;
        padding: 0 20px;
  display :    grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text p
{

	    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;


}

.cta-image img {
   width: 100%;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-button {
    grid-column: 1 / -1;
  text-align: center;
    margin-top: 30px;
}

.cta-link {
	   display: inline-block;
    background: white;
   color: #ee5a24;
   padding: 20px 40px;
  text-decoration: none;
   border-radius: 50px;
  font-weight: bold;
   font-size: 1.1rem;
               transition     :      all 0.3s ease;
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-preview 
 {
   padding: 100px 0;

	  background: white; 
	
}

.about-content {
   max-width: 1000px;

	   margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;

	    margin-bottom: 30px;

	    color: #2c3e50;

	    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
   color: #555;
 margin-bottom: 25px;
    text-align: justify;

}

.key-benefits


{

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
    margin-top: 50px;
	}

.benefit-item {
     background: #f8f9fa;
   border-radius: 10px;
  padding: 25px;
      border-left: 4px solid #3498db;
}

.benefit-item h4 {
    color: #2c3e50;
	    margin-bottom: 10px;
	     font-size: 1.2rem;
}

.benefit-item p {

	    color: #666; 
	  font-size     :    0.95rem; 
				margin: 0; 
	  text-align: left;


}

.contact-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.contact-wrapper {
    margin: 0 auto;
	max-width: 1200px;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
     padding: 0 20px;
}

.contact-info h2 {
	 font-size: 2.2rem;
   margin-bottom: 20px;
}  

.contact-info p    {
         font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-details
	{
    display: flex;
    flex-direction: column;
  gap: 30px;
}

.contact-item h4 {
  color: #3498db;
    font-size: 1.2rem;
	margin-bottom: 10px;
	
}

.contact-item p {
	opacity: 0.9;
  margin: 0;
	
}

.contact-form {

  background: rgba(255,255,255,0.1);

	   padding: 40px;

	    border-radius: 15px;

	  backdrop-filter: blur(10px);}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 20px;
    margin-bottom: 20px;
}

.form-group {
  display: flex;
   flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
  font-weight: 500;
   color: #ecf0f1;
}

.form-group input,
.form-group select,
.form-group textarea {
      padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: #333;
    font-size: 1rem;
   transition: background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
            outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
     }

.submit-button  
  {
   background: #e74c3c;
  color: white;
    padding: 15px 40px;
  border  :    none;
    border-radius: 8px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
   width  :      100%;
}

.submit-button:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.main-footer {
  background: #1a252f;
	 color: #ecf0f1;
   padding: 60px 0 20px;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap     :40px;


}

.footer-logo

{
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-section h4 {
	margin-bottom: 20px;
                    color: #3498db;
         font-size: 1.2rem;
}

.footer-section p {
	opacity: 0.8;
  line-height: 1.7;
}

.footer-links {
   list-style    :        none;
	
}



.footer-links li {
	   margin-bottom: 10px;
}



.footer-links a {
    color: #ecf0f1;
   text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1; 
	  color: #3498db;
}

.footer-contact p {
    opacity:     0.8;
   margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
   margin-top: 40px;
	 border-top: 1px solid #34495e;
}

.footer-bottom p 
 {
	opacity: 0.6;
    font-size: 0.9rem;
} @media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navigation-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .navigation-links.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .services-section h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}.about-hero {
	  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), 
                url('../thumbnails/business_process_automation_training_professional_3.webp') center/cover;
   min-height  : 60vh;
    display: flex;
   align-items: center;
    margin-top: 70px;
		position: relative; 

     }

.hero-overlay {
    width: 100%;
   height: 100%;
   display :flex;
  align-items: center;
}

.hero-content-about {
    text-align  :    center;
  color: white;
    max-width: 800px;
  margin: 0 auto;
}

.hero-content-about h1 {
  font-size: 3rem;
   font-weight  : bold;
   margin-bottom: 1.5rem;
          line-height: 1.2;
}

.hero-content-about p {
    font-size: 1.3rem;
    opacity: 0.95;
  line-height: 1.7;
}

.company-story {
  padding: 100px 0;
    background: white;
}

.story-content {


  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;}

.story-text h2{
    font-size: 2.5rem;
	color: #2c3e50;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 1.1rem;
	   line-height    :  1.8;
	  color :     #555;
	  margin-bottom: 25px;
	    text-align: justify;
}

.story-image img {
   width   :        100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-section {
  padding: 100px 0;
	 background: #f8f9fa; 

}

.methodology-section h2 {
				 text-align: center;
   font-size: 2.5rem;
  color   :#2c3e50;
  margin-bottom: 60px;
}

.methodology-grid {
	 display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.method-card {
  background: white;
  padding: 40px 30px;
    border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
                    position: relative;
   overflow: hidden;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card::before {
  content: '';

    position: absolute;

   top: 0;

   left: 0;

    width: 100%;

  height  :  4px;

  background: linear-gradient(90deg, #3498db, #2ecc71); 

}

.method-number {
  font-size    : 2.5rem;
    font-weight: bold;
    color     :   #3498db;
    margin-bottom: 20px;
}

.method-card h3 {
  font-size: 1.4rem;
  color  :   #2c3e50;
   margin-bottom: 15px;
}

.method-card p 
 {
	 color     :       #666;
	line-height: 1.7;
}

.expertise-areas {
    padding: 100px 0;
	background: white;
}

.expertise-content {
                    display: grid;
  grid-template-columns: 1fr 1fr;
		 gap: 60px;
    align-items: center;
}

.expertise-text h2{
   font-size: 2.5rem;
               color: #2c3e50;
   margin-bottom: 40px;
}


.expertise-list {
   display: flex;
  flex-direction: column;
      gap: 30px;
}

.expertise-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
          border-left: 5px solid #e74c3c;
}

.expertise-item h4 {
     color   :    #2c3e50;
   font-size: 1.3rem;
    margin-bottom: 12px;
     }

.expertise-item p {
   color: #666;
    line-height   :   1.7;
  margin: 0;
}

.expertise-image img {

	   width: 100%;
         border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}



.achievements-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align: center;
}

.achievements-section h2 {
  font-size: 2.5rem;
      margin-bottom: 60px;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
    max-width: 1000px;
   margin: 0 auto;
}

.stat-item {
  padding: 30px;
  background: rgba(255,255,255,0.1);
    border-radius: 15px;
  backdrop-filter: blur(10px);
} 

.stat-number
	{
       font-size: 3.5rem;
   font-weight:  bold;
  margin-bottom: 10px;
		color: #fff;
     }

.stat-label {
      font-size: 1.1rem;
  opacity   :   0.9;


}

.testimonials-section {
  padding: 100px 0;
     background: #f8f9fa;
}

.testimonials-section h2	{
   text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
	 margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 40px;


}

.testimonial-card   {
	   background: white;
    padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position   :  relative;}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
    color    :  #3498db;
  position: absolute;
  top: 10px;
   left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-size: 1.1rem;
       line-height: 1.7;
   color: #555;
  margin-bottom: 25px;
  font-style: italic;
   padding-left: 20px;
}

.testimonial-author strong {
    color :      #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {


   display: block; 
	   color: #666; 
	    font-size: 0.95rem; 
	 margin-top: 5px;
     }

.approach-section {
   padding     :    100px 0;
  background: white;
}

.approach-content {
  max-width: 1200px;
   margin     :0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
	align-items: center;
}

.approach-text h2

{
    margin-bottom: 30px;
   color: #2c3e50;
  font-size: 2.5rem;
}

.approach-text p {
	font-size: 1.1rem;
     line-height: 1.8;
  color: #555;
    margin-bottom: 25px;
          text-align: justify; 

}

.approach-highlights {
   display: flex;
    flex-direction: column;
    gap: 25px;
   margin-top: 40px;

}

.highlight-item {
    padding: 20px;
  background: #f8f9fa;
   border-radius: 10px;
  border-left: 4px solid #e74c3c;
}

.highlight-item h4 {
    color: #2c3e50;
   margin-bottom: 8px;
  font-size: 1.2rem;
}

.highlight-item p {
   color: #666;
   margin: 0;
    font-size: 0.95rem;
   text-align: left;
}

.approach-image img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-main {

	  min-height    :       80vh;
  display: flex;
   align-items: center;
	 padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     }

.thankyou-container {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.thankyou-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
          align-items: center;
}

.success-animation   {
	 text-align: center;
	 margin-bottom: 40px;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
   border-radius    :   50%;
	 background: #2ecc71;
     margin  :     0 auto 30px;
   display: flex;
   align-items: center;
	justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.checkmark {
   width: 60px;
	height: 30px;
     border: 5px solid white;
   border-top: none;
   border-right:   none;
  transform: rotate(-45deg);
   animation :     checkmarkDraw 0.4s ease-out 0.3s both;
}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmarkDraw {
    from { width: 0; height: 0; }
    to { width: 60px; height: 30px; }
}.thankyou-text h1 {
	color: #2c3e50;
   margin-bottom: 20px;
  text-align: center;
          font-size: 2.5rem; 

}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
  line-height: 1.7;

}

.next-steps h2 {
	color: #2c3e50;
    margin-bottom: 30px;
  font-size: 1.8rem;
    text-align: center;
}

.steps-timeline {
    display: flex;
   flex-direction:     column;
   gap: 30px;
    margin-bottom: 50px;
}

.step-item {
  display: grid;
	grid-template-columns: 60px 1fr;
  gap: 20px;
        align-items: center;
}

.step-number	{
    width: 60px;
   height: 60px;
    background: #3498db;
        color   :    white;
	border-radius: 50%;
  display:     flex;
  align-items: center;
    justify-content: center;
   font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    color  :    #2c3e50;
    margin-bottom: 8px;
   font-size: 1.2rem;
}

.step-content p {
    color: #666;
   margin-bottom: 8px;
    line-height: 1.6;
}

.step-time {
   color: #3498db;
  font-weight: 500;
    font-size: 0.9rem;
}

.additional-info {
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 30px;
   margin-bottom: 40px;
}

.info-card {
	   padding: 30px;
   background: white;
  border-radius  :     15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	text-align: center;

}

.info-card h3 {
  color:   #2c3e50;
    margin-bottom: 15px;
   font-size:  1.3rem;
}

.info-card p {
  color: #666;
  margin-bottom: 20px;
   line-height: 1.6;
}

.phone-link {
   display: inline-block;
    background     :      #27ae60;
   color    :      white;
   padding: 12px 25px;
    text-decoration    :        none;
      border-radius: 8px;
	font-weight: 600;
   transition: background 0.3s ease;
}

.phone-link:hover {
   background: #2ecc71;
}

.about-link {
   display: inline-block;
	color: white;
   font-weight: 600;
   background     :   #3498db;
  text-decoration: none;
    transition: background 0.3s ease;
  border-radius: 8px;
   padding: 12px 25px;
}

.about-link:hover {
 background: #2980b9;
}

.action-buttons {

	    text-align: center;
    display: flex;
   gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.related-services {
  padding: 80px 0;
   background:       white;
}

.related-services h2 {
 text-align: center;
   font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 50px;


}

.services-preview {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:       40px;
}

.service-preview-card {
    background :   #f8f9fa;
  padding     :      30px;
    border-radius: 15px;
   -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    text-align: center;
	 transition : transform 0.3s ease;


}

.service-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.service-preview-card img {
  width: 100%;
	height: 180px;
    object-fit: cover;
  border-radius: 10px;
	margin-bottom: 20px;
}

.service-preview-card h3 {
   color: #2c3e50;
    margin-bottom: 15px;
   font-size: 1.3rem;
}

.service-preview-card p {
    color: #666;
  font-size: 0.95rem;
			line-height    :  1.6;
}

@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.2rem;
    }
    
    .hero-content-about p {
        font-size: 1.1rem;
    }
    
    .story-content,
    .expertise-content,
    .approach-content,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        gap: 25px;
    }
    
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .primary-button,
    .action-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-text h1 {
        font-size: 2rem;
    }
    
    .methodology-section h2,
    .testimonials-section h2,
    .achievements-section h2,
    .story-text h2,
    .expertise-text h2,
    .approach-text h2 {
        font-size: 2rem;
    }
    
    .method-card,
    .testimonial-card,
    .info-card {
        padding: 20px;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 40px;
        height: 20px;
    }
}.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;
    }
}