﻿body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.story-container {
    padding: 60px 0;
}

    .story-container h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #87520a;
        text-align: center;
        margin-bottom: 30px;
    }

.story-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

    .story-content p {
        font-size: 1.1rem;
        color: #455a64;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.blockquote {
    font-style: italic;
    color: #6c757d;
    border-left: 4px solid #cda403;
    padding-left: 20px;
    margin: 20px 0;
}

.btn-primary {
    background-color: #87520a;
    border-color: #2a1d0a;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #b66b06;
        border-color: #b66b06;
    }

@media (max-width: 768px) {
    .story-container h1 {
        font-size: 1.8rem;
    }

    .story-content {
        padding: 20px;
    }
}