* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-flex {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    height: 55px;
}

.brand h1 {
    font-size: 22px;
    margin: 0;
}

.brand span {
    font-size: 13px;
    color: #777;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.nav a.active,
.nav a:hover {
    color: #c62828;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* CONTENT */
.content {
    padding: 60px 20px;
}

.content-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.content-text h3 {
    margin-top: 20px;
    color: #c62828;
}

.content-text ul {
    margin-left: 20px;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 32px;
    }
}


<style>
/* FIX ONLY FOR HYDRAULIC PAGE */


