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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Intro Text */
.intro-text {
    font-family: 'Pluto Sans Heavy', 'Arial', sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 18px;
    text-transform: uppercase;
    color: #003b71;
    text-align: center;
    margin-bottom: 25px;
  }
  

/* Section Titles */
.section-title {
    background-color: #0074c1;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 30px 0px;
}

/* Local Box */
.local-box {
    background: white;
    padding: 20px;
}

.local-box p {
    font-size: 14px;
}

.local-button {
    display: flex;
    justify-content: end;
}


.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.btn.red {
    background-color: #ed1c24;
    color: white;
}

/* Promo Images */
.promos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.promos img {
    width: 98%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}