* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.btn-rules {
    text-decoration: none;
}

body {
    font-family: 'Didact Gothic', sans-serif;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common button styles */
.btn-book {
    border: 2px solid #000000;
    border-radius: 15px;
    background: transparent;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.btn-book:hover {
    background: #000000;
    color: #FFFFFF;
     text-decoration: none;
}

.btn-more {
    display: inline-block;
    background: #03B7A0;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-more:hover {
    background: #029882;
}