 body {
            background-color: #FFFFF0; /* Ivory */
            color: #333333; /* Charcoal */
            font-family: "Times New Roman", serif;
            line-height: 1.6;
            max-width: 700px;
            margin: 40px auto;
            padding: 20px;
            border-left: 1px solid #d1d1d1;
        }

        header {
            border-bottom: 2px solid #333333;
            margin-bottom: 30px;
            padding-bottom: 15px;
        }

        h1 {
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
            font-size: 1.5rem;
        }

        h2 {
            font-style: italic;
            font-weight: normal;
            margin-top: 5px;
            color: #555;
            margin-bottom: 15px;
        }

        /* Minimalist Navigation Styles */
        nav {
            margin-top: 15px;
        }

        .nav-links {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nav-links li {
            display: inline;
        }

        .nav-links a {
            color: #333333;
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #777777;
            text-decoration: underline;
        }

        h3 {
            font-weight: bold;
        }

        .contact-info {
            margin-bottom: 30px;
            font-weight: bold;
        }

        .focus-area {
            background: #f9f9f2;
            padding: 15px;
            border: 1px solid #ccc;
            margin: 20px 0;
        }

        .focus-title {
            font-size: 1.17em;
            font-weight: bold;
        }

        ul {
            list-style-type: square;
        }

        footer {
            margin-top: 50px;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 10px;
        }

.tagline {
    font-style: italic;
    font-weight: normal;
}

/* ==========================================================================
   Testimonial Styles
   ========================================================================== */

/* The main container for each testimonial card */
.testimonial {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 2px solid #d1d1d1;
    display: block;
}

/* Forces the paragraph and the author to sit on the same line */
.testimonial p, 
.testimonial .author {
    display: inline !important; 
}

/* The testimonial quote text styling */
.testimonial p {
    font-style: italic !important;
}

/* The author credit line styling */
.author {
    color: #666;
    font-size: 0.95rem;
    font-style: normal;
    margin-left: 8px; /* Adds a clean space after the quote before the name */
}