/* Ascenda Books Brand Styles */
:root {
    --primary: #1a2a3a;
    --accent: #3498db;
    --text: #333;
    --light: #f4f7f6;
    --white: #ffffff;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; color: var(--text); line-height: 1.7; }
.container { max-width: 900px; margin: 0 auto; padding: 60px 20px; }

/* Navigation */
nav { background: var(--white); padding: 20px 0; border-bottom: 3px solid var(--primary); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { font-weight: bold; font-size: 1.5rem; letter-spacing: 1px; color: var(--primary); }
.logo span { color: var(--accent); }
.links a { text-decoration: none; color: var(--text); margin-left: 25px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.links a.active, .links a:hover { color: var(--accent); }

/* Hero */
.hero { background: var(--primary); color: var(--white); padding: 80px 20px; text-align: center; }
.hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.hero-logo { max-width: 350px; height: auto; margin-bottom: 20px; display: block; margin-left: auto; margin-right: auto; }

/* Buttons & Lists */
.btn { background: var(--accent); color: var(--white); padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: #2980b9; }

.divider { border: 0; border-top: 1px solid #ddd; margin: 40px 0; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before { content: "✔"; color: var(--accent); position: absolute; left: 0; font-weight: bold; }

.contact-card { background: var(--light); padding: 40px; border-radius: 10px; display: inline-block; min-width: 300px; }

footer { background: var(--primary); color: var(--white); text-align: center; padding: 40px 20px; margin-top: 60px; }
footer p { margin: 0; font-size: 0.9rem; }