@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    line-height: 1.6;
}

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

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #000000;
}

.logo img {
    height: 24px;
    width: 24px;
}

/* Main */
main {
    flex: 1;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h1 span {
    color: #000000; /* Keep black for minimalism */
}

.hero p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 20px;
    color: #666666;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #333333;
}

.cta-button.secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.cta-button.secondary:hover {
    background-color: #F9F9F9;
}

/* Features */
.features {
    background-color: #F9F9F9;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature svg {
    height: 40px;
    width: 40px;
    color: #000000;
}

.feature h2 {
    font-size: 24px;
    font-weight: 600;
}

.feature p {
    color: #666666;
    max-width: 300px;
}

/* Getting Started */
.getting-started {
    padding: 80px 0;
    text-align: center;
}

.getting-started h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.getting-started p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: #666666;
}

.code-block {
    background-color: #F9F9F9;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

/* Legal content */
.legal-content {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content article {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000000;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #333333;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333333;
}

.legal-content a {
    color: #000000;
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link svg {
    width: 20px;
    height: 20px;
}

/* Contact */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: #666666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.faq h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #000000;
}

button[type="submit"] {
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #333333;
}

/* Footer */
footer {
    border-top: 1px solid #E5E5E5;
    padding: 24px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

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

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

    .hero {
        padding: 48px 0;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .features {
        padding: 48px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .getting-started {
        padding: 48px 0;
    }

    .getting-started h2 {
        font-size: 28px;
    }

    .code-block {
        padding: 16px;
        font-size: 12px;
    }

    .contact {
        padding: 48px 0;
    }

    .contact h2 {
        font-size: 28px;
    }

    .faq {
        padding: 48px 0;
    }

    .faq h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}