body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo {
    width: 64px;
    height: 64px;
}

h1 {
    color: #c5221f;
    border-bottom: 2px solid rgba(197, 34, 31, 0.6);
    padding-bottom: 10px;
    margin: 0;
}

h2 {
    color: rgba(197, 34, 31, 0.85);
    margin-top: 30px;
}

h3 {
    color: rgba(197, 34, 31, 0.7);
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 15px;
}

ul ul {
    margin-top: 10px;
}

a {
    color: rgba(197, 34, 31, 0.8);
}

a:hover {
    color: #c5221f;
}

.nav {
    margin: 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 34, 31, 0.2);
}

.nav a {
    color: rgba(197, 34, 31, 0.8);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #c5221f;
    text-decoration: underline;
}

.contact-info {
    background-color: rgba(197, 34, 31, 0.05);
    padding: 15px;
    border-left: 4px solid rgba(197, 34, 31, 0.6);
    margin-top: 20px;
}

.page-title {
    font-size: 1.5em;
    color: rgba(197, 34, 31, 0.9);
    margin-top: 30px;
    margin-bottom: 20px;
}

