body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1b24;
    color: #ffffff;
}

header {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
}

header img {
    max-width:120px;
}

header div {
    flex-grow:1;
    text-align:center;
}

nav {
    background:#122b3e;
    padding:1rem 0;
    text-align:center;
}

nav ul {
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:center;
    gap:15px;
}

nav ul li {
    display:inline;
}

nav ul li a {
    color:#ffcc70;
    text-decoration:none;
    font-weight:bold;
    padding:10px 12px;
    border-radius:5px;
    transition:.3s;
}

nav ul li a:hover {
    background:#ffcc70;
    color:#122b3e;
}

nav a.active {
    background:#ffcc70;
    color:#122b3e;
}

#content {
    padding:20px;
    background:linear-gradient(to bottom,#1b2a38,#3a5d70);
    border-radius:12px;
    width:90%;
    max-width:800px;
    margin:20px auto;
    box-shadow:0 6px 20px rgba(0,0,0,.6);
    min-height:300px;
}

#page-container {
    width:100%;
}

@media(max-width:768px){

    header {
        flex-direction:column;
        text-align:center;
    }

    header img {
        margin:10px auto;
    }

    nav ul {
        flex-direction:column;
    }

    #content {
        max-width:95%;
    }
}

.content-card {
    background:#1e1e1e;
    padding:20px;
    border-radius:8px;
    box-shadow:0 4px 8px rgba(0,0,0,.2);
    margin:0 auto 15px auto;
    color:white;
    box-sizing:border-box;
}

.content-card p {
    text-align:left;
}

.content-card ul {
    text-align:left;
    line-height:1.8;
}

.content-card h3 {
    color:#ffcc70;
    text-align:left;
    margin-top:25px;
}

#page-content {
    text-align:left;
}

.news-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.news-header h2 {
    margin:0;
    font-size:1.4em;
}

.date {
    margin:0;
    color:#ffcc70;
    font-size:.9em;
}

.news-images {
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:15px;
}

.news-images img {
    width:12%;
    min-width:120px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.4);
}

.news-button {
    text-align:center;
    margin-top:35px;
}

.news-button a {
    display:inline-block;
    background:#ffcc70;
    color:#111;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
    text-decoration:none;
}

.product-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.product-images img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}

.product-button {
    margin-top: 15px;
    text-align: left;
}

.product-button a {
    display: inline-block;
    background: #ffcc70;
    color: #111;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.05em;
}

.contact-section a {
    color: #ffcc70;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}