.history-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.history-header {
    margin-bottom: 30px;
    text-align: center;
}

.history-title {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.history-content {
    line-height: 1.6;
    color: #333;
}

.history-image {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 40%;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cafe-image {
    display: block;
    width: 100%;
    margin-top: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* p {
     margin-bottom: 15px;
 }*/

.history-footer {
    margin-top: 30px;
    text-align: center;
}

/* Адаптивные стили для мобильных устройств */
@media screen and (max-width: 768px) {
    .history-container {
        padding: 15px;
        margin: 10px;
    }
    
    .history-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .history-image {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 80%;
    }
    
    .history-content {
        line-height: 1.7;
        font-size: 16px;
    }
    
    .cafe-image {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .history-container {
        padding: 10px;
        margin: 5px;
    }
    
    .history-title {
        font-size: 1.5em;
    }
    
    .history-image {
        max-width: 90%;
    }
    
    .history-content {
        font-size: 15px;
    }
}
