* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Page Background & Structure */
html {
    background-color: #5F9EA0 !important;
    min-height: 100vh;
}

body {
    background-color: #5F9EA0 !important;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    color: #FFFFFF;
    text-align: center;
}

/* Header & Navigation */
header {
    width: 100%;
    padding: 25px 0 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
}

nav a {
    color: #E2EFE0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Main Layout Container */
.sidney-support-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    flex-grow: 1;
}

/* Headings */
.sidney-title {
    font-family: 'Caveat', cursive;
    font-size: 52px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-transform: none;
}

.sidney-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #E2EFE0;
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* 2-Column Grid Alignment */
.sidney-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    align-items: stretch;
}

/* Individual Grid Cards */
.sidney-card {
    border: 3px solid #FFFFFF;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 220px;
    box-sizing: border-box;
}

.sidney-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.sidney-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Contact Area */
.sidney-contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.sidney-contact-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.sidney-contact-box p, 
.sidney-contact-box a {
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.6;
}

.sidney-contact-box a {
    border-bottom: 1px dashed #E2EFE0;
    font-weight: 600;
}

/* Mission Box */
.sidney-mission {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sidney-mission p {
    font-size: 13px;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Bottom Right Logo Card - Strictly Constrained */
.sidney-logo-card {
    background-color: #EAEAEA;
    padding: 25px 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sidney-logo-card img {
    max-width: 110px !important; /* Forces logo from expanding */
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.sidney-logo-card p {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2C3E50 !important;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Footer Alignment */
footer {
    width: 100%;
    padding: 20px 20px 20px 40px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #E2EFE0;
}

/* Responsive Mobile Fallback */
@media (max-width: 768px) {
    .sidney-grid {
        grid-template-columns: 1fr;
    }
}