:root {
    --brydon-brown: #c8952d;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Navbar styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 2px 0;
    background: #222;
    z-index: 10;
    gap: 0;
}

@keyframes logo-pop-in {
    0% {
        transform: scale(0.7) rotate(-8deg);
        opacity: 0;
        box-shadow: none;
    }
    60% {
        transform: scale(1.08) rotate(2deg);
        opacity: 1;
        box-shadow: 0 8px 32px rgba(218,137,32,0.12);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        box-shadow: 0 2px 12px rgba(218,137,32,0.10);
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 70px;
    margin: 0 40px;
    box-shadow: 0 2px 12px rgba(218,137,32,0.10);
    animation: logo-pop-in 0.8s cubic-bezier(.4,1.4,.6,1) 0.1s both;
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar-logo a img {
    height: 100px;
    width: 125px;
    transition: transform 0.35s cubic-bezier(.4,1.4,.6,1), filter 0.3s;
    will-change: transform, filter;
}

.navbar-logo:hover a img,
.navbar-logo:focus-within a img {
    transform: scale(1.08) rotate(-2deg);
}

.navbar-links {
    display: flex;
    gap: 24px;
    position: relative;
}

.navbar-links-left {
    justify-content: flex-end;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    margin-left: 10.5rem;
}

.navbar-links-right {
    justify-content: flex-start;
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .navbar-logo a img {
        height: 70px;
        width: 90px;
    }
}

.navbar-links a {
    color: #f6f4e6;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    background: linear-gradient(
        to right,
        var(--brydon-brown) 50%,
        #f6f4e6 50%
    );
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.3s cubic-bezier(.4,0,.2,1);
}

.navbar-links a:hover {
    color: var(--brydon-brown);
}

.navbar-links a:hover,
.navbar-links a:focus {
    background-position: 0 0;
    color: unset;
}

.navbar-links .dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-links .dropdown-toggle {
    display: flex;
    align-items: center;
}

.navbar-links .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.5em;
    margin-left: 0.7em;
}

.navbar-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: 0.5em;
    padding: 0.5em 0;
}

.navbar-links .dropdown-menu a {
    color: #f6f4e6;
    padding: 0.5em 1.5em;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: nowrap;
    transition: background 0.7s cubic-bezier(.4,0,.2,1);
}

.navbar-links .dropdown-menu a:hover {
    color: white;
}

.navbar-links .dropdown:hover .dropdown-menu,
.navbar-links .dropdown:focus-within .dropdown-menu {
    display: block;
}

.navbar-links a.active, .navbar-links .dropdown-menu .service-menu-item.active {
    color: var(--brydon-brown);
    background-position: 0 0;
}

.contact-btn {
    position: relative;
    display: inline-block;
    background: var(--brydon-brown);
    color: #fff !important;
    padding: 0.6em 1.5em;
    border-radius: 2em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1em;
    margin-right: 1.5rem;
    box-shadow: 0 2px 8px rgba(229,57,53,0.15);
    border: none;
    outline: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.2s;
}

.contact-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: rgb(165, 121, 9);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 2em;
    transition: width 0.3s;
}

.contact-btn:hover,
.contact-btn:focus {
    color: #fff !important;
    cursor: pointer;
}

.contact-btn:hover:before,
.contact-btn:focus:before {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 12px;
    }
    .navbar-links-left {
        margin-left: 0;
    }
    .navbar-logo {
        display: none;
    }
    .navbar-links {
        background-color: #222;
    }
    .contact-btn {
        margin-left: 0;
    }
}

/* End of Navbar styles */


/* Universal Information Section */

.universal-info {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background-color: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
    border-top: 1px solid #ddd;
}

.universal-info__item {
    flex: 1;
    padding: 0 1rem;
    max-width: calc(33.33% - 2rem);
}

.universal-info__header {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
}

.universal-info__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.universal-info__list-item {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.universal-info__list-item:last-child {
    margin-bottom: 0;
}

.universal-info__item iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .universal-info {
        flex-direction: column;
    }
    
    .universal-info__item {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .universal-info__item:last-child {
        margin-bottom: 0;
    }
}

/* End of Universal Information Section */

/* Footer styles */

.footer {
    background: #222;
    color: #fff;
    padding: 24px 0;
    font-size: 16px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links-row a {
    color: #fff;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.footer-links-row a:hover {
    text-decoration: underline;
    color: var(--brydon-brown);
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 16px;
    }
    .footer-links-row {
        flex-direction: column;
        gap: 8px;
    }
}

/* End of Footer styles */

/* Contact Form styles */
@media only screen and (min-width: 0rem) {
    #contact-section {
        padding: 1rem;
        animation: fadeIn 0.5s;
    }
    #contact-container {
        width: 100%;
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
    }
    .contact-description {
        margin: 0 0 clamp(1rem, 4,4vw, 3rem) 0;
    }
    .contact-header {
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.2rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin: 0 0 1rem 0;
        display: block;
    }
    .contact-link {
        font-size: clamp(1rem, 2vw, 1.25rem);
        text-decoration: none;
        line-height: 1.5em;
        font-weight: 700;
        margin: 0 0 clamp(1rem, 2.5vw, 2rem);
        color: #000;
        display: block;
    }
    .contact-link:hover {
        text-decoration: underline;
    }
    .contact-link:last-of-type {
        margin-bottom: 0;
    }
    #contact-form {
        width: 100%;
        max-width: 40.625rem;
        margin-bottom: clamp(2rem, 5.3vw, 2.5rem);
        padding: clamp(1.25rem, 4.5vw, 2.5rem);
        box-sizing: border-box;
        border: 1px solid #dad9e3;
        border-radius: 1rem;
    }
    .contact-label {
        font-size: clamp(0.875rem, 1.3vw, 1rem);
        line-height: 1.5rem;
        font-weight: 700;
        margin-bottom: clamp(1rem, 1em, 1.25rem);
        color: #000;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    #contact-label-message {
        margin-bottom: clamp(2rem, 4.5vw, 2.5rem);
    }
    .contact-input, #contact-section textarea {
        font-size: 1rem;
        width: 100%;
        height: 4rem;
        margin-top: 0.25rem;
        padding-left: 1.25rem;
        border: 1px solid transparent;
        border-bottom: 1px solid #b4b2c7;
        border-radius: 8px;
        box-sizing: border-box;
        transition: border 0.4s;
    }
    .contact-input:hover, #contact-section textarea:hover {
        border: 1px solid #b4b2c7;
    }
    .contact-input::placeholder, #contact-section textarea::placeholder {
        color: #7d799c;
    }
    #contact-section textarea {
        font-family: inherit;
        margin: 0;
        padding-top: 1.25rem;
        min-height: 7.5rem;
    }
    .contact-button {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: auto;
        width: 100%;
        color: #fff;
        padding: 0 1.5rem;
        background-color: #333;
        border: none;
        border-radius: 0.5rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }

    .contact-button:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--brydon-brown);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.5rem;
        transition: width 0.3s;
    }
    .contact-button:hover {
        cursor: pointer;
    }
    .contact-button:hover:before {
        width: 100%;
    }
}

.contact-title {
    color: var(--brydon-brown)
}

.universal-info__list-item a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.universal-info__list-item a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 43.75rem) {
    #contact-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-content {
        width: 40%;
        order: 2;
        flex: none;
    }
    #contact-form {
        margin: 0;
    }
}


/* End of Contact Form styles */

/* --- Gallery Page Styles --- */

#gallery-section {
    padding: 2.5rem 1rem;
    animation: fadeIn 0.5s;
    
}

.gallery-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(218,137,32,0.07);
    padding: 2.5rem 2rem;
}

.gallery-title {
    color: var(--brydon-brown);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
    text-align: center;
}

.gallery-content {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: center;
}

.gallery-grid {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.gallery-image {
    min-height: 220px;
    border-radius: 1em;
    overflow: hidden;
    display: block;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(218,137,32,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.gallery-image:hover,
.gallery-image:focus-within {
    box-shadow: 0 4px 24px rgba(218,137,32,0.13);
    transform: translateY(-4px) scale(1.03);
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-image img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(34,34,34,0.7) 0%, rgba(34,34,34,0.0) 100%);
    color: #fff;
    font-size: 1rem;
    padding: 0.7em 1em 0.7em 1em;
    text-align: left;
    opacity: 0.95;
    border-radius: 0 0 1em 1em;
    pointer-events: none;
}

.gallery-container .popup-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-container .popup-image.active {
    display: flex;
}

.gallery-container .popup-image img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1em;
    box-shadow: 0 4px 32px rgba(218,137,32,0.18);
}

.gallery-container .popup-image span {
    position: absolute;
    top: 32px;
    right: 48px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 0.2em 0.6em;
    transition: background 0.2s;
}

.gallery-container .popup-image span:hover {
    background: rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
    .gallery-container {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .gallery-title {
        font-size: 1.3rem;
    }
    .gallery-container {
        padding: 0.5rem 0.2rem 1rem 0.2rem;
    }
}

/* --- End Gallery Page Styles --- */

/* About Page styles */

.about-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 2em;
    box-shadow: 0 2px 12px rgba(218,137,32,0.06);
    padding: 0.5rem 1rem;
}

.about-nav a {
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 2em;
    transition: background 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
}

.about-nav a.active,
.about-nav a:focus {
    color: var(--brydon-brown);
    border-bottom: 3px solid var(--brydon-brown);
    outline: none;
}

.about-nav a:hover {
    color: var(--brydon-brown);
}

.about-info {
    max-width: 700px;
    margin: 2.5rem auto 2.5rem auto;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(218,137,32,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: none;
    animation: fadeIn 0.5s;
}

.about-info.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.info-title {
    color: var(--brydon-brown);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
    text-align: center;
}

.info-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}
#core-values-description {
    text-align: center;
}
.core-values-list {
    margin: 2rem auto 0 auto;
    padding: 0;
    list-style: none;
    max-width: 400px;
}

.core-values-list li {
    background: #f6f4e6;
    color: #222;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 1.2em;
    margin-bottom: 1rem;
    padding: 0.75em 1.2em;
    box-shadow: 0 1px 6px rgba(218,137,32,0.05);
    text-align: center;
    letter-spacing: 0.01em;
}

@media only screen and (min-width:0rem) {
    .about-nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-right: 1rem;
    }
    .about-nav a {
        text-decoration: none;
        margin-top: 2rem;
        color: #333;
        font-weight: 700;
        font-size: clamp(1rem, 2vw, 1.25rem);
        padding: 0.5rem 1rem;
        background: none;
        border: none;
        border-radius: 0;
        border-bottom: 3px solid transparent;
        transition: border-color 0.3s, color 0.3s;
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .about-nav a.active,
    .about-nav a:focus {
        border-bottom: 3px solid var(--brydon-brown);
        color: var(--brydon-brown);
        outline: none;
    }
    .about-nav a:hover {
        color: var(--brydon-brown);
    }

    .about-info {
        display: none;
    }
    .about-info.active {
        display: block;
    }
}

/* End of About Page styles */

/* Products Page styles */
.services-summary {
    margin: 2.5rem auto auto auto;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(218,137,32,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    animation: fadeIn 0.5s;
    max-width: 1600px;
}

.products-flex-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 2.5rem auto;
}

.interior-products,
.exterior-products {
    flex: 1 1 0;
    min-width: 280px;
    max-width: 600px;
    margin: 2rem;
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(218,137,32,0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    animation: fadeIn 0.5s;
}

.products-title {
    color: var(--brydon-brown);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.product-summary {
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.product-checkout {
    display: block;
    margin: 0 auto;
    background: var(--brydon-brown);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.5em;
    border-radius: 2em;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(218,137,32,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
}

.product-checkout:hover,
.product-checkout:focus {
    background: #a97c1c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(218,137,32,0.18);
    outline: none;
}

@media (max-width: 700px) {
    .services-summary,
    .interior-products,
    .exterior-products {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    .products-flex-row {
        flex-direction: column;
        gap: 2rem;
    }
    .interior-products,
    .exterior-products {
        margin: 0 auto;
        max-width: 700px;
    }
}

/* End of Products Page styles */

/*  Home Page Styles  */

.home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    animation: fadeIn 0.5s;
}

.home-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.home-hero-text {
    flex: 1 1 340px;
    min-width: 300px;
}

.home-title {
    font-size: 2rem;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color: var(--brydon-brown);
    margin-bottom: 1rem;
}

.home-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.home-bullets {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
    padding-left: 1.2em;
    list-style: none;
}

.home-bullets li:before {
    content: "\2022";
    color: var(--brydon-brown);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.home-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-action-btn {
    font-size: 1.1rem;
}

.home-action-btn-outline {
    background: #fff;
    color: var(--brydon-brown) !important;
    border: 1.5px solid var(--brydon-brown);
}

#home-about-btn {
    text-transform: none;
}

.home-hero-image {
    flex: 1 1 340px;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.home-hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 1.2em;
    box-shadow: 0 2px 16px rgba(218,137,32,0.10);
    object-fit: cover;
}

#home-highlights {
    background: #f6f4e6;
    padding: 2.5rem 0;
}

.home-highlights-row {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.home-highlight-card {
    flex: 1 1 250px;
    min-width: 220px;
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 2px 12px rgba(218,137,32,0.06);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-highlight-card img {
    width: 100%;
    max-width: 120px;
    max-height: 80px;
    border-radius: 0.7em;
    margin-bottom: 1rem;
}

.home-highlight-card h3 {
    color: var(--brydon-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.home-highlight-card p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.home-highlight-btn {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .home-hero,
    .home-highlights-row {
        flex-direction: column;
        gap: 2rem;
    }
    .home-hero-image,
    .home-hero-text {
        min-width: 0;
    }
}

/*  End Home Page Styles */

/* Start of Bill-S211 styles */

#bill-s211-report {
    background: #f6f4e6;
    padding: 2.5rem 0;
    animation: fadeIn 0.5s;
}

.bill-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 2px 16px rgba(218,137,32,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    font-size: 1.08rem;
    color: #333;
    animation: fadeIn 0.5s;
}

.bill-container h1 {
    color: var(--brydon-brown);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.bill-container h2 {
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
}

.bill-container h3 {
    color: var(--brydon-brown);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.bill-container h4 {
    color: #222;
    font-size: 1.08rem;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.bill-container p {
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.bill-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
    font-size: 1.08rem;
}

.bill-container ul li {
    margin-bottom: 0.7rem;
    background: #f6f4e6;
    border-radius: 0.7em;
    padding: 0.5em 1em;
    color: #222;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(218,137,32,0.05);
}

.bill-container strong {
    color: var(--brydon-brown);
}

@media (max-width: 900px) {
    .bill-container {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    #bill-s211-report {
        padding: 1.2rem 0.2rem 1rem 0.2rem;
    }
    .bill-container h1 {
        font-size: 1.3rem;
    }
    .bill-container h2 {
        font-size: 1.1rem;
    }
}
/* End of bill styles */