/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --ink-black: #1a1a1a;
    --neon-lime: #39ff14;
    --electric-cobalt: #0066ff;
    --soft-gray: #f5f5f5;
    --medium-gray: #666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ink-black);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

a {
    color: var(--electric-cobalt);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--neon-lime);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--electric-cobalt);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0052cc;
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--electric-cobalt);
    border: 2px solid var(--electric-cobalt);
}

.btn-secondary:hover {
    background-color: var(--electric-cobalt);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-black);
}

.nav a {
    color: var(--medium-gray);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--electric-cobalt);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--soft-gray), var(--white));
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
    color: var(--ink-black);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background-color: var(--soft-gray);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-split.reverse .content-image {
    order: -1;
}

.content-text {
    text-align: left;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image svg {
    max-width: 100%;
    height: auto;
}

.content-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--ink-black);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--ink-black);
}

.close {
    color: var(--medium-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--ink-black);
}

.modal-body {
    padding: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--ink-black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand p {
    color: #ccc;
    margin-top: 1rem;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .content-split.reverse .content-image {
        order: 0;
    }

    .content-text {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 60px 0;
    }

    .content-section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-items: center;
    }

    .header-content {
        gap: 2rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        display: none;
    }
}