:root {
  --primary-color: #6366F1; /* Indigo 500 */
  --secondary-color: #4F46E5; /* Indigo 600 */
  --accent-color: #F43F5E; /* Rose 500 */
  --bg-dark: #111827; /* Gray 900 */
  --bg-card: #1F2937; /* Gray 800 */
  --text-light: #F9FAFB; /* Gray 50 */
  --text-muted: #D1D5DB; /* Gray 300 */
  --border-color: rgba(99, 102, 241, 0.2);
  --heading-font: 'Playfair Display', serif;
  --main-font: 'Open Sans', sans-serif;
}

body {
    font-family: var(--main-font);
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--text-light);
}

.logo-font {
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: var(--text-light);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 6px;
  border: none;
  display: inline-block;
  font-weight: 600;
  font-family: var(--main-font);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #E11D48;
  transform: translateY(-2px);
}

.cookie-btn-alt {
  background-color: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.cookie-btn-alt:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--text-light);
  color: var(--text-light);
}

.mobile-menu {
    display: none;
    flex-direction: column;
}
.mobile-menu.active {
    display: flex;
}

.dark-gradient {
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 1));
}

.card-feature {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.card-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Form Styles for Dark Theme */
input, textarea {
    background-color: #374151; /* Gray 700 */
    color: var(--text-light);
    border: 1px solid #4B5563;
}
input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}