* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7faf7;
    color: #222;
}


/* Header */

.career-header {
    height: 70px;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    font-size: 25px;
    font-weight: 700;
    color: #0d6b2f;
}

.logo span {
    margin-right: 5px;
}

.home-btn {
    text-decoration: none;
    color: #0d6b2f;
    font-weight: 600;
}


/* Hero */

.career-hero {
    background: linear-gradient(
        135deg,
        #0d6b2f,
        #228b45
    );

    color: white;

    padding: 70px 20px;

    text-align: center;
}

.hero-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

.tagline {
    margin-top: 20px;
    font-weight: bold;
}


/* Main */

.career-section {
    padding: 60px 20px;
}

.career-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: start;
}


/* Information */

.career-info {
    padding-top: 30px;
}

.career-info h2 {
    color: #0d6b2f;
    font-size: 32px;
    margin-bottom: 20px;
}

.career-info p {
    line-height: 1.7;
    color: #555;
}

.career-points {
    margin-top: 35px;
}

.career-points div {
    margin-bottom: 22px;
}

.career-points strong {
    display: block;
    color: #0d6b2f;
    margin-bottom: 5px;
}

.career-points span {
    color: #666;
}


/* Form */

.career-form-box {
    background: #ffffff;

    padding: 35px;

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.10);
}

.career-form-box h2 {
    color: #0d6b2f;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}


/* Form Group */

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;

    font-weight: 600;

    margin-bottom: 8px;

    color: #333;
}

.form-group label span {
    color: red;
}

.form-group label small {
    font-weight: normal;
    color: #888;
}


input,
select {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d5d5d5;

    border-radius: 8px;

    font-size: 15px;

    outline: none;

    transition: 0.2s;

    background: white;
}

input:focus,
select:focus {
    border-color: #0d6b2f;

    box-shadow:
        0 0 0 3px rgba(13,107,47,0.10);
}


/* Suggestions */

.suggestions {
    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: white;

    border: 1px solid #ddd;

    border-top: none;

    border-radius: 0 0 8px 8px;

    max-height: 220px;

    overflow-y: auto;

    z-index: 100;

    display: none;
}

.suggestion-item {
    padding: 12px 14px;

    cursor: pointer;

    font-size: 14px;
}

.suggestion-item:hover {
    background: #f0f8f2;

    color: #0d6b2f;
}


/* Button */

.submit-btn {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 8px;

    background: #0d6b2f;

    color: white;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}

.submit-btn:hover {
    background: #095525;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Message */

#formMessage {
    margin-top: 15px;

    text-align: center;

    font-size: 14px;
}


/* Footer */

footer {
    text-align: center;

    padding: 25px;

    background: #0d6b2f;

    color: white;

    font-size: 14px;
}


/* Mobile */

@media (max-width: 768px) {

    .career-header {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .career-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .career-info {
        padding-top: 0;
    }

    .career-form-box {
        padding: 25px 20px;
    }

}