/* General Body Styles */
body {
    font-family: "Golos Text", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

header .logo img {
    height: 100px;
}

header .contact-info a {
    text-decoration: none;
    color: #007bff;
    margin-left: 15px;
    font-weight: 500;
}

header .contact-info a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 2rem 0;
}

main h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

main .description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

thead {
    background-color: #34495e;
    color: #ffffff;
}

thead th {
    font-weight: 600;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e9ecef;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

footer .footer-links {
    margin-bottom: 1rem;
}

footer .footer-links span {
    margin: 0 15px;
}

footer .footer-links a {
    color: #007bff;
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* Product Example Section */
.product-example {
    margin-top: 4rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem;
    border-radius: 5px;
}

.product-example h2 {
    color: #ecf0f1;
}

.product-content {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.product-content img {
    max-width: 40%;
    height: auto;
    margin-right: 2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

.product-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.product-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
