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

        html {
            font-size: 93.75%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: #4B4F58;
            background-color: #FFFFFF;
        }

        a {
            color: #d11111;
            text-decoration: none;
        }

        a:hover {
            color: #3a3a3a;
        }

        .site-content {
            max-width: 70%;
            margin: auto;
        }

        .nav-link {
            color: #ba0202;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #000;
            color: white;
            padding: 8px;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid #eaeaea;
            margin-top: 1em;
        }

        .header-wrap {
            max-width: 100%;
            padding: 0 35px;
            margin: 0 auto;
        }

        .header-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo and Title */
        .site-branding {
            display: flex;
            align-items: center;
        }

        .site-logo-img img {
            max-width: 100px;
            height: auto;
            margin-right: 1em;
        }

        .site-title {
            font-size: 2.8rem;
            line-height: 1;
        }

        .site-title a {
            color: #3a3a3a;
        }

        .site-description {
            font-size: 1rem;
            color: #3a3a3a;
            margin-top: 4px;
        }

        /* Social Icons */
        .social-link {
            margin: 0 .5px;
        }

        .social-link svg {
            width: 18px;
            height: 18px;
            fill: #000000;
        }

        /* Navigation */
        .main-menu {
            display: flex;
            list-style: none;
        }

        .main-menu li {
            line-height: 30px;
        }

        .main-menu a {
            padding: 0 15px;
            display: block;
        }

        /* Hero Image */
        .hero {
            margin: 25px 25px 25px 60px;
            background-color: #000;
        }

        .hero-cover {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
        }

        .hero-cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0);
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(70%);

        }

        .hero-text {
            position: relative;
            z-index: 1;
            color: white;
            font-size: 2.5rem;
            font-weight: lighter;
            margin: auto;
            text-align: center;
            filter: brightness(100%);
        }

        /* Main Content */
        .site-content {
            padding: 60px 0;
        }

        .container {
            max-width: 1622px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .entry-title {
            font-size: 2rem;
            color: #3a3a3a;
            margin-bottom: 1em;
        }

        .entry-content {
            line-height: 1.8;
        }

        .entry-content p {
            margin-bottom: 1.5em;
        }

        .entry-content hr {
            margin: 2em 0;
            border: 0;
            border-top: 1px solid #e5e5e5;
        }

        .entry-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2em 0;
        }

        /* Footer */
        .site-footer {
            position: fixed;
            width: 100%;
            left: 0;
            bottom: 0;
            background-color: #eeeeee;
            padding: 20px;
            text-align: center;
            font-size: 0.87rem;
            color: #4B4F58;
        }

        /* Responsive */
        @media (max-width: 921px) {
            html {
                font-size: 85.5%;
            }

            .header-wrap {
                padding: 0 20px;
            }

            .entry-title {
                font-size: 30px;
            }

            .hero-text {
                font-size: 30px;
            }
        }

        @media (max-width: 544px) {
            .site-title {
                display: none;
            }

            .hero {
                margin: 25px 0;
            }
        }