
.header {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.logo-image {
    width: 100px; /* Adjust this value based on your logo's dimensions */
    height: auto;
    margin-bottom: 20px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Courier New", Courier, monospace;
}

.cta-button:hover {
    background-color: #e5533d;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Courier New", Courier, monospace;
}

.cta-button:hover {
    background-color: #e5533d;
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Courier New", Courier, monospace;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Courier New", Courier, monospace;
}

.cta-button:hover {
    background-color: #e5533d;
}

.preparedness-message {
    background-color: #ccc;
    padding: 40px 20px;
}

.preparedness-message .container {
    column-count: 2;
    column-gap: 40px; /* Adjusts the space between columns */
}

.preparedness-message .container p {
    margin-bottom: 20px;
}

.preparedness-headline {
    color: #333;
    column-span: all; /* Ensures the headline spans across both columns */
    margin-bottom: 25px;
}



.democracy-quote {
    background-color: #444; /* Subtle background to distinguish from previous section */
    padding: 40px 20px;
    text-align: center;
}

.democracy-quote p {
    font-size: 1.5em; /* Larger text for emphasis */
    font-weight: bold;
    color: #fff;
    margin: 0;
}





/* Section Styling */


.features h2,
.features p {
    padding-bottom: 30px;
}

.features-grid {
    column-count: 2; /* Creates two columns */
    column-gap: 20px; /* Space between columns */
}

.feature-item {
    break-inside: avoid; /* Prevents items from splitting across columns */
    margin-bottom: 20px; /* Space below each item */
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile view: switch to a single column */
@media (max-width: 768px) {
    .features-grid {
        column-count: 1;
    }
}


.feature-item {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

    flex: 1 1 300px; /* Each item takes at least 300px, but grows if there’s space */
    max-width: 100%; /* Adjust to prevent overflow */

    break-inside: avoid; /* Prevents items from breaking across columns */
    margin-bottom: 20px; /* Adds vertical spacing between items */
    display: inline-block; /* Ensures items are treated individually in columns */
    width: 100%; /* Makes sure each item uses the full column width */
}

.feature-item h3 {
    margin-top: 0;
    color: #333;
}

.feature-item p {
    color: #666;
}

.feature-item ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.asterisk-note {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

.purchase {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.purchase h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.purchase p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    background-color: #222;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

.product-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6347;
}

.product-item p {
    margin-bottom: 15px;
    color: #ccc;
}

.product-item .cta-button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}

.product-image {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.shipping-note {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    font-family: "Courier New", Courier, monospace;
}
