:root {
    --primary: #FFD700;
    --primary-dark: #ccac00;
    --dark: #1E1E1E;
    --light: #F8F9FA;
    --text: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}

.logo-img {
    height: 80px;
    /* Enlarged from 40px */
    width: auto;
    margin-right: 0;
}

nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: 600;
}

nav a:hover {
    color: var(--primary-dark);
}

/* Hero */
.hero {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #ffe033;
}

/* Features */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Content Pages */
.content-page {
    padding: 4rem 0;
    flex: 1;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.text-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: #666;
    padding: 2rem 0;
    margin-top: auto;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0 10px;
    }
}