body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e0eafc;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

#header {
    background: #2d98da;
    color: #fff;
    text-align: center;
    padding: 28px 0 18px 0;
    font-size: 2.2em;
    letter-spacing: 2px;
    box-shadow: 0 2px 10px #3867d6;
}

#menu {
    background: #3867d6;
    padding: 12px 0 8px 0;
    box-shadow: 0 2px 6px #3867d6;
}

#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

#menu li {
    margin: 0;
    transition: transform 0.15s;
}

#menu li:hover {
    transform: scale(1.08);
}

#menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.17em;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

#menu a:hover {
    color: #fff;
    background: #fd9644;
}

#content {
    max-width: 800px;
    margin: 36px auto;
    background: #fff;
    padding: 32px 32px 16px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 14px #e0eafc;
}

#content > div {
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid #e0e0e0;
    transition: box-shadow 0.2s;
}

#content > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#content h2 {
    color: #3867d6;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* Стили для картинок товаров и фото */
#content img {
    display: block;
    margin-bottom: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #e0eafc;
    border: 3px solid #e0eafc;
    max-width: 360px;
}


.news-meta {
    color: #888;
    font-size: 1em;
    margin-bottom: 7px;
    font-style: italic;
    display: block;
}

.news-text {
    color: #222;
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 7px;
}

/* Стили для карточек товаров */
.product-title {
    font-weight: bold;
    font-size: 1.15em;
    color: #3867d6;
    margin-bottom: 3px;
}

.product-price {
    color: #fd9644;
    font-size: 1.09em;
    font-weight: 500;
    margin-bottom: 7px;
}

/* Стили для информации о себе и опыте */
.info-title {
    font-weight: bold;
    color: #3867d6;
    font-size: 1.08em;
    margin-top: 16px;
    margin-bottom: 5px;
}

.info-text {
    color: #333;
    font-size: 1em;
    background: #f7faff;
    border-left: 4px solid #3867d6;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px 0 0 8px;
}

/* Стили для блока контактов */
.contact-item {
    margin-bottom: 8px;
    font-size: 1.07em;
    color: #222;
}

.contact-label {
    color: #3867d6;
    font-weight: bold;
    margin-right: 6px;
}

button {
    padding: 10px 26px;
    background: #3867d6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.08em;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 6px #3867d6;
    transition: background 0.2s, transform 0.2s;
}

button:hover {
    background: #fd9644;
    color: #fff;
    transform: scale(1.07);
}

#footer {
    background: #2d98da;
    color: #fff;
    text-align: center;
    padding: 18px 0 12px 0;
    font-size: 1em;
    margin-top: 54px;
    border-radius: 0 0 16px 16px;
}

