/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5;
    color: #252525;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Main container */
.main-container {
    background-color: #f0f2f5;
    padding-bottom: 100px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px;
    color: white;
}

.header-content {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 32px;
    width: auto;
}

.nav-container {
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover {
    text-decoration: underline;
}

.apply-button {
    background-color: #e35617;
    color: white;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #d95014;
}

.desktop-apply-button {
    display: none;
    margin-left: 24px;
}

.mobile-menu-button {
    padding: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.menu-icon,
.close-icon {
    display: block;
}

.hidden {
    display: none;
}

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 64px;
    right: 16px;
    width: 192px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 16px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav-link:hover {
    text-decoration: underline;
}

.mobile-apply-button {
    margin-top: 8px;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #e35617;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.mobile-apply-button:hover {
    background-color: #d95014;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
}

.hero-section-small {
    min-height: 300px;
    padding: 40px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    text-align: center;
}

.hero-title-image {
    width: 100%;
    max-width: 672px;
    height: auto;
}

.hero-title {
    margin-top: 16px;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.14em;
}

.hero-title-break {
    display: inline;
}

.hero-subtitle {
    margin-top: 16px;
    max-width: 672px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* News Section */
.news-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-title-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.news-title-badge {
    background: linear-gradient(90deg, #0f71b2 0%, #1a7fc0 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.news-title-badge::before {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: 50%;
    height: 1px;
    background: white;
    transform: translateY(-50%);
    z-index: -1;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.news-content {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.news-item {
    padding: 24px 32px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background-color 0.2s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f8f9fa;
}

.news-date {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    min-width: 120px;
}

.news-tags {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.news-tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.news-tag.notice {
    background-color: #0f71b2;
    color: white;
}

.news-tag.recruitment {
    background-color: #e35617;
    color: white;
}

.news-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

.news-text a {
    color: #0f71b2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-text a:hover {
    color: #0d5a8f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .news-date {
        min-width: auto;
    }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-text {
        font-size: 14px;
    }
}

/* About Section */
.about-section {
    position: relative;
    background-color: #f8f7f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 0;
}

.section-container {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.about-header {
    margin-bottom: 48px;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    height: 35px;
    width: 145px;
}

.title-brush {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-title-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.about-title {
    margin-top: 16px;
    font-size: 36px;
    font-weight: bold;
    color: #252525;
    line-height: 1.4;
}

.about-content {
    display: grid;
    align-items: center;
    gap: 48px;
}

.about-text {
    font-size: 20px;
    line-height: 2.3;
    letter-spacing: 0.04em;
    color: #414141;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.about-secondary {
    margin-top: 64px;
}

.about-secondary-title {
    font-size: 30px;
    font-weight: bold;
    color: #252525;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.about-secondary-text {
    margin-top: 32px;
    font-size: 20px;
    line-height: 2.3;
    letter-spacing: 0.04em;
    color: #414141;
}

.about-secondary-text p {
    margin-bottom: 16px;
}

.about-secondary-text p:last-child {
    margin-bottom: 0;
}

/* Program Details Section */
.program-details-section {
    background-color: #f8f7f5;
    padding: 64px 0;
}

.section-heading {
    margin-bottom: 40px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #252525;
}

/* Support Details */
.support-details {
    margin-bottom: 96px;
}

.support-content {
    max-width: 768px;
    margin: 0 auto;
}

.support-list {
    margin-bottom: 24px;
}

.support-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.check-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.support-item span {
    font-weight: 500;
    color: #414141;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.support-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.support-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border: 1px solid #d1d5db;
}

.support-table td {
    padding: 12px;
    border: 1px solid #d1d5db;
}

.table-header {
    width: 25%;
    background-color: #e5e7eb;
    font-weight: 600;
    color: #414141;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.table-content {
    color: #414141;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.table-content-flex {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-content-flex span {
    font-size: 14px;
    white-space: nowrap;
}

.badge {
    display: inline-block;
    background-color: #4b5563;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 96px;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.schedule-block {
    border-radius: 8px;
    padding: 24px;
}

.vc-block {
    background-color: #0f71b2;
    color: white;
}

.startup-block {
    background-color: #e35617;
    color: white;
}

.schedule-block-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.schedule-block-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 6px;
    padding: 16px;
    width: 100%;
}

.schedule-block-title h3 {
    font-size: 20px;
    font-weight: bold;
}

.vc-block .schedule-block-title h3 {
    color: #0f71b2;
}

.startup-block .schedule-block-title h3 {
    color: #e35617;
}

.schedule-block-details {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 20px;
}

.schedule-info {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #252525;
}

.vc-block .schedule-info p {
    color: #252525;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.schedule-item p {
    color: #252525;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.schedule-event {
    margin-top: 16px;
    background-color: white;
    border: 1px solid white;
    border-radius: 6px;
    padding: 16px;
}

.vc-block .schedule-event {
    color: #252525;
}

.startup-block .schedule-event {
    color: #252525;
}

.schedule-event h4 {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.vc-block .schedule-event h4 {
    color: #0f71b2;
}

.startup-block .schedule-event h4 {
    color: #e35617;
}

.event-date {
    margin-top: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.event-note {
    margin-left: 16px;
    font-size: 12px;
    font-weight: normal;
}

.schedule-note {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: white;
}

/* Selection Process */
.selection-process {
    margin-bottom: 96px;
}

.section-header-dark {
    background-color: #414141;
    padding: 12px 0;
    text-align: center;
}

.section-header-dark h2 {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.section-header-dark p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.selection-content {
    margin-top: 48px;
}

.selection-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
}

.selection-header {
    width: 100%;
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    color: white;
}

.vc-header {
    background-color: #0f71b2;
}

.startup-header {
    background-color: #e35617;
}

.selection-icon {
    margin: 0 auto;
    width: 48px;
    height: 48px;
}

.selection-header h3 {
    margin-top: 8px;
    font-size: 20px;
    font-weight: bold;
}

.selection-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.selection-header p {
    font-size: 14px;
}

.selection-steps {
    position: relative;
}

.step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 32px;
}

.step.last-step {
    padding-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px !important;
    height: 80px !important;
    border-radius: 6px;
    color: white;
    text-align: center;
}

.vc-step {
    background-color: #0f71b2;
}

.startup-step {
    background-color: #e35617;
}

.step-label {
    font-size: 14px;
    font-weight: bold;
}

.step-digit {
    font-size: 51px !important;
    font-weight: bold;
    line-height: 1;
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 1px;
    height: 48px;
    background-color: #d1d5db;
}

.step-arrow {
    position: absolute;
    left: 28px;
    bottom: 16px;
}

.last-step .step-connector,
.last-step .step-arrow {
    display: none;
}

.step-content {
    padding-top: 8px;
    flex: 1;
}

.step-content h4 {
    font-weight: bold;
    color: #252525;
    font-size: 16px;
}

.step-content p {
    margin-top: 4px;
    font-size: 14px;
    color: #414141;
}

.step-note {
    font-size: 12px;
    color: #6b7280;
}

.selection-divider-dashed {
    border: none;
    border-top: 1px dashed #d1d5db;
    margin: 32px 0;
}

/* Grant Requirements */
.grant-requirements {
    margin-bottom: 96px;
}

.requirements-container {
    max-width: 1024px;
    margin: 0 auto;
}

.requirements-content {
    background-color: white;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.requirement-item .check-icon {
    margin-top: 4px;
}

.requirement-item span {
    color: #414141;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.requirements-note {
    margin-top: 24px;
    text-align: right;
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f7f5;
    padding: 64px 0;
}

/* FAQ Accordion Styles */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-category-title {
    padding: 16px 20px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.faq-category-title h2 {
    margin: 0;
    font-size: 18px;
}

.vc-category {
    background-color: #0f71b2;
}

.startup-category {
    background-color: #e35617;
}

.faq-category-content {
    background-color: #f8f9fa;
    padding: 0;
}

.faq-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion-trigger {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.faq-accordion-trigger:hover {
    background-color: #f1f3f4;
}

.faq-question-label {
    background-color: #0f71b2;
    color: white;
    font-weight: bold;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #252525;
    line-height: 1.5;
}

.faq-toggle-icon {
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #0f71b2;
    flex-shrink: 0;
}

.faq-accordion-content {
    display: none;
    padding: 16px 20px;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.faq-accordion-content.active {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-answer-label {
    color: #e35617;
    font-weight: bold;
    font-size: 16px;
    width: 32px;
    flex-shrink: 0;
}

.faq-answer-text {
    flex: 1;
    font-size: 16px;
    color: #252525;
    line-height: 1.6;
}

.faq-link {
    color: #0f71b2;
    text-decoration: underline;
}

.faq-link:hover {
    color: #0d639a;
}

.faq-note {
    margin-top: 32px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.faq-note p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Section Header */
.faq-section-header {
    margin-top: 64px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-title-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.faq-title-brush {
    width: auto;
    height: 80px;
}

.faq-title-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.faq-title-label {
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: 0.1em;
}

.faq-title-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact-section {
    background-color: #f8f7f5;
    padding: 64px 0;
}

.contact-section-header {
    margin-bottom: 48px;
    text-align: center;
}

.contact-title-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.contact-title-brush {
    width: auto;
    height: 80px;
}

.contact-title-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.contact-title-label {
    font-size: 14px;
    font-weight: bold;
    color: white;
    letter-spacing: 0.1em;
}

.contact-title-text {
    font-size: 20px;
    font-weight: bold;
    color: white !important;
    letter-spacing: 0.05em;
}

.contact-description {
    text-align: center;
    margin-bottom: 48px;
}

.contact-description p {
    font-size: 16px;
    color: #414141;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-description p:last-child {
    margin-bottom: 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box {
    background-color: #e8e8e8;
    padding: 32px;
    border-radius: 8px;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-icon {
    color: #414141;
    font-size: 16px;
    font-weight: bold;
}

.contact-info-header h2 {
    font-size: 18px;
    font-weight: bold;
    color: #414141;
    margin: 0;
}

.contact-details {
    color: #414141;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-detail-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-label {
    min-width: 80px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #252525;
    color: white;
}

.footer-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 48px 16px;
}

.footer-nav {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-logos {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.deloitte-logo {
    height: 32px;
    width: auto;
    color: white;
}

.footer-divider {
    border: none;
    border-top: 1px solid #4b5563;
}

.footer-copyright {
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}


.coming-soon-content {
    text-align: left;
    background: linear-gradient(135deg, #0f71b2, #1a8cc8);
    color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15, 113, 178, 0.3);
}

.coming-soon-main-message {
    text-align: center;
    padding: 0;
    background-color: transparent;
    border-radius: 8px;
    margin-bottom: 32px;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.coming-soon-message {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.coming-soon-info {
    margin-bottom: 32px;
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 8px;
}

.coming-soon-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
}

.coming-soon-list {
    list-style: none;
    text-align: left;
    margin: 0;
}

.coming-soon-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.coming-soon-list li:last-child {
    border-bottom: none;
}

.list-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #e35617;
    border-radius: 50%;
}

.list-icon::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.coming-soon-notice {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 24px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.coming-soon-notice a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.coming-soon-notice a:hover {
    color: #e35617;
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 24px;
    }
    
    .coming-soon-title {
        font-size: 36px;
    }
    
    .coming-soon-message {
        font-size: 16px;
    }
}

/* Floating Banner */
.floating-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f71b2 0%, #1a7fc0 100%);
    padding: 16px 32px;
    color: white;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(15, 113, 178, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 90%;
    animation: pulse-glow 2s infinite, subtle-bounce 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 6px 30px rgba(15, 113, 178, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(15, 113, 178, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(15, 113, 178, 0.7), 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(15, 113, 178, 0.1);
    }
    100% {
        box-shadow: 0 6px 30px rgba(15, 113, 178, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(15, 113, 178, 0.4);
    }
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.floating-banner:hover {
    background: linear-gradient(135deg, #0d639a 0%, #1573b3 100%);
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 0 10px 40px rgba(15, 113, 178, 0.8), 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.floating-banner span {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.floating-banner svg {
    margin-left: 12px;
    animation: arrow-move 1.5s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

@media (max-width: 768px) {
    .floating-banner {
        bottom: 15px;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .floating-banner span {
        font-size: 16px;
    }

    .support-table-wrapper {
        overflow-x: visible;
    }

    .support-table,
    .support-table tbody,
    .support-table tr,
    .support-table td {
        display: block;
        width: 100%;
    }

    .support-table {
        min-width: 0;
    }

    .support-table tr {
        margin-bottom: 16px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .support-table td {
        border: none;
        border-bottom: 1px solid #d1d5db;
    }

    .support-table tr:last-child td:last-child {
        border-bottom: none;
    }

    .table-header {
        border-bottom: 1px solid #d1d5db;
        font-weight: bold;
    }

    .table-content-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive styles */

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
        letter-spacing: 0.05em;
        line-height: 1.3;
    }

    .hero-title-break {
        display: block;
    }

    .hero-title-image {
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 0 20px;
    }

    .about-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-secondary-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .about-secondary-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .section-heading {
        font-size: 24px;
    }

    .support-item span {
        font-size: 16px;
    }

    .table-header,
    .table-content {
        font-size: 14px;
        padding: 8px;
    }

    .schedule-block {
        padding: 16px;
    }

    .step-content h4 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 12px;
    }

    .footer-nav {
        font-size: 12px;
        gap: 16px;
    }

    .footer-logo {
        height: 30px;
    }

    .floating-banner {
        padding: 12px 20px;
    }

    .floating-banner span {
        font-size: 14px;
    }
}

/* Medium mobile to tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 0.08em;
    }

    .about-title {
        font-size: 32px;
    }

    .about-secondary-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 28px;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .header {
        padding: 32px;
    }

    .desktop-nav {
        display: flex;
    }

    .desktop-apply-button {
        display: block;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-section {
        min-height: 700px;
    }

    .hero-section-small {
        min-height: 350px;
        padding: 60px 0;
    }

    .about-section {
        padding: 96px 0;
    }

    .about-title {
        font-size: 48px;
        letter-spacing: 0.1em;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-secondary {
        margin-top: 96px;
    }

    .about-secondary-title {
        font-size: 36px;
    }

    .program-details-section {
        padding: 96px 0;
    }

    .section-heading {
        font-size: 32px;
    }

    .table-content-flex {
        flex-direction: row;
        align-items: center;
    }

    .table-content-flex span {
        flex: 1;
    }

    .schedule-block {
        padding: 32px;
    }

    .schedule-block-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .schedule-block-title {
        width: 224px;
        flex-shrink: 0;
    }

    .selection-block {
        flex-direction: row;
    }

    .selection-header {
        width: 224px;
        flex-shrink: 0;
    }

    .step {
        gap: 24px;
    }

    .footer-logos {
        justify-content: space-between;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .about-title {
        font-size: 56px;
    }

    .about-secondary-title {
        font-size: 40px;
    }

    .section-heading {
        font-size: 36px;
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .about-title {
        font-size: 64px;
    }

    .about-secondary-title {
        font-size: 45px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .apply-button,
    .mobile-nav-link,
    .footer-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
    }

    .floating-banner {
        min-height: 50px;
    }
}

/* Public Recruitment Section */
.public-recruitment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.download-button-container {
    margin-top: 24px;
    text-align: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e35617;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #d95014;
}

.section-title {
    background-color: #0f71b2;
    color: white;
    padding: 16px 0;
    margin: 48px 0 32px 0;
    text-align: center;
}

.section-title h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.requirements-content {
    max-width: 1024px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.requirement-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #0f71b2;
    color: white !important;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}

.requirement-item p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.effort-description {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #f0f2f5;
    border-radius: 8px;
    text-align: center;
    color: #666;
    line-height: 1.6;
}

.effort-obligations-content {
    max-width: 800px;
    margin: 0 auto;
}

.obligation-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.obligation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}

.obligation-item p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.period-content {
    text-align: center;
    padding: 32px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.period-content p {
    font-size: 24px;
    font-weight: bold;
    color: #0f71b2;
    margin: 0;
}

.documents-content {
    max-width: 800px;
    margin: 0 auto;
}

.documents-info {
    margin-bottom: 24px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.documents-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.documents-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.documents-list {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.document-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.document-item:last-child {
    border-bottom: none;
}

.submission-info {
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submission-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.submission-info p {
    margin: 0 0 16px 0;
    color: #666;
    line-height: 1.6;
}

.submission-link {
    padding: 12px;
    background-color: #f0f2f5;
    border-radius: 6px;
    word-break: break-all;
}

.submission-link a {
    color: #0f71b2;
    text-decoration: underline;
}

.submission-link a:hover {
    color: #0d639a;
}

/* Application Period Section */
.application-period-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #0f71b2, #1a8cc8);
    border-radius: 12px;
    text-align: center;
}

.period-highlight {
    color: white;
}

.period-highlight p {
    margin: 10px 0;
    font-size: 1.1em;
}

.period-highlight strong {
    font-size: 1.3em;
    display: block;
    margin-bottom: 8px;
}

.period-note {
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 16px;
}

/* Schedule Section */
.schedule-section {
    margin: 40px 0;
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-date {
    background-color: #0f71b2;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
}

.schedule-detail {
    flex: 1;
    line-height: 1.6;
}

.schedule-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
}

/* Requirements Description */
.requirements-description {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #e8f4f8;
    border-radius: 8px;
    text-align: center;
    color: #0f71b2;
    font-weight: bold;
}

.requirement-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Application Documents Section Enhancements */
.page-limit-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px;
    margin: 16px 0;
    color: #856404;
}

.document-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #0f71b2;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.document-title {
    flex: 1;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.document-item:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    margin: 40px 0;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-content {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    color: #0f71b2;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 12px 0;
    border-bottom: 2px solid #0f71b2;
    padding-bottom: 8px;
}

.contact-item p {
    margin: 0;
    line-height: 1.8;
    color: #333;
}

.contact-item a {
    color: #0f71b2;
    text-decoration: underline;
}

.contact-item a:hover {
    color: #0d639a;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .application-period-section {
        padding: 20px;
        margin: 20px 0;
    }

    .schedule-item {
        flex-direction: column;
        gap: 16px;
    }

    .schedule-date {
        min-width: auto;
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-banner {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    body {
        color: black;
        background: white;
    }
}
