body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
}
header {
    background: #b30000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
header h1 {
    color: #fff;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
nav a:hover {
    color: #b30000;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    text-decoration: none;
}
.hero {
    background: #330000;
    padding: 40px 20px;
    text-align: left;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
}
.image-left {
    float: none;
    margin-right: 32px;
    margin-bottom: 0;
    max-width: 250px;
    width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-text {
    flex: 1;
}
.services {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}
footer {
    background: #b30000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
section {
    margin: 30px auto;
    max-width: 700px;
    background: #222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(179,0,0,0.1);
}
h1, h2, h3 {
    color: #ff3333;
}
.image-right {
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.image-left {
    float: left;
    margin-right: 24px;
    margin-bottom: 16px;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
