/* =======================================================
PAGE CONTAINER (matches main layout spacing)
======================================================= */

.page-container {
    padding: 20px;
}


/* =======================================================
INFORMATION PAGE
======================================================= */

/* Resource grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Resource buttons (match main button style) */
.resource-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.resource-btn:hover {
    background-color: #2980b9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/* =======================================================
CONTACT PAGE
======================================================= */

.report-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #c62828;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.report-btn:hover {
    background-color: #9b1c1c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/* =======================================================
OUTREACH PAGE
======================================================= */

.tagline-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
}

/* Sections (aligned with main spacing, no width override) */
section {
    padding: 2rem 0;
}

h2 {
    margin-bottom: 1rem;
}


/* =======================================================
EMAIL SIGNUP
======================================================= */

.email-signup form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    flex-wrap: wrap;
}

.email-signup input {
    flex: 1;
    min-width: 200px;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.email-signup button {
    padding: 0.7rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.email-signup button:hover {
    background: #2980b9;
}


/* =======================================================
PRODUCT GRID
======================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.product {
    background: white;
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* =======================================================
MOBILE IMPROVEMENTS
======================================================= */

@media (max-width: 768px) {
    .email-signup form {
        flex-direction: column;
    }

    .resource-btn {
        padding: 14px;
    }
}
