/* Professional Color Palette & Typography */
:root {
    --primary-navy: #1a2a3a;
    --accent-orange: #d17a22; /* Matches your orange-brown variable */
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --white: #ffffff;
}

main {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-light);
    padding: 40px 0;
    color: var(--text-dark);
    background: whitesmoke;
}

/* Section Header styling */
.section-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--accent-orange);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Content Layout */
article.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

article.content > p {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-style: italic;
}

/* Security Cards Grid */
article.content section {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-navy);
    transition: transform 0.3s ease;
}

article.content section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

article.content h2 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* List Styling with Custom Icons */
article.content ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

article.content li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

article.content li::before {
    content: "\f26a"; /* Bootstrap Icon check-circle-fill code */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #28a745; /* Security Green */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .section-header h1 { font-size: 2rem; }
    article.content ul { grid-template-columns: 1fr; }
}
/* Container for the brochure icons */
.brochure_elements_cont {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brochure_elements img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brochure_elements img:hover {
    transform: scale(1.1);
}

/* Modal Overlay (Background) */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Form Styling */
#trialForm input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#trialForm button {
    width: 100%;
    padding: 12px;
    background-color: #c7692b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#trialForm button:hover {
    background-color: #218838;
}

