* {
  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: #ffffff;
}

.navbar-wrapper    {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
	 width: 100%;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}



.nav-content {
   max-width: 1200px;
  margin: 0 auto;
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.brand-section .logo-img {
    height: 45px;
   width: auto;
}  

.nav-links {
          display: flex;
               gap: 2rem;
}

.nav-item {
    text-decoration    :      none;
  color :     #333;
    font-weight: 500;
   padding :  0.5rem 1rem;
    border-radius: 6px;
   transition: all 0.3s ease;
}

.nav-item:hover
{

    background: #f0f8ff;
  color: #2c5aa0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-line {
  width: 25px;
  height: 3px;
   background    :    #333;
   transition     :        all 0.3s ease;
}

.mobile-menu		{
  display   :       none;
	    flex-direction   :  column;
	   background: white;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	    padding: 1rem 0;
}

.mobile-link {
    padding: 1rem 2rem;
  text-decoration: none;
  color :  #333;
  border-bottom     :   1px solid #f5f5f5;
}

.hero-section {
         margin-top: 80px;
   padding    :   4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 90vh;
        display: flex;
    align-items :center;
}

.hero-content {
   max-width   :   1200px;
   margin   :    0 auto;
  display: grid;
  grid-template-columns    :1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.main-heading {
    font-size: 3.2rem;
   font-weight: 700;
    line-height: 1.2;
 margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom  : 2rem;
    opacity    :  0.9;
 line-height: 1.7; 
	
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
     padding: 1rem 2rem;
  text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn 
 {
   background: #ff6b6b;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.primary-btn:hover {
    background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
} 

.secondary-btn {
    background    :       transparent;
    color: white;
   border: 2px solid white;
}

.secondary-btn:hover {
	background:  white;
  color: #333;
}

.hero-image {
  width: 100%;
   height: 400px;
  object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview

{
	   padding: 5rem 2rem;
    background: #f8f9fa;
	}

.container {
    max-width: 1200px;

	   margin: 0 auto;
}

.section-header {
   text-align: center;
               margin-bottom: 3rem;
}

.section-header h2 {

		font-size   :      2.5rem;
  color: #2c3e50;
        margin-bottom: 1rem;

}

.section-header p {
  font-size: 1.2rem;
  color: #6c757d;
    max-width: 600px;
  margin: 0 auto;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
   background: white;
    border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                    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-img {

    width: 100%;
  height: 200px;
  object-fit: cover;
   border-radius: 10px;
    margin-bottom: 1.5rem;}

.service-card h3 {
 margin-bottom : 1rem;
   font-size: 1.5rem;
      color: #2c3e50;
}

.service-card p {
                    color: #6c757d;
   line-height: 1.6;
}

.cta-section {
  background: linear-gradient(45deg, #ff9a9e, #fecfef);
    padding   :   4rem 2rem;
   color: #333;
}

.cta-content {
  max-width: 1200px;
   margin: 0 auto;
   display: grid;
      grid-template-columns: 2fr 1fr;
   gap: 3rem;
   align-items: center;
}



.cta-text h2 {
  font-size  :        2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.cta-text p {
  font-size     :    1.2rem;
    margin-bottom: 2rem;
    color     :    #555;
}

.benefits-list   {
    display: flex;
   flex-direction   :        column;
    gap  :    0.5rem;
}

.benefit-item {
  padding: 0.7rem 0;
  font-weight: 500;
         color: #2c3e50;
                    position: relative;
  padding-left: 1.5rem;
}

.benefit-item:before {
  content: "✓";
  position:  absolute;
    left: 0;
   color: #28a745;
	font-weight: bold;
}

.cta-button {
	 background: #28a745;
  color: white;
  padding: 1.5rem 2.5rem;
   text-decoration   : none;
    border-radius: 10px;
    font-weight: 600;
   font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}



.cta-button:hover {


    background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
	}

.training-programs {
  padding: 5rem 2rem;
    background: white;
}

.training-programs h2 {
    text-align:   center;
   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.programs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items     :      start;
}

.program-item {
    background: #f8f9fa;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.program-image {
               width: 100%;
    height: 250px;
 object-fit: cover;
	
}

.program-details {
  padding: 2rem;
}

.program-details h3 {
    font-size: 1.6rem;
	color   :       #2c3e50;
    margin-bottom: 1rem;
}

.program-details p {

  color: #6c757d;
   margin-bottom: 1.5rem;
    line-height: 1.6;


}

.program-features
	{
     display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;}

.feature {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  font-size  :    0.9rem;
   font-weight    :  500;

}

.program-benefits {
  background: white;
	border: 2px solid #e9ecef;
   border-radius: 15px;
    padding: 2rem;
}

.program-benefits h3 {
    font-size: 1.5rem;
                    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.benefits-checklist {
  list-style: none;
    padding:    0;
}

.benefits-checklist li {
   padding: 0.8rem 0;
  border-bottom: 1px solid #f1f3f4;
  position: relative;
   padding-left: 2rem;
   color: #495057;
}

.benefits-checklist li:before {
  content: "→";
   position: absolute;
    left: 0;
    color: #007bff;
	font-weight: bold;
}

.contact-section {
   background: #f8f9fa;
   padding: 5rem 2rem;
}

.contact-container {
       max-width: 1200px;
   margin: 0 auto;
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom  :       1rem;
}

.contact-info p {
  font-size: 1.1rem;
	 color     :     #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
       display: flex;
   flex-direction: column;
  gap: 1rem;
}

.contact-item {
	display :      flex;
   flex-direction: column;
   gap: 0.3rem;
}

.contact-item strong {
   color: #2c3e50;
    font-weight: 600;
}

.contact-item span {
  color: #6c757d;
}

.contact-form-wrapper {
    background: white;
   padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form {
   display: flex;
  flex-direction     :column;
  gap    :   1.5rem;
}

.form-group {
  display: flex;
   flex-direction   :     column;
}

.form-input, .form-select, .form-textarea {
   padding: 1rem;
  border: 2px solid #e9ecef;
   border-radius: 8px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
   font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
       outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);

}

.form-textarea {
   resize     :vertical;
	min-height: 120px;
}

.submit-btn {
   padding: 1rem 2rem;
  transition: all 0.3s ease;
    border-radius: 8px;
   cursor: pointer;
    border: none;
    background: #007bff;
  font-weight: 600;
   font-size: 1.1rem;
   color: white;
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3); 
	
}

.footer-section {

   background: #2c3e50;
               color: white;
    padding: 3rem 2rem 1rem;
     }

.footer-content{
   max-width: 1200px;
    margin   : 0 auto;
   display: grid;
   grid-template-columns :   2fr 1fr 1fr;
   gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
   height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-brand p {
   color: #bbb;
  line-height: 1.6;
}

.link-column h4 {
  margin-bottom: 1rem;
    color: white;
  font-size: 1.1rem;
}

.link-column a {
  display: block;
   color  : #bbb;
   text-decoration: none;
    margin-bottom: 0.5rem;
  transition:  color 0.3s ease;
}

.link-column a:hover {
	color :       white;
}

.footer-contact h4 {
    margin-bottom: 1rem;
   color: white;
   font-size: 1.1rem;
}

.footer-contact p {
  color    :#bbb;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
   padding-top: 1rem;
   text-align: center;
  color  :#bbb;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .programs-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-content {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 1rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .services-overview {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}.about-hero {
   margin-top: 80px;
  background: linear-gradient(135deg, #2c3e50, #3498db);
       padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.about-hero-content h1 {
	 font-size: 3rem;
      margin-bottom   :     1rem;
   font-weight: 700;
}

.about-hero-content p {
   font-size: 1.3rem;
    opacity: 0.9;
     }

.company-story {
  padding   :       5rem 2rem;

	   background: white;
}

.story-content {
  display: grid;
   grid-template-columns: 2fr 1fr;
    gap: 3rem;
   align-items: center; 

}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-text p {
		margin-bottom: 1.5rem;
   line-height: 1.7;
    color: #555;
  font-size: 1.1rem;
}

.story-img {
   width: 100%;
	  height: 350px;
	   object-fit: cover;
	   border-radius: 12px;
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.team-expertise {
   padding: 5rem 2rem;
   background  :    #f8f9fa;
}

.team-expertise h2 {
  text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-item {

    background: white;
    padding: 2.5rem 2rem;
   border-radius: 12px;
      text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
	}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-icon {
    margin-bottom: 1.5rem; 

}

.icon-bg  {
	   width: 60px;
        height: 60px;
     border-radius: 50%;
   margin: 0 auto;
}

.reputation-icon

{
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.crisis-icon {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);

}

.training-icon   {
  background: linear-gradient(45deg, #feca57, #ff9ff3);
}  

.strategy-icon {
  background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.expertise-item h3  
  {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.expertise-item p {
 color: #6c757d;
    line-height: 1.6;
}

.methodology-section {
  padding: 5rem 2rem;
	background: white;
}

.methodology-content {
  display    : grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.method-img {
   width: 100%;
  height: 400px;
   object-fit: cover;
         border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.method-description h2 {
    font-size: 2.3rem;
	 color: #2c3e50;
   margin-bottom: 2rem;
}

.method-steps {
    display: flex;
	  flex-direction: column;
	  gap: 1.5rem;


}  

.step-item {
   display: flex;
   align-items: flex-start;
   gap :    1rem;
}


.step-number {
   background:    #007bff;
  color: white;
   width: 40px;
  height: 40px;
  border-radius    :   50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-weight : bold;
   flex-shrink: 0;
}

.step-content h4 {
  color: #2c3e50;
   margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
         color: #6c757d;
    line-height: 1.6;
}

.values-mission {
     padding: 5rem 2rem;
       background   :       #f8f9fa;}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap :       2rem;
}

.mission-card, .vision-card, .values-card {
		background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
     }

.mission-card h3, .vision-card h3, .values-card h3 {
   font-size: 1.5rem;
	  color: #2c3e50;
	    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p  {
    color: #555;
   line-height: 1.7;
    font-size: 1.05rem;
}

.values-list {
    list-style: none;
  padding: 0;
}  

.values-list li {
	 padding: 0.8rem 0;
  border-bottom: 1px solid #f1f3f4;
    color: #555;
  position: relative;
   padding-left: 1.5rem;
}

.values-list li:before {
  content: "•";
    position: absolute;
   left: 0;
    color: #007bff;
   font-weight: bold;
               font-size: 1.2rem;
}

.achievements-stats {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color  :   white;
  text-align   : center;
}

.achievements-stats h2{
    font-size: 2.5rem;
       margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
  padding     :       1.5rem;
}

.stat-number {
         font-size: 3rem; 
   font-weight: 700; 
                    margin-bottom: 0.5rem; 
    color: #fff;
}

.stat-label {
   font-size: 1.1rem;
  opacity: 0.9;
}

.why-choose-us {
     padding     :       5rem 2rem;
    background: white;

}

.choice-content {
	 display: grid;
  align-items: center;
    gap: 3rem;
  grid-template-columns: 2fr 1fr; 

}

.choice-reasons h2 {
    font-size: 2.3rem;
   color: #2c3e50;
    margin-bottom: 2rem;
	
}

.reasons-list {
      display: flex; 
  flex-direction: column; 
  gap     :       1.5rem;}

.reason-item h4 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
                    font-size:        1.2rem;
}



.reason-item p {
  color: #6c757d;
		line-height: 1.6;
}

.choice-img {
       width: 100%; 
	   height: 350px; 
	  object-fit: cover; 
		border-radius: 12px; 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.nav-item.active {
   background: #f0f8ff;
  color: #2c5aa0;
}

.thankyou-hero {
    margin-top: 80px;
     padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
    min-height: 90vh;
   display: flex;
	align-items  :center;
}

.thankyou-container {
       max-width: 1200px;
	margin: 0 auto;
   display: grid;
    grid-template-columns: 2fr 1fr;
	gap: 4rem;
  align-items: center;
	}

.thankyou-content     {
  color: white;
}

.success-icon {
   text-align  :center;
   margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
    height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
	display: inline-flex;
    align-items: center;
  justify-content: center;
   margin-bottom: 1rem;


}

.checkmark {
  width: 40px;
   height :  40px;
   position: relative;
}

.checkmark:before {
  content: "✓";
  color     :   white;
   font-size:     2rem;
    font-weight: bold;
}

.thankyou-content h1 {

	  font-size   :        3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thankyou-message {
       font-size: 1.3rem;
  margin-bottom: 3rem;
	text-align: center;
	opacity: 0.9;
  line-height: 1.6;}

.next-steps {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
	 border-radius: 12px;
    margin-bottom: 3rem;
}

.next-steps h3 {
	               margin-bottom: 2rem;
    font-size: 1.5rem;
  text-align: center;}

.steps-timeline {
   display: flex;
   flex-direction: column;
       gap: 1.5rem;
}

.timeline-step {
   display: flex;

	   align-items: flex-start;

	                    gap: 1rem;
}

.step-icon {
  background: rgba(255,255,255,0.2);
	color: white;
    width: 35px;
  height: 35px;
   border-radius: 50%;
    display  :   flex;
  align-items: center;
	justify-content: center;
  font-weight: bold;
   flex-shrink: 0;
}

.step-info h4 {
    margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.step-info p {
  opacity  :        0.9;
   line-height  : 1.5;
   font-size:      0.95rem;
}

.additional-info {
  margin-bottom: 3rem;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-card {
  background: rgba(255,255,255,0.1);
    padding   :       1.5rem;
  border-radius: 8px;
  text-align: center;
}

.info-card h4 {
   margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.info-card p {
	    opacity: 0.9;
                  line-height: 1.5;
     font-size: 0.9rem;
	}

.action-buttons {
         display :    flex;
  gap: 1rem;
    justify-content: center;
}

.primary-action-btn, .secondary-action-btn {
   padding    :       1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight:600;
        transition: all 0.3s ease;
    display: inline-block;
	
}

.primary-action-btn {
   background: #ff6b6b;
  color: white;
}

.primary-action-btn:hover {
                    background: #ff5252;
  transform: translateY(-2px);
}

.secondary-action-btn {
   background    :        transparent;
  color: white;
   border: 2px solid white;
}

.secondary-action-btn:hover 
 {
	   background: white;
    color: #333;
     }

.thankyou-img {
	   width: 100%;
    height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
} 

.related-services {
    padding: 5rem 2rem;
      background: #f8f9fa;
} 

.related-services h2 {
   text-align: center;
    font-size   :2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}  

.services-preview {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :    2rem;
}

.preview-card {
      background: white;
    border-radius: 12px;
					overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
     }

.preview-card:hover {
  transform: translateY(-5px);
}

.preview-img {
  width: 100%;
   height: 200px;
   object-fit: cover;

}

.preview-card h3 {

    font-size: 1.3rem; 
    color: #2c3e50; 
    margin: 1.5rem 1.5rem 1rem;
	}

.preview-card p {
  color: #6c757d;
       margin: 0 1.5rem 1.5rem;
       line-height: 1.6;
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .choice-content {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1, .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}.content-wrapper h3 {

	                    font-size: 1.8rem;
    color   :     #2c3e50;
  margin-bottom:      1rem;
   margin-top: 2rem;
     }

.content-wrapper p {
   font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
   margin-bottom: 1.5rem;

}