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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2563eb;
    --accent-color: #0ea5e9;
    --text-color: #333;
    --text-light: #666;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border-color: #e2e8f0;
    --spacing-unit: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    margin: 0;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mission-statement {
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: var(--background-alt);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.mission-statement p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

.mission-statement strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Visual Element */
.visual-element {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-in;
}

.profile-container a {
    display: block;
    cursor: pointer;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-container a:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.human-captcha-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.human-captcha {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    white-space: nowrap;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.human-captcha-link:hover .human-captcha {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.captcha-checkbox {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-checkbox input[type="checkbox"] {
    appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    background: white;
    margin: 0;
}

.captcha-checkbox input[type="checkbox"]:checked {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.captcha-checkbox label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    width: 18px;
    height: 18px;
    fill: white;
}

.captcha-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.captcha-logo {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border-color);
}

.captcha-icon {
    font-size: 16px;
    line-height: 1;
}

.captcha-label {
    font-size: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* CTA Section */
.cta-section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    max-width: 300px;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Values Section */
.values {
    padding: 1.5rem 0 2rem;
    background: var(--background-alt);
    margin: 0 -2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-item {
    text-align: center;
    padding: 1rem 0.75rem;
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Footer */
footer {
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.85rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    header {
        padding: 1.5rem 0;
    }

    .hero {
        padding: 3rem 0 4rem;
        gap: 2rem;
    }

    .mission-statement {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .mission-statement p {
        font-size: 1.1rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values {
        padding: 3rem 0 4rem;
        margin: 0 -1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.75rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .mission-statement p {
        font-size: 1rem;
    }

    .human-badge svg {
        width: 100px;
        height: 100px;
    }
}

/* Print Styles */
@media print {
    .cta-button {
        display: none;
    }
}