/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

.pt40 {
    padding-top: 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4A5568;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo img {
    height: 30px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.nav-link {
    color: #2D3748;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #C6A353;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C6A353, #D4AF37);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4A5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #F7FAFC;
    color: #C6A353;
}

.btn-contact {
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 163, 83, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2D3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(247, 250, 252, 0.8) 50%, 
        rgba(237, 242, 247, 0.9) 100%),
        url('./images/tuning4.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.highlight {
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4A5568;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    color: white;
    box-shadow: 0 4px 15px rgba(198, 163, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 163, 83, 0.4);
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 2px solid #E2E8F0;
}

.btn-secondary:hover {
    background: #F7FAFC;
    border-color: #C6A353;
    color: #C6A353;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2D3748;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    margin-top: 1rem;
}

/* Positions Section */
.positions {
    padding: 6rem 0;
    background: #F7FAFC;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #E2E8F0;
}

.position-card.featured {
    border: 2px solid #C6A353;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-icon-tuner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(102, 126, 234), rgb(90, 103, 216));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon-tuner i {
    font-size: 2rem;
    color: white;
}

.card-subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #4A5568;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C6A353;
    font-weight: bold;
}

.card-salary {
    border-top: 2px solid #E2E8F0;
    padding-top: 1.5rem;
    text-align: center;
}

.salary-range {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.salary-note {
    color: #718096;
    font-size: 0.9rem;
}

/* Job Details Section */
.job-details {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.job-course {
    margin-bottom: 5rem;
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.job-course:last-child {
    margin-bottom: 0;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.course-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
}

.course-icon i {
    font-size: 2rem;
    color: white;
}

.course-title h3 {
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.course-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-badge.beginner {
    background: linear-gradient(135deg, #4ECDC4, #44A3A1);
    color: white;
}

.course-badge.professional {
    background: linear-gradient(135deg, #667EEA, #5A67D8);
    color: white;
}

.course-description {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.job-section {
    margin-bottom: 3rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.job-type-header i {
    font-size: 1.5rem;
    color: #C6A353;
    width: 30px;
}

.job-type-header h4 {
    color: #2D3748;
    margin: 0;
    font-size: 1.5rem;
}

.job-section p {
    color: #4A5568;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.job-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-images img {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Technical course specific styling */
.technical-course .course-icon {
    background: linear-gradient(135deg, #667EEA, #5A67D8);
}

.technical-course .job-type-header i {
    color: #667EEA;
}

@media (max-width: 768px) {
    .job-course {
        padding: 2rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .course-title {
        text-align: center;
    }
    
    .job-section {
        margin-bottom: 2.5rem;
    }
    
    .job-type-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .job-images {
        gap: 1rem;
    }
    
    .job-images img {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .job-course {
        padding: 1.5rem;
    }
    
    .course-description {
        font-size: 1rem;
    }
    
    .job-section p {
        font-size: 1rem;
    }
    
    .job-type-header h4 {
        font-size: 1.25rem;
    }
    
    .job-images img {
        height: 150px;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #EDF2F7, #F7FAFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    border: 3px solid #E2E8F0;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #C6A353;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #2D3748;
}

.feature-item p {
    color: #718096;
}

/* 募集要項セクション */
.job-description {
    padding: 6rem 20px;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

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

.job-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2D3748;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.job-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    border-radius: 2px;
}

/* 募集要項テーブル */
.job-description table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #E2E8F0;
}

.job-description thead {
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
}

.job-description thead th {
    padding: 2rem 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.job-description thead th:first-child {
    width: 20%;
    background: transparent;
}

.job-description thead th:last-child {
    border-right: none;
}

/* カテゴリ名のスタイリング */
.cleaning-category-name {
    background: linear-gradient(135deg, #C6A353, #D4AF37) !important;
    position: relative;
}

.cleaning-category-name i {
    margin-right: 10px;
}

.tuning-category-name {
    background: linear-gradient(135deg, #667EEA, #5A67D8) !important;
    position: relative;
}

.tuning-category-name i {
    margin-right: 10px;
}

/* テーブルボディ */
.job-description tbody tr {
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.job-description tbody tr:hover {
    background: #F7FAFC;
}

.job-description tbody tr:last-child {
    border-bottom: none;
}

.job-description tbody td {
    padding: 1rem 0.5rem;
    vertical-align: top;
    border-right: 1px solid #E2E8F0;
    line-height: 1.7;
}

.job-description tbody td:last-child {
    border-right: none;
}

/* 項目名（左列）のスタイル */
.head-name {
    background: linear-gradient(135deg, #EDF2F7, #F7FAFC);
    font-weight: 600;
    color: #2D3748;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    width: 20%;
}

.head-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

/* セル内容のスタイル */
.job-description tbody td:not(.head-name) {
    color: #4A5568;
    font-size: 1rem;
}

/* 報酬制度セルの特別スタイリング */
.job-description tbody tr:nth-child(5) td:not(.head-name) {
    font-weight: 500;
}

.job-description tbody tr:nth-child(5) td:not(.head-name) br + span,
.job-description tbody tr:nth-child(5) td:not(.head-name) span {
    color: #C6A353;
    font-weight: 600;
}

/* 改行を含むセルの調整 */
.job-description tbody td br {
    margin-bottom: 0.5rem;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .job-description {
        padding: 4rem 0;
    }
    
    .job-description table {
        font-size: 0.9rem;
    }
    
    .job-description thead th,
    .job-description tbody td {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .job-description {
        padding: 3rem 20px;
    }
    
    .job-description .container {
        padding: 0 15px;
    }
    
    .job-description table {
        border-radius: 15px;
        margin: 0 -5px;
    }
    
    .job-description thead th {
        padding: 1.5rem 0.75rem;
        font-size: 1rem;
    }
    
    .job-description tbody td {
        padding: 1.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .head-name {
        font-size: 1rem;
    }

    .job-description tbody td:not(.head-name) {
    color: #4A5568;
    font-size: 0.8rem;
    }
    
    .cleaning-category-name::before,
    .tuning-category-name::before {
        font-size: 1.2rem;
    }
}

/* 特別な強調表示 */
.job-description tbody tr:nth-child(odd) {
    background: rgba(247, 250, 252, 0.5);
}

.job-description tbody tr:nth-child(odd):hover {
    background: rgba(237, 242, 247, 0.8);
}

/* アニメーション */
.job-description.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.job-description.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #F7FAFC;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C6A353, #D4AF37);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(198, 163, 83, 0.3);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #2D3748;
}

.step-content p {
    color: #718096;
}

/* Application Section */
.application {
    padding: 6rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
}

.application-form {
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2D3748;
}

.form-label.required::after {
    content: '必須';
    background: #C6A353;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F7FAFC;
}

.form-input:focus {
    outline: none;
    border-color: #C6A353;
    background: white;
    box-shadow: 0 0 0 3px rgba(198, 163, 83, 0.1);
}

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

.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

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

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.radio-item input[type="radio"]:checked + .radio-custom {
    border-color: #C6A353;
}

.radio-item input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #C6A353;
    border-radius: 50%;
}

.file-upload {
    position: relative;
}

.file-input {
    display: none;
}

.file-label {
    display: block;
    padding: 2rem;
    border: 2px dashed #C6A353;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F7FAFC;
}

.file-label:hover {
    background: #EDF2F7;
    border-color: #D4AF37;
}

.file-label i {
    font-size: 2rem;
    color: #C6A353;
    margin-bottom: 1rem;
    display: block;
}

.file-list {
    list-style: none;
    margin-top: 1rem;
}

.file-list li {
    background: #F7FAFC;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: #4A5568;
}

.file-list li i {
    color: #C6A353;
    margin-right: 0.5rem;
}

.contact-info {
    margin-top: 4rem;
    text-align: center;
}

.contact-card {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #E2E8F0;
    margin-top: 1rem;
}

.contact-card h4 {
    color: #2D3748;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #4A5568;
}

/* Footer */
.footer {
    background: #2D3748;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: #E2E8F0;
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .position-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .position-card.featured {
        transform: none;
    }

    .card-icon {
        margin: 0 auto 2rem auto;
    }

    .card-features {
        text-align: left;
        width: fit-content;
    }

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

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        margin: auto;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }

    .position-card {
        padding: 2rem 1.5rem;
    }
}
