/* Basic Reset and Variables */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light gray/off-white background */
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #2c2c2c;
    text-align: center;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 40px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.9em;
    margin: 5px;
}

.btn.primary {
    background-color: #30bb26; /* Darker green for primary action */
    color: white;
    border: 2px solid #387034;
}

.btn.primary:hover {
    background-color: #16f306;
}

.btn.secondary {
    background-color: white;
    color: #387034;
    border: 2px solid #387034;
}

.btn.secondary:hover {
    background-color: #e5f0e4;
}

/* Header/Navigation */
header.hero-section {
    background-color: #387034; /* Dark green similar to the top of the image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero-bg.jpg'); /* FAKE: Use a real image if you have one */
    background-size: cover;
    color: white;
    padding-bottom: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.nav-links a.btn.primary {
    color: white;
    background-color: #000;
    border-color: #000;
}

.hero-content {
    text-align: center;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-image {
    text-align: center;
    /* Placeholder for the main image area */
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    border-radius: 10px;
}

/* Product Display Section */
.product-display {
    text-align: center;
    padding: 50px 0;
    background-color: white;
}

.product-features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    margin-bottom: 50px;
}

.feature-item {
    width: 30%;
    padding: 15px;
}

.product-image {
    /* Placeholder for the black device image */
    height: 150px;
    background-color: #2c2c2c; /* Black/dark gray device color */
    width: 40%;
    margin: 0 auto 50px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-style: italic;
}

/* Core Features Section */
.core-features {
    text-align: center;
    padding: 40px 0;
}

.feature-card {
    width: 30%;
    display: inline-block;
    margin: 1%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Security Features Section */
.security-features {
    padding: 40px 0;
    text-align: center;
}

.security-grid {
    display: flex;
    justify-content: space-around;
    text-align: left;
    margin-top: 30px;
}

.security-grid ul {
    list-style: none;
    padding: 0;
    width: 45%;
}

.security-grid li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Supported Assets */
.supported-assets {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
}

.asset-icons {
    margin: 30px 0;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: #ccc; /* Generic placeholder color */
    border: 2px solid #387034;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    text-align: center;
}

.faq-item {
    text-align: left;
    background-color: #fff;
    padding: 20px;
    margin: 15px auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-width: 800px;
}

.faq-item h3 {
    margin-top: 0;
    color: #387034;
    text-align: left;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #90ee90;
    text-decoration: none;
}

/* Ensure the keyword is prominent */
.btn.secondary {
    font-size: 1.1em;
}