/* Общие шрифты и стили для всего сайта */
body {
    font-family: 'Inter', sans-serif;
    background: #fcf9f5;
    color: #2c241b;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Стили для кнопок */
.t-btn {
    display: inline-block;
    background: #c9a96e;
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.30);
}

.t-btn:hover {
    background: #b8925a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.40);
}