/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-slate-200: #e2e8f0;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-800: #1e293b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    width: 100%;
    border-bottom: 1px solid var(--color-slate-200);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-black);
}

/* Hero Section */
.hero {
    flex: 1;
    max-width: 896px;
    margin: 0 auto;
    padding: 6rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate-600);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--color-slate-800);
}

/* Ventures Section */
.ventures {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1rem;
}

.ventures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.venture-card {
    text-align: center;
}

.venture-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-slate-500);
}

.venture-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.venture-description {
    color: var(--color-slate-600);
}

/* Footer */
.footer {
    width: 100%;
    border-top: 1px solid var(--color-slate-200);
    margin-top: auto;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    color: var(--color-slate-600);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--color-slate-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-black);
}

/* Responsive Design */
@media (min-width: 640px) {
    .nav {
        padding: 1.5rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .ventures {
        padding: 6rem 1.5rem;
    }

    .footer-content {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .ventures-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 8rem 2rem;
    }

    .ventures {
        padding: 8rem 2rem;
    }

    .footer-content {
        padding: 2rem 2rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 896px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.privacy-section p {
    color: var(--color-slate-600);
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--color-slate-600);
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: var(--color-black);
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--color-slate-800);
}

.privacy-meta {
    color: var(--color-slate-600);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .privacy-content {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .privacy-content {
        padding: 6rem 2rem;
    }
}
