﻿ 

body {
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.job-card {
    max-width: 650px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 8px solid #c7a559;
}

h2.title {
    text-align: center;
    color: #c7a559;
    font-weight: 800;
    margin-bottom: 25px;
}

label {
    font-weight: 600;
    color: #333;
}

.btn-gold {
    background: #c7a559;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 18px;
    transition: 0.3s;
}

    .btn-gold:hover {
        background: #b8924e;
    }