﻿/* General Page & Typography */
body {
    background-color: #ececec;
    color: #231f20;
    font-family: 'Bridgestone', sans-serif;
    font-size: 14px;
    margin: 0;
}

/* Custom Containers */
.content-section {
    background-color: #ffffff;
    padding: 40px 60px;
    margin-bottom: 42px;
}

/* Headers */
h2.h1 {
    color: #000000;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 21px;
}

/* Body Text */
p {
    font-size: 16px;
    margin-bottom: 14px;
}

/* Primary Button Customization */
.btn-primary {
    background-color: #ed1c24;
    border-color: #ed1c24;
    color: #ffffff;
    font-weight: 500;
    padding: 11px 24px;
    border-radius: 0; /* Note: The LESS file seems to override default Bootstrap radius */
    margin-top: 14px;
    display: inline-block;
}

    .btn-primary:hover {
        background-color: #c4121a; /* Estimated hover state */
        border-color: #c4121a;
    }
