﻿body {
    font-family: Garamond, "Times New Roman", serif;
    background: #FAFAFA;
    color: #333333;
    padding: 10px;
    max-width: 900px;
    margin: auto;
    font-weight: 500;
    box-sizing: border-box;
}
.brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
    .brand-header a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .brand-header .logo {
        width: 36px;
        height: auto;
    }
    .brand-header .brand-name {
        font-size: 0.95rem;
        font-weight: 500;
        font-family: 'Segoe UI', sans-serif;
        color: #333;
    }

section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

    .content-container h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-container h4 {
        font-size: 19px;
        margin-bottom: 20px;
        color: #34495e;
    }

    .content-container p {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

.navigate-btn {
    display: inline-block;
    background-color: #B90101;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.2s ease;
    margin-top: 15px;
    margin-bottom: 5px;
    text-decoration: none;
    width: fit-content;
}

    .navigate-btn:hover {
        background-color: #A00000;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .navigate-btn {
        width: auto;
        white-space: normal;
        height: auto;
        padding: 12px 16px;
    }
}