/* Hero Section - Monopo Saigon Style */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    z-index: 10;
    background: 
        radial-gradient(ellipse at 20% 30%, rgb(0, 0, 0) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgb(0, 63, 134) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgb(0, 0, 0) 0%, transparent 60%),
        linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
    background-size: 200% 200%, 250% 250%, 300% 300%, 100% 100%;
    animation: saigonFlow 18s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 73, 133, 0.8) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.7;
    animation: floatSoft 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 50%;
    height: 80%;
    background: 
        radial-gradient(ellipse at center, rgba(255, 149, 10, 0.9) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.5;
    animation: floatSoft 30s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes saigonFlow {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    }
    33% {
        background-position: 100% 50%, 0% 50%, 80% 20%, 0% 0%;
    }
    66% {
        background-position: 50% 100%, 50% 0%, 20% 80%, 0% 0%;
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(-20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(20px, -20px) scale(0.95);
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes waveSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes liquidMetal {
    0%, 100% { 
        background-position: 0% 0%;
        filter: brightness(1) contrast(1);
    }
    33% { 
        background-position: 100% 0%;
        filter: brightness(1.2) contrast(1.1);
    }
    66% { 
        background-position: 100% 100%;
        filter: brightness(0.9) contrast(1.2);
    }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(-15%, 0%); }
    90% { transform: translate(10%, 5%); }
}

.hero-content {
    max-width: 650px;
    padding: 60px 50px;
    text-align: left;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(30px) saturate(120%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.hero-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #2c2c2c;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: 'Goldman', sans-serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title .highlight {
    color: rgb(255, 187, 0);
    display: block;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: rgba(44, 44, 44, 0.9);
    font-weight: 400;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 0 35px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    flex-wrap: wrap;
}

.hero-btn-wrapper {
    position: relative;
}

.hero-btn-wrapper:not(:last-child) {
    position: static;
}

.hero-btn {
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 550;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: 'Goldman', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    border-radius: 8px;
}

.hero-btn-wrapper:last-child:hover .hero-dropdown,
.hero-dropdown:hover {
    opacity: 1;
    visibility: visible;
}

/* Arrow pointer */
.hero-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: #000;
}

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

.hero-btn-primary {
    background: rgb(255, 187, 0);
    color: #000000;
    border: 3px solid rgb(255, 187, 0);
}

.hero-btn-primary::before {
    background: #000000;
}

.hero-btn-primary:hover::before {
    left: 0;
}

.hero-btn-primary:hover {
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 3px solid #1a1a1a;
}

.hero-btn-secondary::before {
    background: #1a1a1a;
}

.hero-btn-secondary:hover::before {
    left: 0;
}

.hero-btn-secondary:hover {
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes breathe {
    0%, 100% {
        background-size: 150% 150%, 200% 200%, 100% 100%;
        opacity: 1;
    }
    50% {
        background-size: 180% 180%, 230% 230%, 100% 100%;
        opacity: 0.95;
    }
}

@keyframes contrastPulse {
    0%, 100% { --pulse: 0.2; }
    50% { --pulse: 0.6; }
}

/* Hero Image Styling - Full Background */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    width: 95%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.8) 60%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.8) 60%, black 100%);
}

/* Hero Video Styling (fallback) */
.hero-videos {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* FAQ Section - Simple */
.faq-section {
    padding: 40px 20px 100px 20px;
    background: #ffffff;
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -25%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(49, 36, 0, 0.85) 0%, rgba(255, 187, 0, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatCircle1 32s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 73, 133, 0.42) 0%, rgba(0, 73, 133, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatCircle2 38s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 300;
    color: rgb(255, 187, 0);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding-top: 16px;
    color: #666;
    line-height: 1.7;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply to Us Section with Video Background */
.apply-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.apply-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.apply-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.apply-content-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.apply-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.apply-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.apply-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    text-align: left;
}

.perk-item svg {
    stroke: rgb(255, 187, 0);
    flex-shrink: 0;
}

.apply-google-form-btn {
    padding: 18px 50px;
    background: rgb(255, 187, 0);
    color: #000000;
    border: 3px solid rgb(255, 187, 0);
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Goldman', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-google-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: all 0.5s ease;
    z-index: -1;
}

.apply-google-form-btn:hover::before {
    left: 0;
}

.apply-google-form-btn:hover {
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 187, 0, 0.4);
}

/* Startup Section - Centered Professional Design */
.startup-section {
    padding: 100px 20px;
    background: #ffffff;
    background-size: 200% 200%;
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}

.startup-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 60%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.3) 0%, rgba(255, 187, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatCircle1 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.startup-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -30%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(0, 73, 133, 0.45) 0%, rgba(0, 73, 133, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatCircle2 35s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(-80px, -60px) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-120px, 20px) scale(1.15);
        opacity: 1;
    }
    75% {
        transform: translate(-60px, 80px) scale(1.05);
        opacity: 0.85;
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(100px, -70px) scale(1.15);
        opacity: 0.85;
    }
    50% {
        transform: translate(140px, 30px) scale(1.2);
        opacity: 0.9;
    }
    75% {
        transform: translate(70px, 100px) scale(1.1);
        opacity: 0.75;
    }
}

.startup-section .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.startup-video-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.startup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.startup-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.startup-video-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.startup-video-overlay p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.startup-description-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.startup-description-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.startup-approach {
    text-align: center;
    padding: 30px;
    background: rgba(255, 187, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgb(255, 187, 0);
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.startup-approach h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.startup-approach p {
    font-size: 1.063rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.startup-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.startup-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.audience-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(255, 187, 0), transparent);
    transition: left 0.6s ease;
}

.audience-card:hover::before {
    left: 100%;
}

.audience-card:hover {
    box-shadow: 0 8px 24px rgba(255, 187, 0, 0.2);
    transform: translateY(-8px);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.2) rotate(5deg);
}

.audience-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.audience-card:hover h4 {
    color: rgb(255, 187, 0);
}

.audience-card p {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.6;
}

.startup-cta {
    text-align: center;
    margin-top: 40px;
}

.startup-btn {
    padding: 16px 40px;
    background: rgb(255, 187, 0);
    color: #000000;
    border: 3px solid rgb(255, 187, 0);
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Goldman', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.startup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: all 0.5s ease;
    z-index: -1;
}

.startup-btn:hover::before {
    left: 0;
}

.startup-btn:hover {
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 187, 0, 0.4);
}

.startup-visual {
    position: relative;
}

.startup-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

.startup-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.startup-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    color: white;
}

.startup-card-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.startup-card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.startup-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-item {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(255, 187, 0), transparent);
    transition: left 0.6s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    box-shadow: 0 8px 24px rgba(255, 187, 0, 0.2);
    transform: translateY(-4px);
}

.highlight-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 187, 0);
    font-family: 'Goldman', sans-serif;
    line-height: 1;
}

.highlight-percent,
.highlight-plus {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(255, 187, 0);
    font-family: 'Goldman', sans-serif;
}

.highlight-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .startup-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .startup-text {
        padding-right: 0;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .startup-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .startup-audience {
        grid-template-columns: 1fr;
    }
    
    .startup-video-container {
        height: 300px;
    }
    
    .startup-video-overlay h3 {
        font-size: 1.5rem;
    }
    
    .startup-approach h3 {
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .faq-section {
        padding: 80px 20px;
    }
    
    .faq-item {
        padding: 16px 20px;
    }
    
    .faq-item summary {
        font-size: 1rem;
    }
    
    .apply-section {
        padding: 80px 20px;
    }
    
    .apply-content-box {
        padding: 40px 20px;
    }
    
    .apply-title {
        font-size: 2rem;
    }
    
    .apply-description {
        font-size: 1rem;
    }
    
    .apply-google-form-btn {
        padding: 16px 40px;
        font-size: 0.9rem;
    }
    
    .startup-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
}
