/* Base Styles */
:root {
    --primary-color: #1e2231;
    --secondary-color: #f7813e;
    --accent-color: #f7813e;
    --light-color: #e0e0e0;
    --dark-color: #1e2231;
    --text-color: #d8dbe2;
    --font-family: 'Helvetica Neue', Arial;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family), sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
}

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

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
}

header h1 {
    margin: 0;
    display: inline-block;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 500px;
    padding-right: 40px;
}

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c0392b;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    color: var(--light-color);
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Terms Section */
.terms {
    padding: 40px 0;
}

.terms h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.terms article {
    margin-bottom: 30px;
    color: var(--light-color);
}

.terms h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.terms ul {
    margin: 15px 0 15px 30px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header nav {
        float: none;
        margin-top: 15px;
    }

    header nav ul {
        justify-content: center;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero {
        flex-direction: column;
    }

    .hero-image {
        margin-top: 40px;
    }
}