body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: "Source Serif Pro", serif;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding-left: 20px;
}

.header {
    margin-bottom: 40px;
    padding-top: 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

.main-nav a {
    margin-left: 20px;
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Hero Quote Style */
h4 {
    font-size: 38px;
    line-height: 1.05;
    font-weight: normal;
    margin-bottom: 40px;
    margin-top: 0;
}

.hero-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    /* Ensure full width if container is constrained */
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-section h4 {
    color: #fff;
    margin-bottom: 40px;
}

.hero-author {
    font-style: italic;
    font-size: 0.8em;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.logo-img {
    max-height: 50px;
    display: block;
}

.footer {
    margin-top: 50px;
    font-size: 0.8em;
    color: #777;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Contact Form Styles */
.contact-form {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #333;
    display: block;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    display: block;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    background-color: #fff;
    color: #000;
}

.form-group textarea {
    resize: both;
}

.btn {
    display: inline-block;
    padding: 12px 50px;
    margin-top: 10px;
    background-color: #3498db;
    color: #fff;
    font-size: 17.6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #2980b9;
}