* {

	    margin: 0;
	padding    :     0;
  box-sizing: border-box;
     }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
   background: #fafbfc;
}

.container {
	   max-width: 1200px;
   margin: 0 auto;
   padding  :     0 20px;
     }



.main-navigation {
               position:    fixed;
  top    :      0;
   width :  100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
    border-bottom: 1px solid #e8eaed;
}


.nav-container {
  max-width    :  1200px;
   margin: 0 auto;
    padding: 0 20px;
       display: flex;
         justify-content: space-between;
    align-items: center;
  height: 70px;
}

.brand-logo {
         height: 45px;
   width: auto;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 2rem;
}

.nav-links a {
  text-decoration: none;
    color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
   position: relative;
}

.nav-links a:hover {
                    color: #3498db;
}

.nav-links a::after	{
  content: '';
	position: absolute;
    width: 0;
   height: 2px;
   bottom: -5px;
   left: 0;
   background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
   width: 100%;
}



.mobile-menu-toggle {
    display: none;
  flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
   height: 3px;
    background: #2c3e50;
   transition: 0.3s;
}

.hero-section
	{
  margin-top: 70px;
    min-height: 90vh;
    display: flex;
	 align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
    overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
   top: 0;
  left: 0;
  right: 0;
    bottom: 0;
  background: rgba(0,0,0,0.3);
   z-index: 1;
}

.hero-content  {


   position: relative;
   z-index: 2;
   max-width: 1200px;
  margin   :   0 auto;
  padding   :       0 20px;
          display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items: center;
}

.hero-content h1


{
   font-size    :3.5rem; 
	    font-weight: 700; 
	   line-height: 1.2; 
	  margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.3rem;
    opacity: 0.9;
   margin-bottom: 2.5rem;
    line-height: 1.5;


}

.hero-actions {
    display: flex;
	 gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding: 12px 28px;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
	 display: inline-block;
}

.primary-btn
{
  background: #3498db;
       color: white;
    border: 2px solid #3498db;
}

.primary-btn:hover {
   background: #2980b9;
	border-color    :    #2980b9;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
	color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
     background: white;
       color:    #2c3e50;
	}

.hero-visual {
    position: relative;
  z-index: 2;
}

.hero-image {
	    width: 100%;
	 height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);}

.introduction-section {
    padding: 5rem 0;
        background: white;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}  

.intro-content > p {
               font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
          margin: 0 auto 3rem;
    color: #555;
}

.benefits-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
	}

.benefit-item {
 text-align: center;
	 padding: 2rem;
  background  :     #f8f9fa;
  border-radius:   12px;
   transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h3 {
    color:       #2c3e50;
   margin-bottom: 1rem;
  font-size: 1.4rem;
}

.services-section {
	padding: 5rem 0;
               background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
     font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
    background: white;
   border-radius: 12px;
   overflow     :    hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover; 
	
}

.service-content {
   padding: 1.5rem;
}

.service-content h3 {
   color: #2c3e50; 
	       margin-bottom: 1rem; 
	  font-size: 1.3rem;
} 

.service-content p {
    color: #666;
   margin-bottom:  1rem; 
	
}

.service-content ul {
    list-style:none;
    padding-left  :       0;
}

.service-content li {
  color: #555;
   margin-bottom :0.5rem;
    position  :        relative;
    padding-left: 1.5rem;
}

.service-content li::before {
  content: '✓';
                    position: absolute;
  left: 0;
    color: #3498db;
   font-weight: bold;
}

.cta-section    {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color    :       white;
  text-align: center;
}

.cta-content h2 {
  font-size   :      2.3rem;
  margin-bottom: 1.5rem;
}

.cta-content p
	{
  opacity: 0.9;
               max-width: 600px;
   margin: 0 auto 2rem;
   font-size: 1.1rem;
}

.cta-button {
	background: #e74c3c;
      color    : white;
   padding: 15px 35px;
   border-radius: 8px;
    text-decoration:       none;
  font-weight: 600;
    font-size:       1.1rem;
    display: inline-block;
	 transition: all 0.3s ease; 
	
}

.cta-button:hover {
      background: #c0392b;
  transform: translateY(-2px);
	}

.contact-section {
  padding: 5rem 0;
      background: white;
}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.contact-wrapper {
  display: grid;

   grid-template-columns: 2fr 1fr;

   gap: 3rem;

    max-width: 1000px;

  margin: 0 auto;
}

.contact-form {
   background: #f8f9fa;
	 padding: 2rem;
    border-radius: 12px;
}

.form-row {
   display   :   grid;
    grid-template-columns  :      1fr 1fr;
  gap     :    1rem;
   margin-bottom: 1rem;
}

.form-group    {
    margin-bottom: 1rem;
}

.form-group label   {
    display     :   block;
  margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width:100%;
    padding: 12px;
  border: 2px solid #e1e5e9;
	border-radius: 6px;
  font-size: 16px;
  transition   :       border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
     border-color: #3498db;
}

.submit-btn {

         background: #3498db;
	color     : white;
	 -webkit-border-radius: 6px;
  padding    :  12px 30px;
  border: none;
   border-radius: 6px;
    -moz-border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
   cursor: pointer;
   transition: background 0.3s ease;
  width: 100%;

}

.submit-btn:hover {
    background: #2980b9;
}

.contact-info {
   padding: 2rem;
}

.contact-info h3 {
  color: #2c3e50; 
   margin-bottom    :      2rem; 
  font-size    :   1.4rem;
}

.contact-item {

		margin-bottom: 1.5rem;
	}

.contact-item strong {

	  color: #2c3e50;
   display: block;
    margin-bottom: 0.5rem;
     }

.contact-item p {
  color: #666; 
   margin: 0;
}

.main-footer {
  background: #2c3e50;
    color    :       white;
  padding: 3rem 0 1rem;
}

.footer-content     {
           display: grid;
      grid-template-columns: 1fr 2fr;
  gap     :    3rem;
    margin-bottom: 2rem;

}

.footer-logo {

    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
	}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.9rem;
	
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer-column h4 {

	   margin-bottom    :  1rem;
          color: white;
  font-size: 1.1rem;


}

.footer-column ul
	{
   list-style: none;
}

.footer-column li    {
       margin-bottom: 0.5rem;


}

.footer-column a {
  color    :     #bdc3c7;
   text-decoration: none;
  transition :     color 0.3s ease;
}

.footer-column a:hover {
   color  :     #3498db;
}

.footer-column p{
   color: #bdc3c7;
  font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
  border-top: 1px solid #34495e;
	 padding-top: 1rem;
    text-align: center;
	
}

.footer-bottom p {

	  color: #95a5a6;
  font-size: 0.9rem;
   margin: 0;
     }@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}.about-hero     {
  margin-top: 70px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: white;
   text-align: center;
}

.about-hero-content h1 {
   font-size    :     3rem;
  margin-bottom :    1.5rem;
	 font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    max-width: 700px;
  margin: 0 auto;
  opacity  :     0.9;
    line-height: 1.6;
	
}

.company-story {
       padding: 5rem 0;
  background: white;


}

.story-grid

{
    display   :    grid;
        grid-template-columns: 1.5fr 1fr;
   gap: 4rem;
    align-items: center;
}

.story-content h2 {
        font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 2rem; 
	
}

.story-content p {
   font-size: 1.1rem;
   color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.7;
}

.achievements-list
{

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    margin-top: 3rem;
	}

.achievement-item {
       text-align: center;
      padding: 1.5rem;
  background: #f8f9fa;
    border-radius: 8px;

}


.achievement-item h3 {
     font-weight: 700; 
	margin-bottom: 0.5rem; 
  color    :    #3498db; 
    font-size: 2.5rem;
}

.achievement-item p {
    color: #666;
  font-size :    0.9rem;
   margin: 0;
}

.story-image {
   width: 100%;
         height: auto;
    border-radius     :12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.philosophy-section     {
  padding     : 5rem 0;
       background   :     #f8f9fa;
}

.philosophy-section h2 {
  text-align: center;
       font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.philosophy-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap :   2rem;
}

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius :     12px;
    text-align     :    center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition    :        transform 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
}

.philosophy-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   border-radius: 50%;
   margin: 0 auto 1.5rem;
}

.philosophy-card h3 {
    color: #2c3e50;
               margin-bottom: 1rem;
   font-size: 1.3rem;
}

.philosophy-card p {
    color: #666;
    line-height: 1.6;
}

.expertise-section {
   padding: 5rem 0;
    background: white;
}

.expertise-content {
   display: grid; 
	   grid-template-columns: 1fr 1fr; 
	    gap: 4rem; 
	  align-items   :        center;
}

.expertise-text h2 {
   font-size     :2.5rem;
   color: #2c3e50;
	margin-bottom: 2rem;
}

.expertise-text > p {
   font-size: 1.1rem;
    color:        #555;
         margin-bottom    :  2.5rem;
  line-height: 1.7;
}

.expertise-areas {
   display: flex;
  flex-direction: column;
    gap: 2rem;
	
}

.area-item {
   padding: 1.5rem;
    background: #f8f9fa;
  border-radius: 8px;
   border-left  :   4px solid #3498db;
}

.area-item h4 {
               color: #2c3e50;
   margin-bottom: 0.8rem;
  font-size: 1.2rem;
     }

.area-item p {
	   color: #666;
	margin: 0;
    line-height: 1.6;}

.expertise-image {
    width: 100%;
	 height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.approach-section {
      padding :     5rem 0;
    background  :   #f8f9fa;
}

.approach-section h2 {
    margin-bottom:     3rem;
  text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;


}  

.approach-steps {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.step-item {
	background: white;
  padding: 2rem;
    border-radius  :    12px;
   text-align: center;
   position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
     display: inline-block;
   width: 50px;
  height    :      50px;
    background: #3498db;
   color: white;
  border-radius: 50%;
   line-height: 50px;
        font-weight: 700;
     font-size: 1.2rem;
    margin-bottom :     1.5rem;
}

.step-item h3   {
  color: #2c3e50;
   margin-bottom   :      1rem;
  font-size: 1.2rem;
}

.step-item p     {
  color: #666;
          line-height: 1.6;
    margin: 0;
}

.values-section {
                    padding: 5rem 0;
   background: white;
	
}

.values-wrapper {
    display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
               align-items    : center;
}

.values-image {
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-content h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 2rem;



}



.value-item {
    margin-bottom: 2rem;
      padding-bottom: 1.5rem;
   border-bottom    :   1px solid #e8eaed;
}

.value-item:last-child {
          border-bottom: none;
  margin-bottom: 0;
}

.value-item h3


{
  color: #3498db;
         margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.commitment-section {
    padding: 5rem 0;
  background: #f8f9fa;
}

.commitment-content h2 {
  text-align: center;
  font-size    :       2.5rem;
	color: #2c3e50;
	margin-bottom: 2rem;


}

.commitment-text {
     font-size: 1.2rem; 
	  color: #555; 
	    text-align: center; 
	  max-width: 800px; 
	    margin: 0 auto 3rem; 
	  line-height: 1.7; 
}

.commitment-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
	}

.commitment-item {
  background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.commitment-item h4 {
   color: #2c3e50;

  margin-bottom: 1rem;

	 font-size: 1.2rem;
}

.commitment-item p     {
         color: #666;
    line-height: 1.6;
    margin: 0;
}

.thankyou-hero {
    margin-top: 70px;
               padding: 5rem 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
 text-align: center;
}

.thankyou-content {
   max-width:   800px;
   margin: 0 auto;
}

.success-indicator   {
   margin-bottom: 2rem;
}

.checkmark-circle {
     width:80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
   margin: 0 auto;
  display: flex;
   align-items: center;
        justify-content: center;
    position: relative;
}

.checkmark {


  width    :  30px;
  height: 15px;
   border: 3px solid white;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
	}

.thankyou-content h1 {
  font-size: 3rem;
	margin-bottom: 1.5rem;
  font-weight: 700;
}

.thankyou-subtitle {
  font-size    :1.3rem;
   opacity:     0.9;
    line-height: 1.6;
  margin-bottom: 3rem;
}

.next-steps {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
   border-radius: 12px;
   margin-bottom: 3rem;
}

.next-steps h2    {
    font-size: 2rem;
  margin-bottom: 2rem;
}

.steps-timeline {
               display: flex;
  flex-direction: column;
    gap: 2rem;
}

.timeline-item {
   display: flex;
  align-items     :flex-start;
	 gap: 1.5rem;


}

.timeline-marker {
    width: 20px; 
  height    :     20px; 
    background: white; 
          border-radius: 50%; 
   margin-top: 0.5rem; 
    flex-shrink: 0;
}

.timeline-content h3 {
		font-size  :1.3rem;
    margin-bottom: 0.5rem;
     }

.timeline-content p {
   opacity: 0.9;
   line-height: 1.6;
  margin: 0;
}

.interim-suggestions h2 {
       font-size: 2rem;
         margin-bottom: 2rem;
}

.suggestions-grid	{
         display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.suggestion-card  {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius: 12px;
  text-align: center;
}

.suggestion-image {
    width: 100%;
   height: 150px;
  object-fit: cover;
   border-radius: 8px;
  margin-bottom  : 1.5rem;
}

.suggestion-card h3 {
 font-size: 1.3rem;
    margin-bottom: 1rem;
}

.suggestion-card p {
   opacity: 0.9;
   line-height: 1.6;
    margin-bottom: 1.5rem;
}

.suggestion-link {
   background: white;
  color: #27ae60;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
}

.suggestion-link:hover {
   background: #f8f9fa;
  transform: translateY(-2px);
	
}

.contact-confirmation {
				 padding: 4rem 0;
     background: white;
}

.confirmation-details h2 {
  text-align    :      center;
	 font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1rem;
}

.confirmation-details > p {
    text-align: center;
   font-size:1.1rem;
   color: #666;
  max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 3rem;
}

.contact-detail {
     background: #f8f9fa;
   padding: 2rem;
  border-radius: 12px;
               text-align: center;
	}

.contact-detail h3	{
   color  :        #2c3e50;
	 margin-bottom: 1rem;
   font-size: 1.3rem;
}

.contact-detail p {
    color: #555;
    margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-detail small {
   color     : #999;
  font-size: 0.9rem;

}


.response-time-info {
	   background: #e8f5e8;
    padding: 2rem;
   border-radius: 12px;
    text-align: center;
    border-left  :      4px solid #27ae60;}

.response-time-info h3 {
  margin-bottom: 1rem;
    color    :        #2c3e50;
   font-size: 1.3rem;
}

.response-time-info p {
       color: #555;
   line-height: 1.6;
   margin: 0;
}

.additional-resources {
  padding: 4rem 0;
   background: #f8f9fa;
}

.additional-resources h2 {
   text-align  :       center;
		 font-size: 2.5rem;
    color :   #2c3e50;
    margin-bottom: 3rem;
}

.resources-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	        gap: 2rem;
}

.resource-item {
      background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-item h3 {
      color: #2c3e50;
    margin-bottom: 1rem;
   font-size: 1.3rem;
	}

.resource-item p {
	 color: #666;
  line-height: 1.6;
    margin:    0;
}
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .story-grid,
    .expertise-content,
    .values-wrapper {
        grid-template-columns: 1fr;
    }
    
    .achievements-list {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        align-self: center;
    }
    
    .suggestions-grid,
    .contact-info-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .philosophy-section h2,
    .expertise-text h2,
    .approach-section h2,
    .values-content h2,
    .commitment-content h2,
    .confirmation-details h2,
    .additional-resources h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .next-steps h2,
    .interim-suggestions h2 {
        font-size: 1.5rem;
    }
    
    .next-steps,
    .contact-detail,
    .response-time-info {
        padding: 1.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;
    }
}