:root {
    --header-bg: #4e6a7c;
    --header-text: #ffffff;
    --nav-bg: #ffffff;
    --nav-active-bg: #333333;
    --nav-text: #333333;
    --primary: #3d6478;
    --light: #f0f0f0;
    --dark: #333;
    --white: #ffffff;
    --gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: Arial, sans-serif;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Nav */
header {
    background: var(--header-bg);
    padding: 2rem 0 0 0;
}

.top-bar {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--header-text);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-line {
    font-size: 0.85rem;
    opacity: 0.9;
}

.title-line {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--header-text);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    font-family: "Times New Roman", Times, serif;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 0;
    background: var(--nav-bg);
    padding: 0;
    width: 100%;
    justify-content: stretch;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    border-top: none;
    border-bottom: none;
}

.nav-links li {
    flex: 1;
}

.nav-links li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nav-text);
    border-right: 1px solid #eee;
    text-align: center;
}

.nav-links li a:hover {
    background: #f5f5f5;
}

.nav-links li a.active {
    background: var(--nav-active-bg);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    display: none; /* The logo is the main heading in the old site */
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Services Preview */
.services-grid {
    display: block;
}

.service-card {
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.service-card i {
    display: none;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Services Page Specifics */
.service-section {
    padding: 2rem 0;
    border-top: 1px solid #ddd;
}

.service-section h2 {
    margin-bottom: 1rem;
}

.service-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.service-section p {
    margin-bottom: 0.75rem;
}

.service-list {
    display: block;
    margin-top: 0.5rem;
}

.service-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    border-left: none;
    box-shadow: none;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.services-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--gray);
}

.quote-box {
    background: transparent;
    color: var(--dark);
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-style: italic;
    font-size: 1.1rem;
}

/* About Page Specifics */
.about-grid {
    display: block;
}

.about-info h3 {
    margin-top: 1.5rem;
    border-bottom: none;
    font-weight: bold;
}

.about-list {
    list-style: disc;
    padding-left: 2rem;
}

/* Contact Page Specifics */
.contact-grid {
    display: block;
}

.contact-info-list {
    display: block;
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-item i {
    display: none;
}
