/* Genral styles */


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 88px; /* space between links */
    list-style: none;
    padding: 0;
    margin: 40px 0 20px 0;
}

nav ul li a {
    color: #ff8c00; /* Orange */
    text-decoration: underline;
    text-decoration-color: #ff8c00; /* Orange underline */
    font-weight: bold;
    font-size: 1.15em;
    transition: color 0.2s, text-decoration-color 0.2s;
}

nav ul li a:hover {
    color: #de5e09; /* Lighter orange on hover */
    text-decoration-color: #db5c07;
}

.quotes-section {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.horizontal-quotes {
    display: flex;
    flex-direction: row;
    gap: 56px; /* space between quote boxes */
    overflow-x: auto;
    padding-bottom: 40px;
}

.quote-box {
    background: #e0e0e0; /* Light gray */
    border-radius: 10px;
    padding: 30px 30px;
    box-shadow: 0 2px 8px rgba(212, 137, 8, 0.08);
    min-width: 250px;
    color: #434242;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quotes section centered and spaced */
.quotes-section {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.horizontal-quotes {
    display: flex;
    flex-direction: row;
    gap: 30px; /* space between quote boxes */
    overflow-x: auto;
    padding-bottom: 40px;
}

.quote-box {
    background: #e0e0e0; /* Light gray */
    border-radius: 10px;
    padding: 30px 30px;
    box-shadow: 0 2px 8px rgba(208, 8, 8, 0.08);
    min-width: 250px;
    color: #222;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}














