/*********************************************
 * VARIABLES AND GLOBAL SETTINGS
 *********************************************/
:root {
    --primary-color: hsl(231, 40%, 47%);
    --primary-color-hover: hsl(231, 54%, 47%);
    --primary-dark: #003366;
    --primary-light: #b3d9ff;
    --primary-very-light: hsl(216, 100%, 97%);
    --text-color: hsl(0, 0%, 10%);
    --background-color: #f9f9f9;
    --body-color: hsl(0, 0%, 90%);
    --white-color: white;
    --notice-background: #ffcccc;
    --notice-text: #d8000c;
    --default-font-size: 1.2rem;
}

/*********************************************
 * RESET AND BASE STYLES
 *********************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background-color: var(--body-color);
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

/*********************************************
 * TYPOGRAPHY
 *********************************************/
h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

h3 {
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-size: 1.5rem;
}

.donate-option {
    padding-left: 2.4rem;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

.option-1 {
    background-image: url("/assets/wrap.gif");
}

.option-2 {
    background-image: url("/assets/wings.gif");
}

.option-3 {
    background-image: url("/assets/pray.png");
}

p {
    line-height: 1.6rem;
    font-size: var(--default-font-size);
    text-align: left;
}

p:not(:last-child) {
    margin-bottom: 1.5rem;
}

li {
    font-size: var(--default-font-size);
    margin-bottom: 0.75rem;
}

.centered-header {
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    position: relative;
}

.enlarged-text {
    font-size: 1.25em;
    /* Adjust the size as needed */
}

/*********************************************
 * LAYOUT COMPONENTS
 *********************************************/
.container {
    margin-top: 6.5rem;
}

section {
    width: 90%;
    max-width: 1000px;
    margin: 6.5rem auto 2.5rem;
    background-color: var(--white-color);
    border-radius: 18px;
    box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.37);
}

.section-content {
    padding: 5.5rem;
}

#givealittle-section {
    padding-top: 2rem;
}

section h2 {
    position: relative;
    padding-bottom: 1rem;
}

#christmas {
    margin: 3.5rem auto 2.5rem;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--primary-color);
    transform: translateX(-50%);
}

.icon-heading {
    text-align: center;
    line-height: 1.2em;
}

.icon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    /* space between icon and text */
    flex-wrap: nowrap;
    /* keep icon and first word together */
    line-height: 1.2em;
}

.icon-wrap img {
    height: 1.5em;
    width: auto;
    vertical-align: middle;
    flex-shrink: 0;
    margin: 0;
}

.heading-about {
    margin-top: 0.4em;
}

.heading-snug {
    margin-top: 0.1em;
}

.heading-donate {
    margin-top: 0.2em;
}

.heading-contact {
    margin-top: 0.4em;
}

.heading-alt {
    color: var(--background-color);
}

.heading-smaller {
    font-size: 0.9em;
    margin-top: 0.7em;
}

#icon-teddy {
    height: 1.8em;
}

#icon-car {
    height: 1.8em;
}

.call-to-action {
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 1rem;
}

.bank-card {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.givealittle-card {
    flex: 0 0 100%;
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.account-details,
.account-reference {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    text-align: center;
}

.account-label,
.reference-label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

.account-number,
.reference-value {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    padding: 0.5rem;
    background-color: var(--primary-very-light);
    border-radius: 6px;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.card-notice {
    display: flex;
    align-items: flex-start;
    background-color: var(--primary-light);
    padding: 0.8rem;
    border-radius: 6px;
    margin-top: auto;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-icon {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 2px;
    color: var(--primary-color);
}

.donate-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.donate-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 1rem;
}

/*********************************************
 * HEADER AND NAVIGATION
 *********************************************/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: var(--background-color);
    height: 5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0.37em 0.6em rgba(0, 0, 0, 0.37);
    border-bottom: var(--primary-color) 0.5rem solid;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
}

/* Logo and branding */
.logo-container {
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 10;
    height: 100%;
    display: flex;
}

.logo-container img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.logo-text {
    position: absolute;
    left: 7.5rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    min-height: 100%;
    margin-left: 0.25rem;
    justify-content: center;
    translate: 0 0.5rem;
    width: 20rem;
    font-weight: 600;
}

.logo-text-care {
    font-size: 1.9rem;
    line-height: 1.5rem;
}

.tagline {
    color: hsl(0, 0%, 15%);
    font-style: italic;
    font-size: 1rem;
}

.logo-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: none;
    vertical-align: middle;
}

.nav-logo img.visible {
    display: block;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
}

.nav-links li {
    margin: 0 0 0 0.5rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--default-font-size);
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0.5rem;
}

.nav-links-divider {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-stretch: expanded;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: "Lucida Console", "Courier New", monospace;
}

.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    z-index: 1999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    width: 100%;
    margin: 0;
    background-position: 1rem center;
    background-size: 3rem;
    background-repeat: no-repeat;
}

.mobile-menu a {
    display: block;
    height: 5rem;
    line-height: 5rem;
    text-align: left;
    margin: 0;
    padding-left: 5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--default-font-size);
    font-weight: bold;
    white-space: nowrap;
    border-top: 1px solid var(--primary-light);
    border-bottom: 2px solid var(--primary-color);
}

.mobile-menu a:hover {
    text-decoration: underline;
}

#b1 {
    background-image: url("/assets/teddy-static.png");
    background-size: 3.4rem;
}

#b2 {
    background-image: url("/assets/hands.png");
}

#b3 {
    background-image: url("/assets/scarf.png");
}

#b4 {
    background-image: url("/assets/write-static.png");
}

/*********************************************
 * BUTTONS AND INTERACTIVE ELEMENTS
 *********************************************/
.btn {
    display: inline-block;
    color: var(--white-color);
    text-decoration: none;
    border-radius: 15rem;
    font-weight: bold;
    padding: 1rem 4.5rem;
    font-size: 1.2rem;
    box-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.5);
}

.how-to-donate-btn {
    background-color: var(--primary-color);
    background-image: url("/assets/arrow.png");
    background-size: 1.6rem;
    background-repeat: no-repeat;
    background-position: 85%;
    border: 1px solid hsl(0, 0%, 37%);
}

.how-to-donate-btn span {
    padding-right: 0.75rem;
}

.how-to-donate-btn:hover {
    background-color: var(--primary-color-hover);
}

.donate-btn {
    background-color: hsl(101, 43%, 50%);
    background-image: url("/assets/heart.gif");
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: 85%;
    border: 1px solid hsl(0, 0%, 37%);
}

.donate-btn span {
    padding-right: 0.75rem;
}

.donate-btn:hover {
    background-color: hsl(101, 57%, 50%);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/*********************************************
 * MAIN CONTENT SECTIONS
 *********************************************/
/* Hero section */
.hero-content {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.give-a-little-logo {
    max-width: 350px;
    height: 4em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.group-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    border: 1px solid hsl(0, 0%, 65%);
    pointer-events: none;
}

/* Christmas section - Text flowing around image */
.content-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.content-wrapper .image-container {
    float: left;
    width: auto;
}

.content-wrapper .image-container img {
    display: block;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.content-wrapper .content p {
    margin-bottom: 15px;
    font-size: var(--default-font-size);
}

.content-squeeze {
    padding: 2rem;
}

/* Drop-off section */
.drop-off-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}

.drop-off-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.drop-off-list li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.drop-off-list li svg {
    width: 36px;
    height: 36px;

    flex-shrink: 0;
}

#drop-off-map {
    flex: 2;
    min-height: 20rem;
    border-radius: 15px;
    min-width: 300px;
    width: 100%;
    display: block;
    border: 1px solid hsl(0, 0%, 50%);
}

.notice {
    padding: 1rem;
    border-radius: 15px;
    font-size: var(--default-font-size);
    margin-top: 2rem;
    line-height: 2rem;
}

.alert {
    background-color: var(--notice-background);
    color: var(--notice-text);
}

.info {
    background-color: var(--primary-light);
    color: var(--text-color);
}

/* Image components */
.image-container {
    width: 60%;
    overflow: hidden;
}

.image-container img {
    border-radius: 15px;
}

#team img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.image {
    border-radius: 15px;
    border: 1px solid hsl(0, 0%, 70%);

    margin-right: 1rem;
    float: left;
}

.mascot-image {
    max-width: 15rem;
    height: 21rem;
    object-fit: cover;
}

.patron-image {
    max-width: 15rem;
    height: 15rem;
    object-fit: cover;

    float: right;
    margin-left: 1rem;
    margin-right: 0;
}

.team-image {
    max-width: 25rem;
    height: 15rem;
    object-fit: contain;
}

.indented {
    list-style: none;
    margin-left: 0.5rem;
}

/*********************************************
 * FOOTER
 *********************************************/
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-top {
    padding: 4.5rem 2rem;
    background: var(--primary-color);
    position: relative;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: none;
    /* Hide empty container */
}

.contact-section {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
}

.section-title {
    color: var(--white-color);
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--white-color);
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.footer-links a {
    color: var(--primary-very-light);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-links p {
    border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
    line-height: 1.5rem;
}

.footer-links p:hover {
    color: var(--white-color);
    border-bottom-color: var(--white-color);
}

.footer-links a:hover {
    color: var(--white-color);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid hsl(0, 0%, 20%);
    color: var(--white-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-links a:hover .icon {
    background-color: rgba(255, 255, 255, 0.3);
}

.icon img {
    border-radius: 0;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info p {
    color: #fff;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.15);
}

.copyright-container {
    width: 90%;
    max-width: 1000px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    padding: 1rem;
    margin: 0 auto;
}

.copyright p {
    font-size: calc(var(--default-font-size) * 0.85);
}

.copyright-left {
    text-align: left;
    margin: 0.5rem 1rem;
}

.copyright-right {
    text-align: right;
    margin: 0.5rem 1rem;
}

.copyright-center,
.copyright-center p {
    justify-content: center;
    text-align: center;
    margin: 0.6rem 1rem;
    width: 100%;
}

.copyright a {
    color: var(--primary-very-light);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.copyright a:hover {
    color: var(--white-color);
    border-bottom-color: var(--white-color);
}

/*********************************************
 * Map
 *********************************************/

#map-container {
    flex-grow: 1;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
}

.map-controls {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;

    z-index: 1500;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.map-controls input {
    width: auto;
}

.map-attribution {
    position: absolute;
    bottom: 0.5rem;
    right: 2.5rem;
    z-index: 400;

    color: var(--text-color);
    background-color: var(--background-color);
    padding: 0.25rem 0.5rem;

    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;

    font-size: 0.75rem;
    width: 200px;

    height: 2rem;
    display: flex;
    align-items: center;

    pointer-events: auto;
}

.map-attribution-button {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);

    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    z-index: 400;
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 25px;
    padding: 0.25rem 0.5rem;
    font-size: 1.0rem;
    border: none;

    width: 2rem;
    height: 2rem;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.map-attribution-button span {
    translate: 0 0.05rem;
}

.map-attribution-button-active {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    box-shadow: none !important;
}

.map-attribution span {
    margin: 0.5rem;
}

.map-control-button {
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);

    color: var(--text-color);
    background-color: var(--background-color);

    width: 2rem;
    height: 2rem;

    border: none;

    font-size: 1.5rem;
}

.map-control-zoom-in {
    margin-bottom: 0;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-left-radius: 25px;
    border-top-right-radius: 25px;

    border-bottom: 1px solid var(--border-color);
}

.map-control-zoom-out {
    margin-bottom: 0;

    border-top-left-radius: 0;
    border-top-right-radius: 0;

    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.reduced-margin {
    margin-bottom: 1rem !important;
}

/*********************************************
 * MEDIA QUERIES
 *********************************************/
/* Desktop adjustments */
@media (min-width: 769px) {
    .drop-off-container {
        align-items: stretch;
    }
}

/* Tablet adjustments */
@media (max-width: 1020px) {

    .nav-links,
    .nav-links-divider {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .call-to-action {
        flex-direction: column;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 2rem;
    }

    .team-image {
        display: block;
        margin: 0 auto;

        float: none;
        margin-bottom: 1rem;

        max-width: 100%;
    }

    .copyright-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .copyright-left,
    .copyright-right {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
        /* Center text on mobile */
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    section {
        margin: 0 auto;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.75);
    }

    .container {
        margin-top: 5rem;
    }

    .card-container {
        margin: 0.5rem;
    }

    .group-image {
        border-radius: 0;
    }

    .section-content {
        padding: 1.5rem;
        padding-top: 3rem;
    }

    #christmas {
        margin: 3.5rem auto 0;
        padding-bottom: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .content-wrapper .content p,
    p,
    .account-number {
        font-size: 1.2rem;
    }

    .contact-info p {
        text-align: center;
    }

    .give-a-little-logo {
        height: 3em;
    }

    /* Navigation mobile adjustments */
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        margin: 0;
        padding: 0;
        z-index: 1999;
    }

    .nav-links li {
        width: 100%;
        height: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: left;
        margin-left: 5%;
    }

    .nav-container {
        width: 97%;
    }

    /* Footer mobile adjustments */
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;

        align-items: center;
    }


    .copyright-center,
    .copyright-center p {
        margin: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 0.67rem;
        padding-right: 0.67rem;
    }

    .copyright-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .copyright-left,
    .copyright-right {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
        /* Center text on mobile */
    }

    .contact-section {
        padding: 0 1rem;
    }

    /* Content section mobile adjustments */
    .drop-off-container {
        flex-direction: column;
    }

    .drop-off-list li {
        padding-left: 0;
    }

    #drop-off-map {
        height: 350px;
        margin-top: 1rem;
        min-height: 300px;
    }

    @media (max-width: 500px) {

        .patron-image,
        .mascot-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 1.5rem;
        }

        .content-wrapper .image-container {
            width: 100%;
            margin: 0;
        }

        /* Logo mobile adjustments */
        .logo-text {
            left: auto;
            margin-left: 6.6rem;
            width: 13rem;
        }

        .logo-text-care {
            font-size: 1.45rem;
            line-height: 1.3rem;
        }

        .logo-container img {
            height: 85%;
        }

        h2 {
            font-size: 1.6rem;
        }

        h3 {
            font-size: 1.4rem;
        }

        .btn {
            font-size: 1rem;
        }

        .how-to-donate-btn span,
        .donate-btn span {
            padding-right: 0.1rem;
        }

        #drop-off-map,
        .drop-off-list {
            min-width: 100%;
        }

        .drop-off-list,
        .notice,
        li {
            font-size: 1.1rem;
        }

        .drop-off-list li {
            padding-left: 0;
        }

        .content-wrapper .content p,
        p {
            font-size: 1.1rem;
        }

        .content-wrapper .content p,
        p {
            font-size: 1rem;
        }

        .section-content {
            padding-top: 3rem;
        }

        .footer-top {
            padding: 4.5rem 0;
        }

        .footer-links p {
            line-height: 3rem;
        }

        .copyright-container {
            padding: 0;
            width: 100%;
        }

        .copyright-center,
        .copyright-center p {
            margin: 0;
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            padding-left: 0.67rem;
            padding-right: 0.67rem;
        }

        .give-a-little-logo {
            height: 3em;
            margin-top: 0;
            margin-bottom: 0;
        }
    }

    @media (max-width: 350px) {

        /* Logo mobile adjustments */
        .logo-text {
            left: auto;
            margin-left: 5.5rem;
            width: 11rem;
        }

        .tagline {
            font-size: 0.9rem;
        }

        #drop-off-map,
        .drop-off-list {
            min-width: 100%;
        }

        .drop-off-list,
        .notice,
        li {
            font-size: 1rem;
        }

        .logo-text-care {
            font-size: 1.1rem;
            line-height: 0.8rem;
        }

        .logo-container img {
            height: 70%;
        }

        h2 {
            font-size: 1.1rem;
        }

        h3 {
            font-size: 1.1rem;
        }

        .content-wrapper .content p,
        p {
            font-size: 1rem;
        }

        .footer-top {
            padding: 4.5rem 0;
        }

        .footer-links p {
            line-height: 3rem;
        }

        .copyright-container {
            padding: 0;
            width: 100%;
        }

        .copyright-center,
        .copyright-center p {
            margin: 0;
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            padding-left: 0.05rem;
            padding-right: 0.05rem;
        }

        .give-a-little-logo {
            height: 3em;
            margin-top: 0;
            margin-bottom: 0;
        }
    }
}