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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.main-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 40px;
    color: white;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.company-name {
    font-size: 32px;
    font-weight: bold;
}

.tagline {
    font-size: 14px;
    color: #bfdbfe;
    margin-top: 4px;
}

.hiring-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    text-align: center;
}

.header-main h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.position-badge {
    background: white;
    color: #3b82f6;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

.info-bar {
    background: #eff6ff;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.tabs {
    border-bottom: 1px solid #e5e7eb;
    display: flex;
}

.tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab:hover {
    background: #f9fafb;
    color: #111827;
}

.tab.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6;
}

.content {
    padding: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.content h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    margin-bottom: 30px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #4b5563;
}

.content-list li::before {
    content: '▸';
    color: #3b82f6;
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.highlights {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.highlights h4 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 16px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

.highlight-text h5 {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 2px;
}

.highlight-text p {
    font-size: 12px;
    color: #6b7280;
}

.apply-section {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
}

.apply-section h4 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.input-icon.textarea-icon {
    top: 20px;
    transform: none;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    padding-left: 44px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

select {
    padding-left: 12px;
    cursor: pointer;
}

textarea {
    resize: none;
    line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2563eb;
}

.submit-btn:active {
    transform: scale(0.98);
}

.success-message {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 16px;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-direct {
    text-align: center;
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.email-direct a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.email-direct a:hover {
    text-decoration: underline;
}

.footer {
    background: #f3f4f6;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}