body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1e2a38;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-y: scroll;
}

/* Background grid for a cyber-security look */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

header {
    background-color: #0e3e26;
    padding: 20px;
    text-align: center;
    position: relative;
}

header h1 {
    color: #61c083;
    font-size: 5em;
    font-family: monospace;
    margin: 0;
}

header p {
    font-size: 1.5em;
    margin: 10px 0;
    color: #cfd2d6;
}

.section {
    padding: 40px;
    text-align: center;
    position: relative;
    min-height: 60vh;
}

.benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.benefit-item {
    background: rgba(97, 192, 131, 0.15);
    border: 1px solid #61c083;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(97, 192, 131, 0.3);
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #61c083;
}

.cta-button {
    background-color: #ff8c42;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-shadow: 0 0 5px #ffffff;
}

.cta-button:hover {
    background-color: #e6772e;
    box-shadow: 0 0 15px #ff8c42;
}

footer {
    background-color: #0e3e26;
    color: #cfd2d6;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    position: relative;
    min-height: 20vh;
}

/* Adding decorative elements */
.cyber-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #61c083;
    border-radius: 10px;
    opacity: 0.2;
}