* {
	    margin: 0; 
	  padding: 0; 
	  box-sizing: border-box;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
               line-height: 1.6;
	color: #2c3e50;
}



.container {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position :     fixed;
    width   :   100%;
	 top: 0;
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
		 padding: 0 20px;
}

.nav-wrapper {
    display     :  flex;
    justify-content: space-between;
       align-items: center;
  height: 70px; 
	
}

.logo-img {
    width: auto;
   height: 45px;
}

.nav-menu  {
    display: flex;
}

.nav-links {
   display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
   text-decoration: none;
  font-weight: 500;
   transition: all 0.3s ease;
  padding: 8px 16px;
   border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
     background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
     }

.nav-toggle {
   display   : none;
    flex-direction :      column;
  background: none;
   border: none;
   cursor: pointer;
  padding: 5px;
	
}

.hamburger-line   {
   width: 25px;
          height: 3px;
  background: white;
    margin: 3px 0;
  transition: 0.3s;
				 border-radius: 2px;
}

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
	  padding: 120px 20px 80px; 
	    min-height: 100vh; 
	    display: flex; 
	   align-items   :       center;
}

.hero-content {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title

{
  font-size: 3.2rem;
   color: white;
               margin-bottom: 20px;
    font-weight: 700;
  line-height:       1.2;
}  

.hero-subtitle {
	   font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;


}

.hero-buttons {
       display    :        flex;
    gap: 20px;
	 flex-wrap: wrap;
     }

.btn    {
  padding   :     14px 28px;
   border: none;
    border-radius: 8px;
               font-size: 1.1rem;
    font-weight: 600;
  text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
	 background: #fff;
    color: #764ba2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
	  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary {

  background:      transparent; 
   color: white; 
    border: 2px solid white;
	}

.btn-secondary:hover {
    background: white;
  color: #764ba2;
  transform: translateY(-3px);
}

.hero-image img {
	 width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-section {
  padding     :        100px 20px;
    background: #f8f9fa;
}

.section-header		{
   text-align     :        center;
   margin-bottom: 60px;
}

.section-title  
  {
	font-size: 2.8rem;
   color: #2c3e50;
               margin-bottom: 20px;
	font-weight: 700;
}

.section-desc {
  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: 40px;
}

.service-card {
  background: white;
  border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img img {
   width: 100%;
	 height: 200px;
  object-fit: cover;
}

.service-content {

   padding     :   30px;}

.service-content h3{


    font-size     :1.5rem;
  color: #2c3e50;
    margin-bottom   :   15px;
   font-weight: 600;
     }

.service-content p 
 {
    color: #6c757d;
          line-height: 1.7;
}

.cta-section

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding :       80px 20px;
   color  :    white; 
	
}

.cta-content {
   max-width: 1000px;
   gap: 50px;
	 display: grid;
   align-items: center;
	margin: 0 auto;
  grid-template-columns: 2fr 1fr;
}

.cta-title {
  font-size: 2.5rem;
    margin-bottom    : 20px;
    font-weight: 700;
}



.cta-desc {
  margin-bottom:       30px;
  opacity: 0.9;
  font-size: 1.2rem;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
   padding: 8px 0;
   position     :  relative;
    padding-left: 25px;
}

.cta-benefits li:before {
     content: '✓';
       position :        absolute;
  left: 0;
   color: #4caf50;
	 font-weight: bold;
}

.cta-action {
   text-align: center;
}

.btn-cta {
   background: #4caf50;
    color :    white;
   font-size: 1.3rem;
  padding: 18px 35px;
	 margin-bottom: 15px;
}

.btn-cta:hover {
    background: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-guarantee {
   font-size: 0.9rem;
    opacity: 0.8;
}

.expertise-section {
 padding: 100px 20px;
   background: white;
}

.expertise-content 
 {
   max-width: 1200px;
  margin: 0 auto;
   display:     grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
	 align-items: center;
}

.expertise-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-title {
    font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 40px;
   font-weight: 700;
}

.point-item {
   margin-bottom: 30px;
}

.point-item h4 {
	 font-size: 1.3rem;
   color: #764ba2;
	margin-bottom: 10px;
    font-weight:600;
}

.point-item p {
    color: #6c757d; 
  line-height   :1.7;
}

.contact-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding :     100px 20px;
 color    :   white;
}

.contact-header {


    margin-bottom: 60px;
    text-align: center;


}


.contact-title {
   font-size: 2.8rem;
   margin-bottom: 20px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {

	   max-width:    1000px;
  margin     :  0 auto;
  display: grid;
   grid-template-columns: 1fr 2fr;
   gap:    50px;}

.contact-info 
 {
  display: flex;

	    flex-direction: column;

	   gap: 30px;
}

.info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
    font-weight :    600;
}

.info-item p {
    opacity: 0.9;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255,255,255,0.95); 
  padding: 40px; 
  border-radius: 15px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-input,
.form-select,
.form-textarea {
   width     :      100%;
    padding  :      15px;
          border: 2px solid #e9ecef;
   border-radius: 8px;
  font-size: 1rem;
	 transition     :       border-color 0.3s ease;
   color: #2c3e50;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus   {
   outline: none;

	   border-color: #764ba2;
}

.form-textarea	{
  min-height: 120px;
   resize     :   vertical; 
	
}

.btn-submit {
         background: #764ba2;
    color: white;
    width: 100%;
  padding: 16px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.btn-submit:hover {
     background: #6a4190;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.main-footer {
    background: #2c3e50;
    color: white;
   padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
	 display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
  margin-bottom : 40px;
}  

.footer-logo {
    height: 50px;
	width: auto;
  filter: brightness(0) invert(1);
               margin-bottom: 20px;
}

.footer-desc {
	 opacity  :        0.8;
       line-height: 1.6;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
                    font-weight  :    600;
}

.footer-list {
    list-style: none;
}

.footer-list li {
  margin-bottom :  10px;


}

.footer-list a	{
  color: rgba(255,255,255,0.8);
    text-decoration :  none;
    transition: color 0.3s ease;
}

.footer-list a:hover


{
       color: white;
     }

.footer-address,
.footer-phone {
    opacity: 0.8;
    line-height: 1.6;
   margin-bottom   :   10px;
}

.footer-bottom	{
	    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
   padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0.7;

}@media (max-width: 768px) {
    .nav-toggle {
        display: flex
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        backdrop-filter: blur(10px)
    }
    
    .nav-menu.active {
        left: 0
    }
    
    .nav-links {
        flex-direction: column;
        padding: 20px 0;
        gap: 0
    }
    
    .nav-links li {
        padding: 10px 0
    }
    
    .hamburger-line.active:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px)
    }
    
    .hamburger-line.active:nth-child(2) {
        opacity: 0
    }
    
    .hamburger-line.active:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px)
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }
    
    .hero-title {
        font-size: 2.5rem
    }
    
    .hero-subtitle {
        font-size: 1.1rem
    }
    
    .services-grid {
        grid-template-columns: 1fr
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center
    }
    
    .section-title {
        font-size: 2.2rem
    }
    
    .cta-title,
    .expertise-title,
    .contact-title {
        font-size: 2rem
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem
    }
    
    .hero-subtitle {
        font-size: 1rem
    }
    
    .section-title {
        font-size: 1.8rem
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 1rem
    }
    
    .contact-form {
        padding: 25px
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 20px 60px;
	text-align: center;
		 color: white;
}

.about-title {
   font-size: 3rem;
	    font-weight: 700;
	    margin-bottom: 20px;
}

.about-subtitle {

	     font-size: 1.3rem;
  opacity: 0.9;
 max-width: 800px;
   margin: 0 auto;
	}

.company-story {


    padding: 80px 20px;

  background: white;}

.story-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
	 align-items: center;
}

.story-title {
     font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 700;
	}

.story-paragraph  
  {
    margin-bottom: 25px;
    line-height: 1.7;
  color: #555;
    font-size :       1.1rem;
}

.story-image img {
   width   : 100%; 
	 border-radius: 12px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section {
    padding: 80px 20px;
   background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}  

.value-card {
   background: white;
   padding: 40px 30px;
  border-radius :      12px;
  text-align    :        center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h3 {
    color: #764ba2;
    font-size: 1.4rem;
   margin-bottom: 15px;
   font-weight :   600;
}

.value-card p {
    color: #666;
       line-height: 1.6;
}

.team-section {
    padding     :  80px 20px;
  background: white;
}

.team-content		{
	 max-width: 1200px;
	margin:  0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items:center;
}

.team-image img {
   width: 100%;
   border-radius     :      12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-description h3 {
      font-size: 2rem;
 color: #2c3e50;
   margin-bottom: 20px;
  font-weight: 600;
}

.team-description p {
  margin-bottom: 30px;
    line-height     :  1.7;
  color: #555;
  font-size: 1.1rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.stat-item     {
  text-align: center;
   padding: 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 8px;
    color: white;
}

.stat-number {
   display: block;
    font-size: 2.2rem;
   font-weight   :700;
    margin-bottom: 5px;
}

.stat-label     {
   font-size: 0.9rem;
      opacity: 0.9;
}

.expertise-details {

               padding: 80px 20px;
 background: #f8f9fa;
	}

.expertise-grid {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
   gap: 40px;
}

.expertise-item
	{
	 display: grid;
  grid-template-columns: 200px 1fr;
   gap: 30px;
    background     :     white;
    padding: 30px;
	border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  align-items: center;

}

.expertise-image img {
    object-fit: cover;
  border-radius: 8px;
    width    :   100%;
    height: 150px;
}

.expertise-content h4 {
  color: #764ba2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.expertise-content p		{
   color: #666;
  line-height :    1.6;
}

.mission-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :       white;
   text-align: center;
}

.mission-title  
  {

	   font-size: 2.5rem;
    margin-bottom: 30px;
  font-weight: 700;
}

.mission-text {
    font-size: 1.2rem;
  max-width: 800px;
   margin: 0 auto 50px;
   line-height: 1.7;
  opacity: 0.95;
}


.mission-goals {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :   30px;
	max-width: 900px;
  margin: 0 auto;
     }

.goal-item {
  background: rgba(255,255,255,0.1);
   padding: 30px 25px;
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.goal-item h4 {
	font-size    :      1.3rem;
    margin-bottom: 15px;
          font-weight: 600;
}

.goal-item p {
  opacity: 0.9;
   line-height: 1.6;
}

.thankyou-main {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
    min-height: 100vh; 
   padding-top: 70px;
}

.thankyou-section {
  padding: 60px 20px;
   color: white;
}

.thankyou-content {
	max-width: 800px;
	   margin    :  0 auto;
	    text-align : center;
}

.thankyou-icon
{
   margin-bottom: 40px;
}

.success-checkmark {
	 width: 80px;
  height:  80px;
   border-radius: 50%;
   display: inline-block;
   stroke-width: 2;
	stroke: #4caf50;
      stroke-miterlimit: 10;
   margin:  10px auto;
    box-shadow: inset 0px 0px 0px #4caf50;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.success-checkmark .check-icon {
  width :        56px;
  height: 56px;
   position: relative;
    border-radius: 50%;
  box-sizing: content-box;
   border: 4px solid #4caf50;
  margin: 8px auto 0;
}

.success-checkmark .check-icon::before {

	  top: 3px;
   left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after		{
   top  :   0;
    left: 30px;
  width: 60px;
    transform-origin: 0 50%;
    border-radius     :     0 100px 100px 0;
    animation :        rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
   height: 100px;
  position: absolute;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
    background-color: #4caf50;
   display: block;
    border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
      top: 46px;
    left: 14px;
  width: 25px;
  transform: rotate(45deg);
    animation :icon-line-tip 0.75s;

}  

.success-checkmark .check-icon .icon-line.line-long     {
    top: 38px;
   right   :  8px;
	 width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;

}

.success-checkmark .check-icon .icon-circle {
  top    :    -4px;
  left: -4px;
  z-index: 10;
    width: 60px;
                    height: 60px;
  border-radius: 50%;
    position: absolute;
                    box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

.success-checkmark .check-icon .icon-fix {


  top: 8px;
	 width: 5px;
	left: 26px;
    z-index: 1;
   height:   85px;
	 position: absolute;
  transform: rotate(-45deg);
  background-color: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	}@keyframes rotate-circle {
    0% { transform: rotate(-45deg) }
    5% { transform: rotate(-45deg) }
    12% { transform: rotate(-405deg) }
    100% { transform: rotate(-405deg) }
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px }
    54% { width: 0; left: 1px; top: 19px }
    70% { width: 50px; left: -8px; top: 37px }
    84% { width: 17px; left: 21px; top: 48px }
    100% { width: 25px; left: 14px; top: 45px }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px }
    65% { width: 0; right: 46px; top: 54px }
    84% { width: 55px; right: 0px; top: 35px }
    100% { width: 47px; right: 8px; top: 38px }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 60px #4caf50 }
}

@keyframes scale {
    0%, 100% { transform: none }
    50% { transform: scale3d(1.1, 1.1, 1) }
}.thankyou-title {
   font-size   :     2.8rem;
    margin-bottom: 20px;
  font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.2rem;
    margin-bottom :        50px;
    opacity: 0.9;
}

.next-steps {
  background: rgba(255,255,255,0.1);
   padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.steps-title{
   font-size: 1.8rem;
   margin-bottom: 30px;
   font-weight: 600;
}

.steps-list{

  text-align: left;
    max-width: 600px;
   margin    : 0 auto;
     }

.step-item {
    display :   flex;
   align-items: flex-start;
   margin-bottom    :  25px;
    gap: 20px;
}

.step-number    {
   background: #4caf50;
   color: white;
    width: 35px;
          height: 35px;
	border-radius: 50%;
       display: flex;
  align-items: center;
    justify-content: center;
    font-weight: 600;
   flex-shrink: 0;
			margin-top: 5px;
}

.step-content h4 {
    font-size: 1.2rem;
   margin-bottom: 8px;
         font-weight: 600;
}

.step-content p {
  opacity: 0.9;
  line-height: 1.6;}

.thankyou-actions
	{
    display: flex;
   gap:  20px;
  flex-wrap: wrap;
   justify-content: center;
    margin-bottom: 40px;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
   padding :    30px;
   border-radius: 12px;
  backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.contact-reminder h4 {
   font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600; 

}

.contact-reminder p	{


    margin-bottom: 8px;
    opacity: 0.9;


}

.phone-number {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
    color: #4caf50 !important;
   margin: 15px 0 !important;
}

.availability {
  font-size: 0.9rem !important;
  opacity: 0.8 !important;
}

.thankyou-image {
      text-align: center;
    margin-top: 40px;
	
	}

.thankyou-image img {
  max-width: 500px;
       width: 100%;
       border-radius: 15px;
     box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-preview {
   background: white;
  padding: 80px 20px;
    color: #2c3e50;
}

.testimonials-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  max-width: 1200px;
    margin: 0 auto;}

.testimonial-card {
   background: #f8f9fa;
   padding: 30px;
	 border-radius   :       12px;
    border-left: 4px solid #764ba2;
}

.testimonial-card p {
  font-style: italic;
   margin-bottom :        20px;
     line-height: 1.6;
    color: #555;
}

.testimonial-author strong {
    color: #764ba2;
  font-weight: 600;
}

.testimonial-author span {
  margin-top    :     5px;
	 font-size: 0.9rem;
  color     :       #888;
   display: block;
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.2rem
    }
    
    .about-subtitle {
        font-size: 1.1rem
    }
    
    .story-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 15px
    }
    
    .expertise-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center
    }
    
    .expertise-image img {
        max-width: 200px;
        margin: 0 auto
    }
    
    .thankyou-title {
        font-size: 2.2rem
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center
    }
    
    .thankyou-actions .btn {
        width: 100%;
        max-width: 300px
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr
    }
    
    .steps-title {
        font-size: 1.5rem
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 15px 40px
    }
    
    .about-title {
        font-size: 1.8rem
    }
    
    .story-title,
    .mission-title {
        font-size: 2rem
    }
    
    .next-steps,
    .contact-reminder {
        padding: 25px 20px
    }
    
    .step-item {
        gap: 15px
    }
    
    .step-number {
        width: 30px;
        height: 30px
    }
}.content-section {
     max-width: 800px;
   margin: 0 auto;
  padding: 40px 20px;
  background: white;
      border-radius:12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}

.content-section h2 {
  font-size:1.8rem;
    color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.content-section p {
    color: #6c757d;
   margin-bottom: 20px;
    line-height: 1.7; 

}

.content-section ul {
    list-style: none;
   margin-bottom: 20px;
}

.content-section ul li {
    position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
 color :      #6c757d;
}

.content-section ul li:before {
  content: '✓'; 
   position: absolute; 
   left:    0; 
	color: #4caf50; 
   font-weight   :      bold;


}