
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #e4e4e7;
            background: #09090b;
            min-height: 100vh;
            padding: 20px;
        }

        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
        }

        header {
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        header h1 {
            font-size: 3.5em;
            font-weight: 900;
            font-family: 'Orbitron', sans-serif;
            background: linear-gradient(135deg, #fff 0%, #888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        header p {
            font-size: 1.2em;
            color: #71717a;
            font-weight: 300;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        section {
            background: #18181b;
            border: 1px solid #27272a;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        section:hover {
            border-color: #3f3f46;
        }

        section h2 {
            color: #fff;
            font-size: 2em;
            margin-bottom: 25px;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
            padding-bottom: 15px;
            border-bottom: 2px solid #27272a;
        }

        section h3 {
            color: #e4e4e7;
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: 500;
            font-family: 'Orbitron', sans-serif;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #e4e4e7;
            margin-bottom: 8px;
            font-size: 0.95em;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: #09090b;
            border: 1px solid #27272a;
            color: #e4e4e7;
            font-size: 1em;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #fff;
            background: #0a0a0a;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        ::placeholder {
            color: #52525b;
        }

        .char-counter {
            text-align: right;
            color: #71717a;
            font-size: 0.85em;
            margin-top: 5px;
        }

        .form-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        button {
            padding: 15px 40px;
            font-size: 1em;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        button[type="submit"] {
            background: #fff;
            color: #09090b;
            flex: 1;
        }

        button[type="submit"]:hover:not(:disabled) {
            background: #e4e4e7;
            transform: scale(1.02);
        }

        button[type="submit"]:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        button[type="reset"] {
            background: #27272a;
            color: #e4e4e7;
            border: 1px solid #3f3f46;
        }

        button[type="reset"]:hover {
            background: #3f3f46;
        }

        .form-message {
            margin-top: 20px;
            padding: 15px 20px;
            border-radius: 0;
            font-size: 0.95em;
            display: none;
        }

        .form-message.success {
            display: block;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid #22c55e;
            color: #22c55e;
        }

        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #ef4444;
        }

        .contact-info-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .contact-info-section h2 {
            grid-column: 1 / -1;
        }

        .info-card {
            background: #09090b;
            padding: 25px;
            border: 1px solid #27272a;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            border-color: #fff;
            transform: translateY(-3px);
        }

        .info-card p {
            color: #a1a1aa;
            margin: 5px 0;
        }

        .info-card a {
            color: #e4e4e7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: #fff;
        }

        .social-section {
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .social-links a {
            padding: 12px 30px;
            background: #27272a;
            color: #e4e4e7;
            text-decoration: none;
            border: 1px solid #3f3f46;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #fff;
            color: #09090b;
            border-color: #fff;
            transform: translateY(-3px);
        }
        
        .project-option {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.project-option h2 {
    color: #fff;
    margin-bottom: 15px;
}

.project-option p {
    color: #a1a1aa;
    margin-bottom: 20px;
}

.questionnaire-link,
.questionnaire-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #09090b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.questionnaire-link:hover,
.questionnaire-btn:hover {
    background: #e4e4e7;
    transform: translateY(-2px);
}

.section-divider {
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #27272a;
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider span {
    background: #09090b;
    padding: 0 20px;
    color: #71717a;
    font-weight: 600;
}

.form-notice {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    padding: 15px 20px;
    margin-bottom: 25px;
    color: #e4e4e7;
}

.form-notice a {
    color: #fff;
    text-decoration: underline;
}

        footer {
            text-align: center;
            padding: 40px 20px;
            color: #71717a;
            font-size: 0.9em;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5em;
            }

            section {
                padding: 25px;
            }

            section h2 {
                font-size: 1.5em;
            }

            .form-actions {
                flex-direction: column;
            }

            button {
                width: 100%;
            }

            .social-links {
                flex-direction: column;
            }

            .social-links a {
                width: 100%;
            }
        }

/* Prevent inputs and textareas from stretching outside container */
.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent button row from overflowing horizontally */
.form-actions {
    flex-wrap: wrap;
    justify-content: center;
}

/* On smaller screens, reduce padding further */
@media (max-width: 480px) {
    section {
        padding: 20px;
    }

    .form-actions button {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .social-links a {
        width: 100%;
        text-align: center;
    }
}
