:root {
    --corporate-blue: #003366;
    --power-red: #cc0000;
    --off-white: #f4f4f4;
    --text-grey: #333;
    --border-color: #ccc;
    --card-bg: #ffffff;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    background-color: var(--off-white);
    color: var(--text-grey);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to allow scrolling */
    min-height: 100vh;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: #fff;
    border-left: 2px solid var(--corporate-blue);
    border-right: 2px solid var(--corporate-blue);
    border-bottom: 2px solid var(--corporate-blue);
    box-shadow: 10px 10px 0px rgba(0, 51, 102, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

header {
    margin-bottom: 2rem;
    border-bottom: 4px double var(--corporate-blue);
    padding-bottom: 1rem;
}

.logo {
    width: 120px;
    height: auto; /* Allow aspect ratio to remain if not square */
    border-radius: 10px;
    /* border: 4px solid var(--corporate-blue); Remove border if logo has transparent bg */
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--corporate-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.tagline {
    font-family: "Arial", sans-serif;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    position: relative;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px rgba(0, 51, 102, 0.1);
    border-color: var(--corporate-blue);
}

.badge {
    position: absolute;
    top: -10px;
    right: -5px;
    background-color: var(--power-red);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
    font-family: "Arial", sans-serif;
}

.product-card h3 {
    margin-top: 0;
    color: var(--corporate-blue);
    font-family: "Arial", sans-serif;
}

.product-card .desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
}

.product-card .target {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: bold;
    font-family: "Arial", sans-serif;
}

.cta-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #ccc;
}

.btn {
    display: inline-block;
    background-color: var(--corporate-blue);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-family: "Arial", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s;
    border: 2px solid var(--corporate-blue);
}

.btn:hover {
    background-color: white;
    color: var(--corporate-blue);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--corporate-blue);
    text-decoration: none;
    font-weight: bold;
    font-family: "Arial", sans-serif;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.small {
    color: #999;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        margin-top: 0;
        border: none;
        box-shadow: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 1.8rem;
    }
}
