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

:root {
    --black: #0A0A0A;
    --soft-black: #1A1A1A;
    --teal: #156D7D;
    --teal-bright: #1A8A9E;
    --gold: #BCA678;
    --magenta: #793150;
    --white: #FFFFFF;
    --grey: #B0B0B0;
    --grey-dark: #444444;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header */
.header {
    border-top: 3px solid var(--teal);
    background-color: var(--soft-black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--teal);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: var(--teal-bright);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Space Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--grey);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #BCA678;
    color: #000000;
    border: 2px solid #FFFFFF;
}

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

.btn-secondary {
    background-color: #000000;
    color: #793150;
    border: 2px solid #793150;
}

.btn-secondary:hover {
    background-color: #793150;
    color: #FFFFFF;
}

/* Ad Zone */
.ad-zone {
    padding: 40px 0;
}

.ad-placeholder {
    background-color: var(--soft-black);
    border: 1px dashed var(--grey-dark);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
}

.ad-label {
    color: var(--grey);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
}

.categories h2 {
    font-family: 'Space Mono', monospace;
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.category-group {
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    color: var(--teal);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--grey-dark);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.form-card {
    background-color: #BCA678;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s;
    border: 2px solid #FFFFFF;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(188, 166, 120, 0.3);
}

.form-number {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.form-card p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--soft-black);
}

.about h2 {
    font-family: 'Space Mono', monospace;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--grey);
}

.about-signature {
    font-weight: 600;
    color: var(--white);
    margin-top: 30px;
}

.about-org {
    color: var(--teal);
    font-size: 16px;
}

.about-cta {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--black);
    border-radius: 8px;
    border-left: 4px solid var(--teal);
}

.about-cta strong {
    color: var(--white);
}

.product-links {
    list-style: none;
    margin-top: 15px;
}

.product-links li {
    margin-bottom: 10px;
}

.product-links a {
    color: var(--teal-bright);
    text-decoration: none;
    font-weight: 500;
}

.product-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--soft-black);
    padding: 60px 0 30px;
    border-top: 1px solid var(--grey-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    color: var(--teal);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--teal-bright);
}

.footer-bottom {
    border-top: 1px solid var(--grey-dark);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .categories h2,
    .about h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 14px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 26px;
    }
}