* {
   margin: 0;
   padding     : 0;
  box-sizing    :     border-box;
}

body {
  font-family: 'Fira Sans', sans-serif;
  line-height   :    1.6;
     color     : #151915;
  background-color: #FFFFFF;
}

.back-link {
    padding: 20px;
  background: #f8f9fa;
}

.back-link a {
  text-decoration :        none;
    font-size:        14px;
  transition: color 0.3s ease;
    font-weight: 500;
  color    :  #3B413C;
}

.back-link a:hover {
	color :     #151915;
}

.back-link i {
    margin-right :   8px;
}

.container {
	max-width: 1100px;
   margin: 0 auto;
    padding: 0 20px;
}

.hero-about   {
    padding: 80px 0;
	 background: #f8f9fa;
}

.hero-content{


   display: flex;
  align-items     :    center;
    gap: 60px;


}

.hero-text {
    flex: 1;
}

.hero-text h1 {
      font-size: 48px;
  font-weight: 700;
    color: #151915;
  margin-bottom  :        30px;
   line-height: 1.2;}

.hero-text p {


  font-size: 18px;
    color: #151915;
  margin-bottom: 25px;
    line-height   :      1.6;



}

.hero-image {
                    flex  :       1;
	text-align: center;

}

.hero-image img {
  max-width   : 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-section {
      padding    :     80px 0;
}

.story-section h2 {
   text-align: center;
   font-size: 42px;
  margin-bottom: 40px;
    font-weight: 700;
   color: #3B413C;
}

.story-content {
   max-width: 800px;
	  margin: 0 auto;
}

.story-content p {
  font-size: 18px;
  color: #151915;
        margin-bottom: 30px;
  line-height: 1.7;
}@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .story-section h2 {
        font-size: 32px;
    }
    
    .story-content p {
        font-size: 16px;
    }
    
    .hero-about {
        padding: 60px 0;
    }
    
    .story-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .story-section h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}