:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --background-light: #f9f9f9;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header h1 {
    color: var(--primary-color);
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    background: var(--primary-color);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

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

#hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #d35400;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Services Grid */
#services {
    padding: 80px 0;
    background: var(--background-light);
}

#services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Podcast Section */
#podcast {
    padding: 80px 0;
    text-align: center;
}

/* Contact Form */
#contact {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

input, textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #ccc;
}