/* CSS Variables - New Vibrant Palette */
:root {
    --mint-green: #00D19F;
    --sunshine-yellow: #FFC700;
    --pop-blue: #0057FF;
    --pop-red: #FF3B30;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --text-dark: #111111;
    --text-light: #666666;
    --black: #000000;
    --transition: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'General Sans', 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'General Sans', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticker Card Utility Class - Enhanced Materialism Effect */
.sticker-card {
    border-radius: 16px;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    background: var(--bg-white);
    transition: var(--transition);
    position: relative;
}

.sticker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.sticker-card:hover {
    transform: translateY(-8px) translateX(-2px);
    box-shadow: 6px 6px 0px var(--black);
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--black);
    box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--sunshine-yellow);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: var(--mint-green);
    color: var(--black) !important;
    padding: 0.875rem 2.75rem;
    border-radius: 50px;
    border: 2px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
    transition: var(--transition);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    min-width: auto;
}

.cta-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--black);
}

.cta-button::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: 2px solid var(--black);
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--sunshine-yellow);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-sticker {
    position: absolute;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    font-weight: 700;
    font-size: 1.25rem;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.floating-sticker:hover {
    transform: translateY(-5px) rotate(2deg) !important;
    box-shadow: 6px 6px 0px var(--black);
}

.sticker-1 {
    background: var(--mint-green);
    top: 20%;
    left: 10%;
    transform: rotate(-5deg);
    animation-delay: 0s;
}

.sticker-2 {
    background: var(--pop-blue);
    color: white;
    top: 50%;
    right: 20%;
    transform: rotate(3deg);
    animation-delay: 0.5s;
}

.sticker-3 {
    background: var(--sunshine-yellow);
    bottom: 15%;
    left: 30%;
    transform: rotate(-2deg);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
    }
}

.sticker-1 {
    --rotation: -5deg;
}

.sticker-2 {
    --rotation: 3deg;
}

.sticker-3 {
    --rotation: -2deg;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title.center {
    text-align: center;
}

/* Mission Section */
.mission {
    background: var(--bg-white);
}

.mission-text {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.mission-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--mint-green) 0%, var(--pop-blue) 100%);
    border-radius: 2px;
}

/* Manifesto Section */
.manifesto {
    background: var(--bg-white);
}

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.manifesto-text strong {
    color: var(--mint-green);
    font-weight: 700;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) translateX(-2px);
    box-shadow: 6px 6px 0px var(--black);
}

.stat-green {
    background: var(--mint-green);
}

.stat-blue {
    background: var(--pop-blue);
    color: white;
}

.stat-yellow {
    background: var(--sunshine-yellow);
}

.stat-red {
    background: var(--pop-red);
    color: white;
}

.stat-red .stat-number,
.stat-red .stat-label {
    color: white;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-blue .stat-number {
    color: white;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.stat-blue .stat-label {
    color: white;
}

/* Highlights Section */
.highlights {
    background: var(--bg-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    padding: 2.5rem;
    text-align: center;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.2) rotate(5deg);
}

.highlight-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

/* Eligibility Section */
.eligibility {
    background: var(--bg-light);
}

.eligibility-content {
    max-width: 700px;
    margin: 0 auto;
}

.eligibility-list {
    list-style: none;
    margin: 2rem 0;
}

.eligibility-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.eligibility-note {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    font-weight: 500;
    position: relative;
}

.eligibility-note::before {
    content: '💡';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: var(--sunshine-yellow);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--black);
}

/* Team Section */
.team {
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    background: var(--bg-light);
    color: var(--text-dark);
    box-shadow: 3px 3px 0px var(--black);
    transition: var(--transition);
}

.team-member:hover .team-avatar {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 5px 5px 0px var(--black);
}

.avatar-green {
    border-color: var(--mint-green);
}

.avatar-yellow {
    border-color: var(--sunshine-yellow);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--text-light);
    font-weight: 500;
}

/* Journey Section */
.journey {
    background: var(--bg-white);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.journey-phase {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--mint-green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
}

.phase-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.phase-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

.phase-description strong {
    color: var(--pop-blue);
    font-weight: 700;
}

/* Life at LOT Section */
.life-at-lot {
    background: var(--bg-light);
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.life-card {
    padding: 2.5rem;
    text-align: center;
}

.life-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.sticker-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.life-card:hover .life-icon {
    transform: scale(1.2) rotate(5deg);
}

.life-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.life-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

/* Perks Section - With Special Hover Effects */
.perks {
    background: var(--bg-white);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.perk-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.perk-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.perk-card:hover {
    transform: translateY(-10px) translateX(-3px);
    box-shadow: 8px 8px 0px var(--black);
    border-color: var(--sunshine-yellow);
}

.perk-card:hover::after {
    opacity: 1;
}

.perk-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.perk-card:hover .perk-icon {
    transform: scale(1.3) rotate(10deg);
}

.perk-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.perk-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

.perk-description strong {
    color: var(--mint-green);
    font-weight: 700;
}

/* Rules Section */
.rules {
    background: var(--bg-light);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.rule-card {
    padding: 2.5rem;
    text-align: center;
}

.rule-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.rule-card:hover .rule-icon {
    transform: scale(1.2);
}

.rule-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.rule-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

/* FAQ Section - Accordion */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'General Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: var(--mint-green);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

.faq-answer strong {
    color: var(--pop-blue);
    font-weight: 700;
}

/* Application Page */
.application-page {
    background: var(--bg-white);
    padding: 140px 0 80px;
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
}

.application-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.application-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.application-form {
    padding: 3rem;
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-family: 'General Sans', sans-serif;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 3px 3px 0px var(--black);
    border-color: var(--mint-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-group small a {
    color: var(--pop-blue);
    text-decoration: underline;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--pop-blue);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid var(--black);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Join Team Page */
.join-team-page {
    background: var(--bg-white);
    padding: 140px 0 80px;
}

.join-team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-note {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.position-card {
    padding: 2.5rem;
}

.position-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.position-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.position-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.position-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.position-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.position-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.position-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-weight: bold;
}

.position-time {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--black);
    font-weight: 500;
    color: var(--text-dark);
}

.application-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--black);
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--mint-green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
}

.step-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1rem 0;
}

.step-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pop-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.step-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.step-description a {
    color: var(--pop-blue);
    text-decoration: underline;
    font-weight: 600;
}

.apply-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--black);
}

/* Contact Page */
.contact-page {
    background: var(--bg-white);
    padding: 140px 0 80px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info {
    padding: 2.5rem;
    text-align: center;
}

.contact-section-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.contact-email {
    font-size: 1.25rem;
    margin: 1.5rem 0;
}

.contact-email a {
    color: var(--pop-blue);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

.contact-email a:hover {
    color: var(--mint-green);
}

.contact-location {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--black);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 2px 2px 0px var(--black);
}

.contact-social .social-link:hover {
    transform: translateY(-3px) translateX(-2px);
    box-shadow: 4px 4px 0px var(--black);
    background: var(--sunshine-yellow);
}

.contact-faq {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--black);
}

/* Alumni Page */
.alumni-page {
    background: var(--bg-white);
    padding: 140px 0 80px;
}

.alumni-content {
    max-width: 1200px;
    margin: 0 auto;
}

.alumni-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.alumni-stat-card {
    padding: 2.5rem;
    text-align: center;
}

.alumni-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--mint-green);
    margin-bottom: 0.5rem;
}

.alumni-stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.alumni-benefits {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2.5rem;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 500;
}

.alumni-cta {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--black);
    text-align: center;
}

.alumni-cta-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages */
.legal-page {
    background: var(--bg-white);
    padding: 140px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.legal-updated {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.legal-section a {
    color: var(--pop-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--mint-green);
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 700;
}

.legal-back {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid var(--black);
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

/* Apply Section */
.apply {
    background: var(--bg-light);
    text-align: center;
}

.apply-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Staff Recruitment Section */
.staff-recruitment {
    background: var(--bg-white);
}

.staff-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 500;
    line-height: 1.8;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.staff-card {
    padding: 2.5rem;
    text-align: left;
}

.staff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.staff-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.staff-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.staff-requirements {
    list-style: none;
    padding: 0;
}

.staff-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.staff-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-weight: bold;
}

.staff-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px solid var(--black);
    box-shadow: 3px 3px 0px var(--black);
}

.staff-cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.apply-content {
    max-width: 600px;
    margin: 0 auto;
}

.apply-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    font-family: 'General Sans', sans-serif;
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    cursor: pointer;
}

.btn-primary {
    background: var(--mint-green);
    color: var(--black);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--black);
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--black);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--mint-green);
    color: var(--black);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--black);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green) 0%, var(--sunshine-yellow) 50%, var(--pop-blue) 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid var(--black);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    opacity: 0.95;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 500;
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--mint-green);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--mint-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--black);
    box-shadow: 2px 2px 0px var(--black);
}

.footer-social .social-link:hover {
    transform: translateY(-3px) translateX(-2px);
    box-shadow: 4px 4px 0px var(--black);
    background: var(--sunshine-yellow);
    color: var(--black);
}

.footer-contact {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-contact a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--pop-blue);
}

.footer-location {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer-legal {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 2px solid var(--black);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-legal-links a:hover {
    color: var(--pop-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--black);
}

.footer-bottom p {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--black);
}

.footer-bottom p {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline,
    .life-grid,
    .perks-grid,
    .rules-grid,
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .manifesto-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 2px solid var(--black);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        text-align: center;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .journey-timeline,
    .life-grid,
    .perks-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .apply-buttons {
        flex-direction: column;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-section h2 {
        font-size: 1.75rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }

    .application-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .positions-grid,
    .application-steps {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .alumni-stats,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-title,
    .application-title {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .floating-sticker {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .life-icon,
    .perk-icon {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-visual {
        height: 250px;
    }

    .floating-sticker {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}
