* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: rgb(133, 161, 170);
    line-height: 1.6;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    gap: 60px;
}

.logo {
    color: rgb(96, 34, 34);
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu li a {
    text-decoration: none;
    color: rgb(40, 45, 57);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 5px;
    white-space: nowrap;
    display: block;
    text-align: center;
    line-height: 1.2;
}

.menu li a br {
    display: none;
}

.menu li a:hover {
    color: rgb(96, 34, 34);
}

.active {
    color: rgb(96, 34, 34);
    border-bottom: 2px solid rgb(96, 34, 34);
}

.stores-section h2 {
    color: #602222;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.stores-list {
    margin: 0 auto;
    list-style-type: decimal;
    padding-left: 30px;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}

.store-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.categories-list {
    margin: 0 auto;
    list-style-type: disc;
    padding-left: 40px;
    margin-top: 10px;
}


.partner{
    color: #602222;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.partner-table {
    margin: 0 auto;
    width: 1000px;
    overflow: hidden;;
}

.partner-table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
}

.partner-name {
    background:#602222;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 25px;
}

.partner-menu {
    background: #f8f9fa;
    text-align: center;
    font-weight: bold;
    color: #602222;
    font-size: 18px;
}

.partner-picture {
    text-align: center;
    width: 40%;
}

.partner-picture img {
    max-width: 100%;
    height: auto;
}

.partner-description {
    background: #f8f9fa;
    color: #555;
    line-height: 1.8;
}

.partner-address {
    background: #602222;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
}
