*  
  {
   margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
     line-height: 1.6;
     color: #333;
       background-color: #fff;
}

.primary-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 rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.primary-navigation.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: 1rem 2rem;
}

.brand-section .company-logo {
	height: 45px;
  width :      auto;
}

.navigation-links {
    display  :flex;
   list-style:     none;
    gap :    2rem;
}

.navigation-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
   transition: color 0.3s ease;
    position     :        relative;
}

.navigation-links a:hover {
  color: #2c5aa0;
}

.navigation-links a::after {
  content: '';
    position: absolute;
  width: 0;
    height: 2px;
        bottom: -5px;
   left: 0;
	 background-color: #2c5aa0;
  transition: width 0.3s ease;
}

.navigation-links a:hover::after {
  width: 100%;
}



.mobile-toggle {
   display    :       none;
   flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-line {
   width: 25px;
  height: 3px;
   background-color: #333;
    transition: all 0.3s ease;


}

.mobile-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}  

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section

{

	  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     }

.hero-content {
    max-width: 1200px;
   margin: 0 auto;
 display: grid;
   grid-template-columns     :   1fr 1fr;
   gap: 4rem;
   align-items    :    center;
}

.hero-text-area h1


{

   margin-bottom: 1.5rem;
   line-height: 1.2;
  font-weight: 700;
  font-size: 3.2rem;
      color: #1a1a1a;

}

.hero-description {
   font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-actions {
   display: flex;
    gap: 1.5rem;
   flex-wrap: wrap;
}

.primary-cta


{
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 15px 35px;
  text-decoration    :     none;
  border-radius: 8px;
 font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary-cta:hover {
  transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
}

.secondary-action {
  background: transparent; 
	   color: #2c5aa0; 
	  padding: 15px 35px; 
	  text-decoration:        none; 
	   border: 2px solid #2c5aa0; 
	 border-radius: 8px; 
	  font-weight: 600; 
	       transition: all 0.3s ease;
}

.secondary-action:hover 
 {
    background: #2c5aa0;
  color: white;
}

.hero-visual img {
	width: 100%;
	height   :   auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-overview {
    padding: 100px 2rem;
  background: white;
}

.content-container {

	  max-width: 1200px;
    margin: 0 auto;
     }

.services-overview h2 {
    text-align: center;
  font-size:      2.8rem;
   color: #1a1a1a;
                    margin-bottom: 4rem;
	font-weight: 700; 
	
}

.service-grid {
      display: grid;
               gap: 3rem;
     }

.service-item {
   display: grid;
  grid-template-columns: 400px 1fr;
    gap: 2.5rem;
    align-items   :       center;
    opacity: 0;
  transform: translateY(30px);
         transition: all 0.6s ease;
}  

.service-item.visible {
	 opacity: 1;
  transform: translateY(0);
}

.service-item:nth-child(even)	{
    grid-template-columns: 1fr 400px;
}

.service-item:nth-child(even) .service-visual {
   order: 2;
}

.service-item:nth-child(even) .service-details {
  order    :  1;
}

.service-visual img {
   width: 100%;
  height: 280px;
    object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-details h3 {
      font-size :       1.8rem;
 color  :      #1a1a1a;
    margin-bottom: 1rem;
  font-weight: 600;
}

.service-details p {
   font-size   :1.1rem;
         color: #666;
	line-height: 1.8;
}

.cta-section {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   color: white;
  opacity: 0;
  transform: translateY(30px);
 transition: all 0.6s ease;
}

.cta-section.visible {
			opacity: 1;
  transform: translateY(0);
}

.cta-content {
  max-width: 1200px;
       margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 400px;
	gap: 4rem;
  align-items :   center;
    margin-bottom     :3rem;
}

.cta-text h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.cta-text p {
  font-size: 1.1rem;
   line-height  :  1.8;
  margin-bottom: 2rem;
   opacity  : 0.9;
	
}

.benefits-list {
  display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.benefit-point {
  display: flex;
   align-items: center;
  font-size: 1rem;
  opacity: 0.95; 
	
}

.benefit-point::before {
  content: '✓';
   margin-right: 12px;
   color: #4CAF50;
  font-weight  :     bold;
  font-size: 1.2rem;
}

.cta-visual img {
  width: 100%;
             height    :        auto;
      border-radius: 10px;
     box-shadow: 0 8px 30px rgba(0,0,0,0.3); 

}

.cta-actions {
    text-align: center;
    max-width: 1200px;
	 margin: 0 auto;
}

.main-cta-button {
	background: white;
  color: #2c5aa0;
   padding: 18px 40px;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
    display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.main-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.contact-section {
   padding   :    100px 2rem;
    background   :       #f8f9fa;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.contact-section.visible{
  opacity: 1;
  transform: translateY(0);
}

.contact-wrapper {
  max-width    :    800px;
   margin: 0 auto;
	
}

.contact-intro {
    margin-bottom: 3rem;
   text-align    :   center;
}

.contact-intro h2 
 {
    font-size  :      2.5rem;
   color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
      line-height:       1.7;
}

.contact-form {
        background: white;
  padding: 3rem;
	 border-radius     :     12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);


}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
	 margin-bottom: 0.5rem;
   font-weight: 600;
  color: #333;

}

.form-group input,
.form-group select,
.form-group textarea {
          width: 100%;
	padding: 12px 16px;
 border: 2px solid #e1e5e9;
    border-radius: 6px;
               font-size: 1rem;
  transition: border-color 0.3s ease;
   background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline: none;
    border-color: #2c5aa0;
     }

.form-group textarea {
   resize: vertical;
    min-height: 120px;
}

.form-submit {

	  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
   padding: 15px 40px;
   border: none;
    border-radius: 8px;
   font-size: 1.1rem;
 font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
        width    :  100%;


}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
}

.site-footer {
  background: #1a1a1a;
 color: white;
  padding: 60px 2rem 30px;


}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
	 grid-template-columns: 300px 1fr 1fr;
    gap: 4rem;
	margin-bottom: 2rem;
}

.footer-brand img

{
  height     :  50px;
   width: auto;
  margin-bottom: 1rem;
}

.contact-details {
	 display: flex;
  gap: 3rem;
}

.contact-details h4 {
   color: #fff;
   font-size: 1.1rem;
   margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
      line-height: 1.6;
}

.footer-links {
   display: flex;
    gap: 4rem;
	
}

.footer-links h4 {


  font-size: 1.1rem;
  margin-bottom    :       1rem;
    color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
   margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
   text-decoration : none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #2c5aa0;
}

.footer-bottom {
   max-width: 1200px;
		 margin: 0 auto;
    text-align: center;
   padding-top: 2rem;
   border-top: 1px solid #333;
   color: #999;
}@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navigation-links.active {
        transform: translateX(0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text-area h1 {
        font-size: 2.5rem;
    }
    
    .service-item {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .service-item:nth-child(even) .service-visual {
        order: 1;
    }
    
    .service-item:nth-child(even) .service-details {
        order: 2;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .services-overview,
    .cta-section,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .hero-text-area h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .contact-intro h2,
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta,
    .secondary-action {
        width: 100%;
        text-align: center;
    }
}.about-hero {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f1f3f5 0%, #e3e8ed 100%);
}

.about-hero-content {
          max-width: 1200px;
    margin   :       0 auto;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
   align-items: center;
	}

.about-intro h1 {
  font-size :   3rem;
  color: #1a1a1a;
   margin-bottom: 1.5rem;
    font-weight: 700;
   line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
   color: #555;
  line-height: 1.8;
}

.about-visual img
{
  width: 100%;
    height: auto;
   border-radius     :  12px;
  box-shadow: 0 12px 45px rgba(0,0,0,0.12);

}

.expertise-section {


   padding: 90px 2rem;
    background: white;




}

.expertise-wrapper {
   max-width: 1200px;
	margin: 0 auto;
   text-align: center;
}

.expertise-section h2 {
   font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 3.5rem;
  font-weight: 700;
}

.expertise-grid {
    display :      grid;
  grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
}

.expertise-block {
    padding     :2.5rem 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-block:hover {
  transform: translateY(-8px);

	  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expertise-icon {
   margin-bottom: 1.5rem;
}

.icon-placeholder {
   width: 70px;
    height: 70px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 50%;
    margin: 0 auto;
}

.expertise-block h3  {
  font-size: 1.5rem;
   color: #1a1a1a;
   margin-bottom: 1rem;
   font-weight: 600;
}

.expertise-block p {
  color: #666;
   line-height: 1.7;
  font-size: 1rem;
}

.methodology-section
{
   padding:90px 2rem; 
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.methodology-content {


               max-width :     1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 400px;
  gap: 4rem;
    align-items: flex-start;}

.methodology-text h2 {
    font-size :2.4rem;
   color: #1a1a1a;
    margin-bottom: 1.5rem;
	font-weight  :  700;
}

.methodology-text > p {
   font-size: 1.1rem;
   color: #666;
   line-height: 1.8;
   margin-bottom: 3rem;
	
} 

.process-steps {
	   display: flex;
   flex-direction: column;
    gap: 2rem;}

.process-step {
  display: flex;
  align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   color: white;
  width: 50px;
	height :        50px;
    border-radius: 50%;
  display: flex;
  align-items: center;
         justify-content: center;
  font-weight    :     700;
    font-size: 1.1rem;
   flex-shrink: 0;
}

.step-content h4 {
   font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom    :  0.5rem;
	 font-weight  :       600;
}

.step-content p {
   color: #666;
     line-height: 1.6;
    font-size: 0.95rem;
}

.methodology-visual img {
  width: 100%;
	height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    position: sticky;
    top: 120px;
}

.results-section {
    padding    :    90px 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   color: white;
    text-align: center;
}

.results-wrapper {
  max-width: 1200px;
  margin: 0 auto; 

}



.results-section h2  
  {
    font-size: 2.6rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.results-intro {
                    font-size: 1.1rem;
    opacity  :       0.9;
    margin-bottom: 4rem;
  line-height: 1.7;



}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.stat-item {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
					line-height: 1.4;
    opacity: 0.9;
	 font-size: 0.95rem;
}

.approach-section     {
    padding: 90px 2rem;
  background: white;
}

.approach-content {

	 max-width: 1200px;
	    margin: 0 auto;
	   display: grid;
	  grid-template-columns     :       400px 1fr;
	    gap  :       4rem;
	   align-items: flex-start;


}

.approach-visual img {
    width:   100%;
   height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    position: sticky;
   top    :       120px;
}

.approach-text h2 {
	  font-size:       2.4rem;
  color: #1a1a1a;
   margin-bottom: 1.5rem;
  font-weight: 700;
     }

.approach-text > p {


                    font-size: 1.1rem;
         color: #666;
  line-height: 1.8;
          margin-bottom: 3rem;


}

.approach-principles {
    display   :      flex;
   flex-direction: column;
    gap: 2rem;
}

.principle-item h4 {
  font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;

}  

.principle-item p {
    color: #666;
  line-height: 1.7;
   font-size: 1rem;
}

.thankyou-hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
  display: flex;
  align-items  :        center;
     }

.thankyou-container {
    max-width: 1200px;
  gap: 4rem;
  align-items: center;
                    grid-template-columns: 1.2fr 1fr;
	display: grid;
    margin: 0 auto;
}

.success-content {
   text-align: center;
	
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
   width: 120px;
    height: 120px;
   border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    display: flex;
  align-items: center;
   justify-content: center;
   margin: 0 auto;
	 animation: scaleIn 0.8s ease-out;
}

.checkmark {
   width: 40px;
  height: 20px;
    border: solid white;
  border-width: 0 0 4px 4px;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.6s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    50% { width: 40px; height: 0; }
    100% { width: 40px; height: 20px; }
}.success-message h1 {

	 font-size: 2.8rem;
   color: #1a1a1a;
	margin-bottom: 1.5rem;
   font-weight: 700;

}

.confirmation-text	{

						font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
  margin-bottom: 3rem;}

.next-steps h3		{
	font-size: 1.5rem;
   margin-bottom: 2rem;
   font-weight: 600;
    text-align: left;
    color    :    #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction   :        column;
	gap: 1.5rem;
    text-align: left;
     }

.step-item {
    display :      flex;
  align-items: flex-start;
	 gap  :1rem;
}

.step-marker {


	background   :  #2c5aa0;
	color: white;
   width: 30px;
   height: 30px;
               border-radius: 50%;
  display: flex;
    align-items     :        center;
    justify-content: center;
   font-weight: 600;
        font-size    :        0.9rem;
    flex-shrink   :0;
}

.step-item p {
   color: #666;
    line-height: 1.6;
	 font-size: 0.95rem;
   margin: 0;
}

.thankyou-visual img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 12px 45px rgba(0,0,0,0.12);
}



.additional-resources {

	    padding    :  80px 2rem;
  background: white;
	}

.resources-wrapper {
  max-width: 1000px;
   margin: 0 auto;
   text-align: center;
}

.additional-resources h2 {
   font-size: 2.4rem;
               color: #1a1a1a;
    margin-bottom: 1rem;
 font-weight: 700;
}

.resources-intro {
	  font-size     :    1.1rem;
   color: #666;
  margin-bottom: 3rem;
  line-height  :      1.7;

}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.resource-card {
  background :#f8f9fa;
   padding: 2rem 1.5rem;
    border-radius    :  10px;
    text-align: left;
  border-left: 4px solid #2c5aa0;
   transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h4 {
	font-size: 1.2rem;
    color: #1a1a1a;
        margin-bottom: 1rem;
                    font-weight: 600;
}

.resource-card p {
     color: #666;
  line-height     :1.6;
    font-size: 0.95rem;


}

.contact-reminder {
			padding: 60px 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
   color: white;
  text-align: center;
}

.reminder-content

{
  max-width  :        800px;
   margin: 0 auto;
}

.contact-reminder h3 {
    font-size: 1.8rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.contact-reminder p {


  font-size: 1.1rem;
   opacity  :0.9;
   margin-bottom: 2rem;
  line-height: 1.7;

}

.direct-contact {
  display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 3rem;
}

.contact-method  
  {
  font-size   :     1rem;
   opacity   :0.95;
}

.contact-method strong {
    color: white;
  margin-right: 0.5rem;
}@media screen and (max-width: 768px) {
    .about-hero-content,
    .methodology-content,
    .approach-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-intro h1,
    .success-message h1 {
        font-size: 2.2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .direct-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .methodology-visual img,
    .approach-visual img {
        position: static;
    }
}

@media screen and (max-width: 480px) {
    .about-hero,
    .expertise-section,
    .methodology-section,
    .results-section,
    .approach-section,
    .thankyou-hero,
    .additional-resources,
    .contact-reminder {
        padding: 60px 1rem;
    }
    
    .about-intro h1,
    .success-message h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 25px;
        height: 12px;
    }
}.content-section {
    padding: 100px 2rem;
      background: #f8f9fa;
}

.content-section h1 {
   text-align: center; 
   font-size: 2.8rem; 
    color    :    #1a1a1a; 
   margin-bottom: 2rem; 
  font-weight: 700;
} 

.content-section h2 {
    font-size: 1.8rem;
  color: #1a1a1a;
   margin-top: 2rem;
    margin-bottom: 1rem;
               font-weight :        600;
	
}

.content-section p {

	  font-size: 1.1rem;
  color: #666;
   line-height: 1.8;
   margin-bottom: 1.5rem;




}

.content-section ul {
  margin-bottom: 1.5rem;
}@media screen and (max-width: 768px) {
    .content-section {
        padding: 60px 1rem;
    }

    .content-section h1 {
        font-size: 2.2rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}