body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Professional Navigation */
.professional-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.brand-logo {
    background: #0066cc;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.brand-name {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0066cc;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-link:hover:after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signin-link {
    color: #4b5563;
}

.nav-button {
    background: #0066cc;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-button:hover {
    background: #0052a3;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Professional Footer */
footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 48px 0 0 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

h1, h2, h3 {
    color: #333;
}

.job-listings {
    list-style: none;
    padding: 0;
}

.job-listing {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.job-listing h2 a {
    text-decoration: none;
    color: #007bff;
}

.job-listing h2 a:hover {
    text-decoration: underline;
}

.job-detail .job-section {
    margin-bottom: 20px;
}

.job-detail ul {
    list-style: disc;
    margin-left: 20px;
}

/* Professional Job Page Styles */
.job-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}

/* Company Header Section */
.company-header-section {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.company-logo-area {
    flex-shrink: 0;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border-radius: 8px;
}

.company-info {
    flex: 1;
}

.company-name {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
}

.company-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.stat-item svg {
    color: #9ca3af;
}

/* Main Job Content */
.job-main-content {
    padding: 40px;
}

/* Job Header */
.job-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
}

.job-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 15px;
}

.meta-item svg {
    color: #9ca3af;
}

.posted-date {
    color: #10b981;
    font-weight: 500;
}

/* Apply Sections */
.apply-section-top {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.apply-button-primary {
    background: #0066cc;
    color: white;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.apply-button-primary:hover {
    background: #0052a3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.apply-button-primary.large {
    padding: 16px 48px;
    font-size: 18px;
}

.save-job-button {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.save-job-button:hover {
    border-color: #0066cc;
    color: #0066cc;
    background: #f9fafb;
}

/* Job Details Grid */
.job-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detail-card {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    color: #0066cc;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.section-content {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.styled-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 28px;
    margin-bottom: 12px;
    filter: grayscale(30%);
}

.benefit-item h4 {
    margin: 0 0 10px 0;
    color: #111827;
    font-size: 18px;
}

.benefit-item p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* About Company Section */
.about-company-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

/* Apply Section Bottom */
.apply-section-bottom {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 40px;
}

.apply-section-bottom h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 10px;
}

.apply-section-bottom p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
}

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-primary {
    background-color: #28a745;
}

.btn-primary:hover {
    background-color: #1e7e34;
}

.application-form .form-group {
    margin-bottom: 15px;
}

.application-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="url"],
.application-form input[type="file"],
.application-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important to prevent overflow */
}

.application-form textarea {
    resize: vertical;
}

.application-form button[type="submit"] {
    margin-top: 10px;
}

/* Application Form Styles */
.application-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Progress Bar */
.progress-bar-container {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    border: 2px solid #e5e7eb;
}

.progress-step.active .step-number {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.step-label {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: #0066cc;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 10px;
    position: relative;
    top: -28px;
}

/* Job Apply Header */
.job-apply-header {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.apply-position-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.apply-position-meta {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

/* Form Container */
.application-form-container {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.section-description {
    color: #6b7280;
    margin: 0 0 24px 0;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.application-form .form-group {
    margin-bottom: 24px;
}

.application-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #ef4444;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="url"],
.application-form input[type="file"],
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
    background: white;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

/* Error Message */
.error-message {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message svg {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.btn-primary {
    background: #0066cc;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    color: #6b7280;
    padding: 12px 24px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* File Upload Styling */
.file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.2s;
}

.file-upload-area:hover {
    border-color: #0066cc;
    background: #eff6ff;
}

.uploaded-file {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Basic responsive design for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .progress-bar {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        display: none;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
} 