.software-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
}

.software-page h1 {
    font-size: 3rem;
    color: #002147;
    text-align: center;
    margin-bottom: 40px;
}

/* Grid container for two rows, two columns */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    margin-bottom: 40px;
}

/* General styles for headings within sections */
.software-overview h2,
.software-benefits h2,
.software-features h2,
.software-brochure h2 {
    font-size: 2rem;
    color: #002147;
    margin-bottom: 15px;
    border-bottom: 2px solid #002147;
    padding-bottom: 5px;
}

/* Content styling */
.software-overview p,
.software-benefits li,
.software-features li {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* List styling */
.software-benefits ul,
.software-features ul {
    list-style: disc outside;
    margin-left: 0px;
}

/* Strong element styling */
.software-page strong {
    background-color: #e1edf9;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    color: #002147;
    font-weight: 700;
}

/* Image styling */
.software-image {
    text-align: center;
}
.software-image img {
    width: 70%;
    max-width: 500px;
    height: auto;
}

/* Brochure styling */
.software-brochure {
    margin-bottom: 40px;
}
.software-brochure iframe {
    width: 100%;
    height: 900px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .software-page h1 {
        font-size: 2rem;
    }
    .software-overview h2,
    .software-benefits h2,
    .software-features h2,
    .software-brochure h2 {
        font-size: 1.8rem;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.back-button-container {
    margin: 20px 0;
    text-align: left;
}

.back-button {
    background: #002147;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background: #001f3f;
}