* {
      margin: 0;
  padding: 0;
  box-sizing    :border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: #2c3e50;
  background: #ffffff;
}

.content-wrapper {
	   max-width: 1200px;
         margin   : 0 auto;
  padding: 0 20px;}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  top: 0;
    width    :       100%;
   z-index    :  1000;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width  :       1200px;
   margin: 0 auto;
    padding: 0 20px;
  display: flex;
   align-items: center;
  justify-content     :        space-between;
  height :    70px; 

} 

.brand-logo {
   height: 45px;
    width: auto;
} 

.menu-items {
   display: flex;
    gap: 35px;
	
}

.nav-link {
    text-decoration: none;
  color :   #2c3e50;
   font-weight: 500;
    padding: 8px 16px;
    border-radius :       25px;
    transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover, 
.nav-link.active {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  transform: translateY(-2px);

}

.mobile-toggle {
    display: none;
	 flex-direction: column;
		 cursor: pointer;
   padding: 5px;
}

.mobile-toggle span {
   width: 25px;
    height: 3px;
   background: #2c3e50;
 margin :       3px 0;
    transition: 0.3s;
   border-radius: 2px;
}

.hero-area {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height:     100vh;
  display: flex;
    align-items: center;
}

.hero-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap  :     60px;
  align-items: center;
}

.hero-content h1 {
  font-size  :     3.2rem;
  font-weight: 700;
    color   :  #2c3e50;
                    margin-bottom: 25px;
	line-height: 1.2;


}

.hero-content p  {
    font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 35px;
     line-height: 1.7;
     }

.hero-actions


{


    display: flex;
    gap: 20px;

}

.primary-button, .secondary-button {
  padding: 15px 30px;
  border-radius: 50px;
               text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.primary-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.secondary-button {
   color: #667eea;
  border: 2px solid #667eea;
  background   :       transparent;
}

.secondary-button:hover		{
   background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.hero-visual img {
    width: 100%;
               height: 400px;
   object-fit: cover;
    border-radius  :       20px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 100px 0;
       background: #ffffff;
}

.services-overview h2 {

	    text-align: center;
   font-size:       2.8rem;
  margin-bottom: 60px;
   color: #2c3e50;
          font-weight: 700;}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
	}

.service-card {

    background: #f8f9fa;
  border-radius:  15px;
                    padding: 35px;
   text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
     }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: white;
}

.service-card img    {

    width: 100%;
  height: 200px;
    object-fit: cover;
   border-radius   :  10px;
   margin-bottom: 25px;
	}

.service-card h3 {
   font-weight: 600;
   font-size: 1.6rem;
   margin-bottom: 15px;
               color     : #2c3e50;
}

.service-card p {
  color: #6c757d;
    line-height: 1.6; 

}

.expertise-section	{
        padding: 100px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.expertise-content {
     display    :       grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items:      center; 

}

.text-content h2 {
   font-size: 2.5rem;
    margin-bottom: 25px;
   color: #2c3e50;
    font-weight    :      700;
}

.text-content p {
  font-size: 1.1rem;
  color: #495057;
   margin-bottom: 30px;
  line-height: 1.7;
}

.benefits-list {
   list-style: none;
}

.benefits-list li {
  padding: 12px 0;
      color: #495057;
	position: relative;
       padding-left: 30px;
}

.benefits-list li:before {
  content: "✓";
   position: absolute;
  left     :0;
    color: #28a745;
  font-weight    :  bold;
   font-size: 1.2rem;
}

.visual-content img {
    width:        100%;
    height: 350px;
         object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align:   center;
	 color: white; 

}

.cta-content h2 {


  font-size: 2.6rem;
  margin-bottom: 25px;
   font-weight: 700;


}

.cta-content p {
		font-size: 1.2rem;
  margin-bottom: 35px;
   opacity: 0.9;
    max-width: 600px;
         margin-left: auto;
	margin-right: auto;


}

.cta-button {
    background :   white;
    color: #667eea;
    padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255,255,255,0.3);


}

.contact-section {
   padding: 100px 0;
          background: #f8f9fa;
}

.contact-section h2 {
   text-align     : center;
   font-size: 2.8rem;
   margin-bottom: 60px;
  color: #2c3e50;
   font-weight: 700;
}

.contact-container {
    display: grid;

   grid-template-columns: 1fr 2fr;

  gap: 60px;


}

.contact-info h3 {
   font-size: 1.8rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.contact-item {
   margin-bottom: 25px; 

}

.contact-item strong {
       color: #667eea;
  display: block;
          margin-bottom: 8px;


}

.contact-form {
    background :       white;
  padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 20px;
  margin-bottom   :      20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea    {
                    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
  border-radius: 10px;
   font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
   resize: vertical;
  min-height: 120px;
   margin-bottom: 25px;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
   border: none;
   border-radius: 50px;
    font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
	transition: all 0.3s ease;
   width: 100%;
}

.submit-button:hover		{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
} 

.site-footer {
   background   :        #2c3e50;
          color: white;
   padding: 60px 0 20px;
}

.footer-content     {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
   height: 40px;
 width: auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1);
} 

.footer-section h4 {
  margin-bottom: 20px;
  color: #ecf0f1;
  font-size: 1.2rem;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
   text-decoration: none;
        transition: color 0.3s ease;
}

.footer-section ul li a:hover{
  color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align    :      center;
    padding-top    :        30px;
  margin-top: 40px;
  border-top: 1px solid #34495e;
   max-width: 1200px;
	margin-left: auto;
  margin-right: auto;
    padding-left: 20px;
    padding-right  : 20px;
}

.footer-bottom p {


  color: #95a5a6;}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .menu-items {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .menu-items.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-hero {
   padding: 120px 0 60px;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
	text-align:      center;
}

.about-hero-content h1 {
 font-size: 3rem;
	color    :       #2c3e50;
  margin-bottom: 25px;
                    font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
   color: #5a6c7d;
	 max-width: 800px;
   margin: 0 auto;
    line-height: 1.7;
}

.our-story {

    padding: 80px 0;
   background: #ffffff;
     }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items    : center;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
      color: #2c3e50;
   font-weight: 700;
}

.story-content p {
  margin-bottom: 20px;
   color: #495057;
   line-height: 1.7;
   font-size: 1.1rem;
}

.story-image img {
  width:    100%;
   height: 400px;
  object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-approach {
    padding: 90px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.our-approach h2 {
  text-align: center;
  font-size: 2.8rem;
         margin-bottom: 60px;
    color: #2c3e50;
        font-weight: 700;}

.approach-cards {
     display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
}

.approach-card {
  background: rgba(255,255,255,0.9);
  padding: 40px 30px;
    border-radius: 15px;
   text-align: center;
    transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.approach-card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    background: white;

}

.approach-icon {
    width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
   font-size: 1.5rem;
   font-weight: bold;
    margin: 0 auto 25px;
}

.approach-card h3 {
    font-size: 1.4rem;
       margin-bottom  :      15px;
    color: #2c3e50;
    font-weight   :     600;
}

.approach-card p {
	line-height: 1.6;
  color: #6c757d;
}

.team-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.team-section h2 {
   text-align:  center;
          font-size    :        2.8rem;
   margin-bottom: 40px;
        color: #2c3e50;
   font-weight: 700;
}

.team-intro {
   text-align: center;
  margin-bottom    :    60px;
}

.team-intro p {
   font-size    :        1.2rem;
  color: #495057;
    max-width: 700px;
         margin: 0 auto;
 line-height     :        1.7; 

}

.team-showcase {

	   display: grid;
	grid-template-columns: 1fr 1fr;
  gap:    50px;
   align-items: center;}

.team-showcase img {
	  width   :       100%;
    height: 350px;
   object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);


}

.team-description h3 {
	  font-size: 2rem;
  margin-bottom    :      20px;
  color    :     #2c3e50;
  font-weight: 600;
     }

.team-description p {
   color: #495057;

	   line-height: 1.7;

	 font-size: 1.1rem;
}

.values-section


{
   padding: 90px 0;
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}


.values-section h2 {
  text-align: center;
    font-size: 2.8rem;
	margin-bottom   :      60px;
     color:        #2c3e50;
    font-weight    :700;


}

.values-grid {
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.value-item {
  background: rgba(255,255,255,0.8);
    padding: 35px;
  border-radius: 15px;
    text-align :   center;
  backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;

	  transform: translateY(-5px);

	  box-shadow: 0 10px 25px rgba(0,0,0,0.1);}  

.value-item h4 {
    color: #2c3e50;
	  font-weight: 600;
	    margin-bottom: 15px;
	    font-size: 1.5rem;
}

.value-item p {
  color: #495057;
    line-height: 1.6;
}

.achievements-section     {
   padding    :  90px 0; 
   background: #ffffff;
}

.achievements-content {
  display: grid;
    grid-template-columns     : 1fr 1fr;
       gap: 60px;
   align-items: center;
}

.achievements-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 40px;
  color: #2c3e50;
}

.stats-grid {
   display: grid;
   grid-template-columns:        1fr 1fr;
    gap: 30px;
   margin-bottom:      40px;
}

.stat-item {
   text-align: center;
   padding :  25px;
  background: #f8f9fa;
   border-radius: 10px;
}

.stat-number {
   font-size: 2.5rem;
   font-weight: bold;
	color   :  #667eea;
    margin-bottom: 10px;
}

.stat-label {
   color: #6c757d;
  font-size: 0.9rem;
   font-weight: 500; 
	
}

.achievements-text p {
  color: #495057;
   line-height: 1.7;
    font-size: 1.1rem;
}

.achievements-visual img{
          width: 100%;
  height: 400px;
    object-fit: cover;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.why-choose-us {
    padding: 90px 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);


}

.why-choose-us h2 {
          text-align: center;
               font-size: 2.8rem;
    margin-bottom: 60px;
   color: #2c3e50;
	 font-weight: 700;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap   :  50px;
}

.reason-card


{
  background: rgba(255,255,255,0.9);
       padding  :      40px;
   border-radius: 15px;
      text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.reason-card:hover {
     background: white;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.reason-card img {
	 width: 100%;
 height: 250px;
  object-fit: cover;
  border-radius    :       10px;
  margin-bottom: 25px;
}

.reason-card h3 {
  color: #2c3e50;
    margin-bottom: 20px;
  font-weight: 600;
    font-size: 1.6rem;
}

.reason-card p {
     color: #495057;
   line-height: 1.7;
     }

.thankyou-hero		{
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0fff0 0%, #e6f3ff 100%);
    text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-content		{
   max-width: 600px;
      margin    :       0 auto;
}

.success-icon {
	margin-bottom: 40px;
}

.checkmark {
  width: 80px;
  height: 80px;
     border-radius: 50%;
    display: block;
    stroke-width: 3;
  stroke: #28a745;
  stroke-miterlimit: 10;
    margin: 0 auto;
  position: relative;


}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
   stroke: #28a745;
   fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #28a745;
    position: absolute;
    top: 0;
  left: 0;
}


.checkmark-stem {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  position :     absolute;
	top: 32px;
    left: 20px;
    width: 15px;
    height: 3px;
   background: #28a745;
  transform: rotate(45deg);
}

.checkmark-kick {
  animation: stroke 0.2s cubic-bezier(0.65, 0, 0.45, 1) 0.9s forwards;
	stroke-dasharray: 78;
    stroke-dashoffset: 78;
    position: absolute;
   top: 40px;
   left: 30px;
    width: 25px;
  height: 3px;
  background: #28a745;
  transform: rotate(-45deg);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}.thankyou-content h1     {
	font-size: 3rem;
    color: #28a745;
  margin-bottom: 25px;
    font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.3rem;
    color: #495057;
  line-height: 1.7;
}

.next-steps {
   padding: 80px 0;

	                    background: #ffffff;
}

.next-steps h2 {
  text-align: center;
    font-weight: 700;
   margin-bottom: 60px;
    font-size: 2.8rem;
    color: #2c3e50;
}

.steps-timeline {
    max-width: 800px;
   margin: 0 auto; 

}

.timeline-item {
        display: flex;
     gap: 30px;
    margin-bottom  :     50px;
   	align-items: flex-start;
}

.timeline-number {
	 width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :       white;
   border-radius: 50%;
	display: flex;
   align-items:    center;
    justify-content: center;
  font-size: 1.3rem;
    font-weight: bold;
   flex-shrink: 0;
}

.timeline-content h3 {
    font-weight: 600;
   margin-bottom: 10px;
         color: #2c3e50;
   font-size  :      1.5rem;
}

.timeline-content p {
    color: #495057;
    line-height: 1.6;
  margin-bottom  :     10px;
}

.timeline-duration {
	color: #667eea;
   font-weight: 500;
		 font-size: 0.9rem;
}

.while-waiting {
               padding: 80px 0;
    background: #f8f9fa;
}

.while-waiting h2 {
  text-align: center;
  font-size: 2.8rem;
    margin-bottom: 60px;
   color: #2c3e50;
          font-weight: 700; 
	
}

.waiting-content 
 {
   gap: 50px;
    display: grid;
   grid-template-columns: 1fr 1fr;
  align-items: center;
}

.waiting-text h3 {
  font-size: 1.8rem;
   margin-bottom: 20px;
    color :   #2c3e50;
  font-weight: 600;
}

.waiting-text p {
	color: #495057;
  line-height: 1.7;
   margin-bottom: 20px;
}

.waiting-actions  {
   display: flex;
          gap: 20px;
   margin-top     :  30px;
}

.waiting-visual img {
  width: 100%;
   height: 350px;
   object-fit: cover;
	border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quick-info {

   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
	}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.info-card {
  background: rgba(255,255,255,0.1);
    padding: 35px;
   border-radius: 15px;
  text-align  :        center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.info-card h4

{


    font-size: 1.4rem;
   margin-bottom: 15px;
   font-weight: 600;
	}

.info-card p {
   line-height: 1.6;
  margin-bottom: 15px;
   opacity :    0.9;

}

.contact-link {
	 color: #fff;
	text-decoration: none;
	font-weight: 600;
   font-size: 1.1rem;
   padding: 10px 20px;
    border: 2px solid white;
	border-radius: 25px;
         display :        inline-block;
  transition: all 0.3s ease;
}

.contact-link:hover {
    background: white;
  color: #667eea;
}

.testimonial-preview {
		 padding: 80px 0;
	background: #ffffff;
}

.testimonial-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: center;
}

.testimonial-content blockquote {
   font-size: 1.4rem;
    color: #2c3e50;
   font-style: italic;
  line-height: 1.6;
   margin-bottom: 25px;
  padding-left     :       30px;
    border-left: 4px solid #667eea;
}

.testimonial-content cite {
    color: #6c757d;
	font-size: 1rem;
   font-weight: 500;
}

.testimonial-image img {
    width   :     100%;
	height: 300px;
    object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .story-grid,
    .team-showcase,
    .achievements-content,
    .waiting-content,
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .waiting-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .approach-cards,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
}.content-wrapper h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
   text-align: center;
   font-weight: 700;
}

.content-wrapper h2 {
			font-size: 1.8rem;
		 color: #2c3e50;
   margin-top: 40px;
  margin-bottom: 20px;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.1rem;
  color: #495057;
   margin-bottom     :  20px;
   line-height: 1.7;
}

.content-wrapper ul {
     margin-bottom :      20px;

}