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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1c2a4d;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1c2a4d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FC9D2A;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: #FC9D2A;
    color: #1c2a4d;
}

.btn-primary:hover {
    background: #e88a1a;
}

.btn-secondary {
    background: transparent !important;
    color: #1c2a4d !important;
    border: 2px solid #1c2a4d !important;
}

.btn-secondary:hover {
    background: #1c2a4d;
    color: #fff;
}

/* Company modal */
.company-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.company-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.company-modal-card {
    position: relative;
    margin: 6vh auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 92%;
    max-width: 420px;
    padding: 24px 20px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.form-title span {
    color: #FC9D2A;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1c2a4d;
}

.form-label.required::after {
    content: " *";
    color: #FC9D2A;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FC9D2A;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: #FC9D2A;
    color: #1c2a4d;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: #e88a1a;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.form-footer a {
    color: #FC9D2A;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .form-title {
        font-size: 2rem;
    }
}

/* Error styles */
.error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.form-input.error {
    border-color: #dc3545;
}

/* Success styles */
.success {
    color: #28a745;
    font-size: 14px;
    margin-top: 5px;
}