/* Main Visual Styles */
.main_visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main_visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hide SP image by default on PC */
.sp_main {
    display: none;
}

/* Show SP image on mobile */
@media (max-width: 767px) {
    .pc_main {
        display: none;
    }
    
    .sp_main {
        display: block;
    }
}

/* Base Styles */
:root {
    --primary-color: #ffd700;
    --text-color: #333;
    --light-bg: #f8faff;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* ヘッダーの高さ分の余白を確保 */
}

body {
    padding-top: 0; /* ヘッダーの下の余白を削除 */
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Main container for content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Breakpoints */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
}

/* Medium devices (tablets, 768px and up) */
/* Tablet and desktop specific styles */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .header-logo {
        margin-bottom: 0;
    }
    
    .nav a {
        margin-left: 20px;
        font-size: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        padding: 0 30px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Mobile Styles (under 768px) */
/* Mobile specific styles */
@media (max-width: 767px) {
    body {
        padding-top: 0; /* ヘッダーの下の余白を削除 */
    }
    
    .header-logo-img {
        width: 80px; /* スマホでは少し小さく */
    }
    
    .nav a {
        font-size: 14px;
        padding: 6px 12px;
        margin-left: 10px;
    }
    html {
        font-size: 15px;
    }
    
    .application-form-section {
        padding: 30px 0;
        margin: 40px 0;
    }
    
    .application-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .submit-button {
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-visual-image {
        height: 250px !important;
        object-fit: cover;
    }
    
    .problem-box {
        width: 95%;
        padding: 15px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr !important;
    }
    
    .reason-box {
        margin-bottom: 20px;
    }
    
    .flow-grid {
        grid-template-columns: 1fr !important;
    }
    
    .flow-box {
        margin-bottom: 20px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr !important;
    }
    
    .achievement-box {
        margin-bottom: 20px;
    }
}

/* Tablet Styles */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reasons-grid,
    .flow-grid,
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 0;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px; /* 標準的なヘッダーの高さ */
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-logo-img {
    width: 200px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.header-logo-img:active {
    transform: scale(0.95);
}

.nav {
    display: flex;
    align-items: center;
}
.nav a {
    color: #ffd700;
    margin-left: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #ffd700;
    border-radius: 20px;
    white-space: nowrap;
    border: 2px solid #ffd700;
    border-radius: 30px;
}

.nav a:hover {
    background-color: #ffd700;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav a:active {
    transform: translateY(0);
}

.main-visual {
    width: 100%;
    height: auto;
}

.main-visual-image {
    width: 100%;
}
.main_visual img.sp_main {
    display: none;
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    .main_visual img.pc_main {
        display: none;
    }
    .main_visual img.sp_main {
        display: block;
    }
}

.main-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}
.main-text h1 {
    font-size: 2.0em;
    margin: 0 0 20px 0;
    line-height: 1.3;
}
.main-text p {
    font-size: 1.2em;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.section1 {
    text-align: center;
    margin: 40px 0;
    padding: 0 15px;
}

.section1 h2 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section1 h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.qualification-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.qualification-box {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualification-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.qualification-header {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.qualification-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.4em;
    display: flex;
    align-items: center;
}

.qualification-header h3 i {
    margin-right: 10px;
    font-size: 1.2em;
}

.qualification-list {
    text-align: left;
    padding: 0 10px;
}

.qualification-list p {
    margin: 0 0 15px 0;
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px dashed #eee;
}

.qualification-list p:last-child {
    border-bottom: none;
}

.qualification-list p:before {
    content: '•';
    color: #ffd700;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Tablet and Desktop Styles */
@media screen and (min-width: 768px) {
    .qualification-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .qualification-box {
        flex: 1;
        min-width: 300px;
        max-width: calc(50% - 20px);
        margin: 10px;
    }
}

/* Problem box styles (keeping for backward compatibility) */
.problem-box {
    width: 100%;
    margin: 20px auto;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    text-align: left;
    display: none; /* Hidden by default, using new layout */
}

.section2 {
    text-align: center;
}
.highlight-text {
    text-align: center;
    padding: 20px;
    background-color: #f8f8ff;
    width: 100%;
}
.highlight-text h2 {
    font-size: 1.5em;
    line-height: 1.8;
    margin: 20px;
    color: #333;
}
.highlight-text img {
    max-height: 50px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.service-box {
background-color: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
text-align: center;
}

.service-icon {
margin-bottom: 15px;
}

.service-icon i {
font-size: 1.5em;
color: #ffd700;
background-color: #f8f8ff;
padding: 15px;
border-radius: 50%;
transition: transform 0.3s;
}

.service-icon i:hover {
transform: scale(1.1);
}

.service-box h3 {
color: #082333;
margin-bottom: 10px;
font-size: 1.3em;
}

.service-box p {
color: #333;
line-height: 1.6;
margin: 0;
font-size: 13px;
}

.section3 h2 {
    margin: 50px;
}

.section4 {
    background-color: #f8f8ff;
    padding: 10px 0;
    margin-top: 40px;
}
.section4 {
    text-align: center;
    margin: 40px 0;
    padding: 50px 15px;
}

.section4 h2 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section4 h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.reason-box {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.reason-icon span {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: #ffd700;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    box-shadow: 0 4px 8px rgba(28, 126, 184, 0.2);
}

.reason-content {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.reason-content h3 {
    color: #ffd700;
    margin: 15px 0 10px;
    font-size: 1.4em;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.reason-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffd700;
}

.reason-content p {
    color: #555;
    line-height: 1.7;
    margin: 15px 0 0;
    font-size: 15px;
    text-align: left;
}

.reason-image {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.reason-box:hover .reason-image img {
    transform: scale(1.03);
}

/* Tablet and Desktop Styles */
@media screen and (min-width: 768px) {
    .reason-box {
        flex-direction: row;
        padding: 30px;
        align-items: flex-start;
    }
    
    .reason-icon {
        flex: 0 0 80px;
        margin-bottom: 0;
        margin-right: 25px;
    }
    
    .reason-icon span {
        width: 60px;
        height: 60px;
        font-size: 24px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .reason-content {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
        padding-right: 20px;
    }
    
    .reason-content h3 {
        text-align: left;
        padding-left: 0;
    }
    
    .reason-content h3:after {
        left: 0;
        transform: none;
    }
    
    .reason-image {
        flex: 0 0 300px;
        margin-top: 0;
    }
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.achievement-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
max-width: 600px;
margin: 0 auto;
}

.achievement-icon {
    margin-bottom: 15px;
    text-align: center;
}

.achievement-icon i {
    font-size: 1.5em;
    color: #ffd700;
    background-color: #f8f8ff;
    padding: 15px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.achievement-icon i:hover {
    transform: scale(1.1);
}

.achievement-box h3 {
    color: #082333;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-align: center;
}

.achievement-box p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 13px;
    text-align: center;
}

.flow {
    background-color: #f8f8ff;
    padding: 10px 0;
    margin-top: 40px;
}

.flow .company-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.flow-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.flow-box {
    background-color: #f8f8ff;
    padding: 10px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: #ffd700;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0em;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(28, 126, 184, 0.3);
}

.flow-icon {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.flow-box h3 {
    color: #082333;
    margin-bottom: 10px;
    font-size: 1.0em;
    font-weight: 500;
}

.flow-line {
    font-size: 24px;
    margin: 0 10px;
    color: #ffd700;
}

.flow-arrow {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 20px;
}

.flow-box:last-child .flow-arrow {
    display: none;
}

.company-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.info-item .title {
    font-weight: bold;
    color: #ffd700;
    min-width: 100px;
}

.info-item .text {
    margin: 0;
    font-size: 1.0em;
    line-height: 1.6;
}

.cta-section {
    padding: 30px 0;
    background-color: #082333;
    text-align: center;
}

.cta-content {
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
}

section h2 {
    font-size: 1.7em;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.contact-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

.phone i {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #ffd700;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1565A0;
}

.footer {
    background-color: #082333;
    padding: 10px;
    text-align: center;
}

.footer p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}

/* Application Form Styles */
.application-form-section {
    background-color: #f8faff;
    padding: 60px 0;
    margin-top: 60px;
}

.form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.application-form-section {
    background-color: #fff;
    padding: 40px 0;
    margin: 60px 0;
}

.application-form {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
}

/* Honeypot field */
.hidden {
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Form elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* File upload */
.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background-color: #f0f7ff;
}

.file-upload i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-upload input[type="file"] {
    display: none;
}

/* Buttons */
.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
}

.submit-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Checkbox Styles */
.checkbox-wrap {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    user-select: none;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    margin-left: 10px;
    font-weight: normal;
}

/* Required field indicator */
.required {
    color: #e74c3c;
    margin-left: 4px;
    font-size: 0.9em;
}

.application-form-section h2 {
    color: #ffd700;
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 10px;
}

.application-form-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd700;
}

.form-description {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

.privacy-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    padding: 2px 8px;
    border-radius: 4px;
}

.privacy-link:hover {
    color: white;
    background-color: #156090;
    text-decoration: none;
    transform: translateY(-1px);
}

.privacy-link:focus {
    outline: 2px solid #156090;
    outline-offset: 2px;
    border-radius: 4px;
    background-color: rgba(21, 96, 144, 0.1);
}

.application-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 100%;
}

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

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

.required {
    color: #e74c3c;
    font-size: 0.9em;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(28, 126, 184, 0.2);
    outline: none;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
}

.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.file-upload:hover {
    border-color: #ffd700;
    background-color: #f0f7ff;
}

.file-upload i {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 10px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-name {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

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

.submit-button {
    background-color: #ffd700;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(28, 126, 184, 0.3);
}

.submit-button:hover {
    background-color: #156090;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28, 126, 184, 0.4);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .application-form {
        padding: 20px 15px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .submit-button {
        width: 100%;
        padding: 16px;
    }
}

/* Privacy Policy Section */
.privacy-policy {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 60px;
}

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

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.privacy-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
    padding-bottom: 15px;
}

.privacy-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.privacy-content h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.3em;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.privacy-content ul {
    margin: 15px 0 25px 20px;
    padding: 0;
}

.privacy-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.privacy-content ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.back-to-top {
    text-align: center;
    margin-top: 40px;
}

.back-top-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-top-link:hover {
    background-color: #e6c200;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
