/* General Styles */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 12px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2ECA92;
    text-decoration: none;
    margin: 0;
}

/* Buttons */
.button {
    background-color: #333;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #444;
}

.button-primary {
    background-color: #2ECA92;
    color: #121212;
    font-weight: bold;
}

.button-primary:hover {
    background-color: #26a87c;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2ECA92;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 60px;
}

.footer-link {
    color: #2ECA92;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Content Pages (Terms/Privacy) */
.content-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2ECA92;
}

.content-section h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2ECA92;
}

.content-section h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-section p, .content-section ul {
    font-size: 18px;
    color: #ccc;
}

.content-section ul {
    padding-left: 20px;
}

.logo-link {
    text-decoration: none;
    color: #2ECA92;
}
