/* 全体のリセットとフォント設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

::selection {
    background: rgba(92, 106, 196, 0.2);
    color: #333;
}

:root {
    --primary-color: #fcc64d;
    --primary-hover: #e8b030;
    --secondary-color: #f8f9fa;
    --accent-color: #5c6ac4;
    --accent-hover: #4a559b;
    --dark-color: #333;
    --gray-color: #666;
    --light-gray: #eee;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --text-color: #333;
    --gradient-bg: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --hover-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --primary-light: rgba(252, 198, 77, 0.15);
}

body {
    background-color: #f9fafb;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

/* ヘッダースタイル */
header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 1.5rem;
    background: white;
    border-top: 4px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 15px 15px 0 0;
    margin: -2rem -2rem 2rem -2rem;
    color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.benefits-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.benefit-tag {
    background-color: var(--primary-light);
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-proof {
    margin: 15px 0;
    padding: 10px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.social-proof strong {
    color: var(--success-color);
}

.unique-selling-point {
    margin: 15px auto;
    max-width: 600px;
    font-size: 1.05rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-overview {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.current-step-title {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.steps-counter {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.logo h1 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(252, 198, 77, 0.25);
    letter-spacing: 1px;
}

.logo p {
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* プログレスバー */
.progress-container {
    margin: 2rem 0;
    padding: 0 1.5rem;
    padding-bottom: 1.5rem; /* ラベル表示のためのスペース */
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 1rem; /* ラベル表示のためのスペース */
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--light-gray);
    transform: translateY(-50%);
    z-index: 1;
}

.progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
    z-index: 2;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.step {
    width: 30px;
    height: 30px;
    background-color: white;
    border: 4px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gray-color);
    position: relative;
    z-index: 3;
}

.step-number {
    display: block;
    line-height: 1;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-color);
}

.step-time {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--accent-color);
    background-color: rgba(92, 106, 196, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
}

.step.active {
    border-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
}

.step.active .step-label {
    color: var(--dark-color);
    font-weight: 600;
}

.step.completed {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-label {
    color: var(--accent-color);
    font-weight: 600;
}

/* フォームスタイル */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-section {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

h3 {
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group-with-icon {
    position: relative;
}

.form-group-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
}

.form-group-with-icon input {
    padding-left: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.1);
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* ボタンスタイル */
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.next-btn, .submit-btn {
    background-color: var(--primary-color);
    color: #333;
    font-weight: 600;
}

.next-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    background: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #4a559b);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(92, 106, 196, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-main-text {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.btn-sub-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4a559b, #3a4584);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 106, 196, 0.4);
}

.prev-btn {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.prev-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.add-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px dashed var(--accent-color);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
}

.add-btn:hover {
    background-color: rgba(92, 106, 196, 0.05);
    border-color: var(--accent-hover);
}

.add-btn i {
    margin-right: 0.5rem;
}

/* 求人情報セクション */
.companies-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: white;
    background: linear-gradient(to bottom, white, #f8f9fa);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 6px 6px 0 0;
}

.companies-section h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.companies-section h3::before {
    content: '✨';
    margin-right: 10px;
    font-size: 1.4rem;
}

/* 求人一覧スクロール用コンテナ */
.jobs-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 1rem 0;
}

.jobs-container::before,
.jobs-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.jobs-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.jobs-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* 求人リストとスクロールアニメーション */
.jobs-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: scroll 60s linear infinite;
    padding: 1rem 0;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 10)); /* 求人カードの数に合わせて調整 */
    }
}

/* サマリー項目 */
.summary-item {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    line-height: 1.5;
    border-left: 3px solid var(--accent-color);
}

.summary-item:last-child {
    margin-bottom: 1.5rem;
}

/* 求人カードのスタイル */
.job-card {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: var(--hover-transition);
    position: relative;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    z-index: 10;
}

.job-card::after {
    content: '詳細を見る';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.job-card:hover::after {
    transform: translateY(0);
}

.job-card .company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.job-card .company-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 0.8rem;
}

.job-card .company-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
}

.job-card .job-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0.5rem 0;
}

.job-card .job-description {
    font-size: 0.85rem;
    color: var(--gray-color);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.job-card .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.7rem;
    font-size: 0.8rem;
}

.job-card .location {
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.job-card .location i {
    margin-right: 0.3rem;
}

.job-card .salary {
    font-weight: 600;
    color: var(--accent-color);
    background-color: rgba(92, 106, 196, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* インポートバナー */
.import-banner {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--border-color);
}

.import-banner p {
    margin-right: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    white-space: nowrap;
}

.import-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.import-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.import-quick-btn i {
    margin-right: 0.5rem;
}

.import-benefit {
    font-size: 0.7rem;
    background-color: rgba(92, 106, 196, 0.1);
    color: var(--accent-color);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 5px;
    display: block;
    text-align: center;
    font-weight: 500;
}

.import-quick-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: white;
}

.import-quick-btn i {
    margin-right: 0.5rem;
}

/* 経歴情報確認セクション */
.summary-section {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.summary-container {
    margin: 1rem 0;
}

.edit-btn {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.edit-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.edit-btn i {
    margin-right: 0.5rem;
}

.section-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.company-offer-preview {
    background-color: white;
    background: linear-gradient(to bottom, white, #f8f9fa);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.company-offer-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 6px 6px 0 0;
}

.company-offer-preview h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.company-offer-preview h3::before {
    content: '🏆';
    margin-right: 10px;
    font-size: 1.4rem;
}

.offer-limited {
    color: #e74c3c;
    font-weight: 600;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* アバター選択 */
.avatar-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-option {
    position: relative;
}

.avatar-option input[type="radio"] {
    display: none;
}

.avatar-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option span {
    font-weight: 500;
}

.avatar-option input[type="radio"]:checked + label .avatar-img {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(92, 106, 196, 0.15);
}

/* モーダルスタイル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.import-form {
    display: none;
    margin-top: 1.5rem;
}

.import-form p {
    margin-bottom: 1rem;
}

.import-form input[type="file"] {
    padding: 1rem 0;
}

.import-confirm-btn {
    margin-top: 1rem;
    width: 100%;
}

/* 削除ボタン */
.remove-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    font-size: 0.9rem;
    padding: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    display: block;
    text-align: right;
    width: 100%;
}

.remove-btn:hover {
    text-decoration: underline;
}

.entry-divider {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px dashed var(--border-color);
}

/* テスティモニアルセクション */
.testimonials-section {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.testimonials-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* プロセスセクション */
.process-section {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.process-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light-gray);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* 企業ロゴセクション */
.company-logos-section {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.company-logos-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.company-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.company-logos img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.company-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.privacy-note a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }

    header {
        padding: 1.2rem 1rem;
        margin: -1rem -1rem 1.5rem -1rem;
        border-radius: 15px 15px 0 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .avatar-selection {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo h1 {
        font-size: 2.2rem;
    }

    .logo p {
        font-size: 1rem;
    }
    
    .job-card {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .progress-container {
        margin: 1.5rem 0;
    }

    .step {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        margin-top: 6px;
    }
    
    .job-card {
        width: 220px;
    }
    
    .job-card .job-title {
        font-size: 1rem;
    }
}