/* --- Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #c41e3a; /* Deep "Cardinal" Red */
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

/* --- Navigation --- */
nav {
    background-color: rgba(10, 10, 10, 0.95);
    text-align: center;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

nav a {
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.6); /* Darkens image */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
    font-style: italic;
}

/* --- Layout --- */
.container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* --- Cards --- */
.content-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 3px solid var(--primary-color);
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

/* --- Features & Forms --- */
.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

input, textarea {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: var(--text-light);
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #a31630;
    transform: translateY(-2px);
}

footer {
    background-color: #080808;
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #222;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .container { margin: 2rem auto; }
}
