body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #002868;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}
nav a {
    color: white;
    text-decoration: none;
}

.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    color: white;
    overflow:hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/banner.jpg') no-repeat center center/cover;
    filter: blur(4px);
    z-index: -1;
}

.cta-button {
    display: inline-block;
    background-color: #BF0A30;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
.mission, .policies, .news, .support, #supporters {
    padding: 40px;
    text-align: center;
    background-color: white;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.policies {
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
    color:#242424;
}

.policies > div {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap:1.5rem;
}

.policies > div > i {
    font-size:4rem;
}

footer {
    background-color: #002868;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
#supporters {
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin:auto;
}

#supporters .container {
    max-width: 1000px;
    margin: 0 auto;
}

#supporters h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

#supporters p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Tier Section Styling */
.supporters-tier {
    margin-bottom: 40px;
    width:100%;
    display:flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
}

.supporters-tier h3 {
    font-size: 1.5rem;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    margin-bottom: 20px;
}

.supporters-tier div {
    width:100%;
    display:flex;
    align-items: stretch;
    gap:1rem;
}

/* Tier Colors */
.titanium h3 { color: #b71c1c; border-color: #b71c1c; }  
.platinum h3 { color: #607d8b; border-color: #607d8b; }  
.gold h3 { color: #ff9800; border-color: #ff9800; }  
.silver h3 { color: #9e9e9e; border-color: #9e9e9e; }  

/* Grid Layout for Each Tier */
.supporters-tier .supporter {
    display: inline-block;
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-grow:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.supporter img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.supporter span {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
}
