body {
    font-family: "Times New Roman", serif;
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em 1em;
    background-color: #1a1a1a;
    text-align: center;
}

.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 0.5em;
}

.motto {
    font-size: 1.5em;
    color: #ccc;
    margin: 0;
}

h1, h2 {
    font-family: "Times New Roman", serif;
}

section {
    padding: 2em 1em;
    max-width: 1000px;
    margin: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 1em;
}

.product-card {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.7);
}

.product-3d {
    background: linear-gradient(145deg, #333, #555);
    color: #fff;
    padding: 1em;
    margin-bottom: 0.5em;
    border-radius: 8px;
    transform: perspective(600px) rotateX(10deg) rotateY(-10deg);
}

a, a:visited {
    color: #66ccff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact p {
    color: #eee;
}

footer {
    text-align: center;
    padding: 2em;
    background: #111;
    color: #aaa;
    font-size: 0.9em;
}

