/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Delius', cursive;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

/* Titles use Montserrat */
h1, h2, h3, h4, h5, h6,
.nav-brand,
.platform-label {
    font-family: 'Montserrat', sans-serif;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    padding: 6rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-logo-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    width: 150px;
    height: auto;
    display: block;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #1a1a1a;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Section Header with Logo */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-logo {
    height: 48px;
    width: auto;
}

/* Section Links */
.section-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.section-link:hover {
    opacity: 0.8;
}

/* Content */
.content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content p {
    margin-bottom: 1.5rem;
}

.content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #fff;
}

.content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #e0e0e0;
}

.content ul, .content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content li {
    margin-bottom: 0.75rem;
}

/* Platform Cards */
.platform-card {
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-alt .platform-card {
    background: #2a2a2a;
}

.platform-row {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #3a3a3a;
}

.platform-row:last-child {
    border-bottom: none;
}

.platform-label {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.platform-row p {
    margin: 0;
    color: #c0c0c0;
}

.platform-row p strong {
    color: #fff;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #e0e0e0;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-box {
        padding: 1.5rem;
    }

    .hero-logo {
        width: 120px;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-logo {
        height: 40px;
    }

    .platform-row {
        padding: 1rem 1.25rem;
    }
}
