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

body {
    background-color: #619D58;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

.main-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Top Container */
.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    min-height: 60px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.rebrand-text {
    color: #1D1A05;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    background-color: #B5D7D6;
    padding: 12px 20px;
    border-radius: 0px;
    text-transform: uppercase;
    max-width: 700px;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.rebrand-text:hover {
    background-color: #a0c4c3;
}

.rebrand-text:active {
    background-color: #8fb5b4;
}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    padding: 0;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1D1A05;
    transition: all 0.3s ease;
}

/* Middle Container */
.middle-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2px 2px;
    min-height: 0;
}

.juice-text {
    font-family: 'Gasoek One', sans-serif;
    font-size: clamp(80px, 24vw, 450px);
    color: #FEFFE9;
    letter-spacing: 0.02em;
    line-height: 0.7;
    font-weight: 400;
    text-align: center;
    margin: -5px 0;
    transform: scaleX(1.2);
    font-stretch: ultra-expanded;
    max-width: 98vw;
    word-break: keep-all;
}

/* Bottom Container */
.bottom-container {
    padding: 40px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description-text {
    color: #1D1A05;
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 800px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Chocolate Classical Sans', sans-serif;
}

.bold-word {
    font-weight: 900;
}

.clickable-phrase {
    font-weight: 900;
    background-color: rgba(254, 255, 233, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 255, 233, 0.3);
    display: inline-block;
}

.clickable-phrase:hover {
    background-color: rgba(254, 255, 233, 0.25);
    border-color: rgba(254, 255, 233, 0.5);
    transform: translateY(-1px);
}

.clickable-phrase:active {
    transform: translateY(0px);
    background-color: rgba(254, 255, 233, 0.35);
}

.button-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #1D1A05;
    color: #FEFFE9;
}

.primary-button:hover {
    background-color: #2D2A15;
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: #1D1A05;
    border: 2px solid #1D1A05;
}

.secondary-button:hover {
    background-color: #1D1A05;
    color: #FEFFE9;
    transform: translateY(-2px);
}

.button-icon {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        height: auto;
        overflow: visible;
    }
    
    .top-container {
        padding: 10px 20px;
        min-height: 50px;
    }
    
    .rebrand-text {
        font-size: 10px;
        padding: 8px 14px;
        max-width: 90%;
    }
    
    .juice-text {
        font-size: clamp(60px, 22vw, 280px);
        max-width: 99vw;
    }
    
    .middle-container {
        padding: 2px 1px;
        flex: 0 1 auto;
        min-height: auto;
        align-items: flex-start;
        justify-content: center;
        padding-top: 3vh;
        padding-bottom: 2vh;
    }
    
    .bottom-container {
        padding: 30px 20px 40px 20px;
        flex-shrink: 0;
    }
    
    .button-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .description-text {
        font-size: clamp(18px, 4vw, 28px);
        margin-bottom: 25px;
    }
}

/* New Section Styles */
.new-section {
    background-color: #FEFFE9;
    padding: 80px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.section-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.what-we-are-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 2px solid #619D58;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #619D58;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.badge-icon {
    font-size: 16px;
}

.main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    color: #1D1A05;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
}

.main-tagline em {
    font-style: italic;
    font-weight: 500;
}

.dot {
    font-size: 0.6em;
    margin: 0 8px;
    display: inline-block;
}

.red-dot {
    color: #DB4E2A;
}

.green-dot {
    color: #7BA05B;
}

.yellow-dot {
    color: #E6B800;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1D1A05;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description em {
    font-style: italic;
    font-weight: 500;
}

.section-description strong {
    font-weight: 700;
    text-decoration: underline;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(29, 26, 5, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #EE8353;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1D1A05;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.section-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
}

.success-stories-btn {
    border: none;
    background-color: transparent;
    color: #1D1A05;
    padding: 8px 0;
    border-radius: 0;
    border-bottom: 2px solid #1D1A05;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.success-stories-btn:hover {
    background-color: transparent;
    color: #1D1A05;
    transform: translateX(3px);
    border-bottom-color: #619D58;
    color: #619D58;
}

.join-session-btn {
    background-color: #1D1A05;
    color: #FEFFE9;
    border: 2px solid #1D1A05;
}

.join-session-btn:hover {
    background-color: #2D2A15;
    color: #FEFFE9;
    transform: translateY(-2px);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EE8353;
    color: #FEFFE9;
    border: 2px solid #EE8353;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #DB7642;
    color: #FEFFE9;
    transform: translateY(-2px);
}

/* Responsive adjustments for new section */
@media (max-width: 768px) {
    .new-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .what-we-are-badge {
        margin-bottom: 30px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .main-tagline {
        font-size: clamp(22px, 6vw, 36px);
        margin-bottom: 25px;
    }
    
    .dot {
        margin: 0 4px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .section-buttons {
        margin-top: 30px;
        gap: 15px;
    }
    
    .section-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1D1A05;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: left;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70vh;
}

.close-menu {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: #1D1A05;
    border: 2px solid #FEFFE9;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #FEFFE9;
    cursor: pointer;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: #2D2A15;
    transform: scale(1.05);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.menu-item {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
    color: #FEFFE9;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    line-height: 1.2;
}

.menu-item:hover {
    color: #FEFFE9;
    border-bottom-color: rgba(254, 255, 233, 0.3);
    transform: translateX(10px);
}

.menu-social {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(254, 255, 233, 0.2);
}

.social-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FEFFE9;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
    color: #FEFFE9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .menu-content {
        padding: 0 20px;
        height: 60vh;
    }
    
    .menu-item {
        font-size: clamp(24px, 6vw, 36px);
        gap: 20px;
    }
    
    .close-menu {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: -50px;
    }
    
    .menu-social {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .social-link {
        font-size: 12px;
    }
}

/* Page Styles for New Pages */
.page-content {
    background-color: #FEFFE9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.page-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.page-title {
    font-family: 'Gasoek One', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    color: #1D1A05;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    transform: scaleX(1.2);
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #1D1A05;
    opacity: 0.6;
    font-weight: 400;
}

/* Make rebrand-text a link on other pages */
a.rebrand-text {
    text-decoration: none;
}

a.rebrand-text:hover {
    background-color: #c4a5a3;
}

/* Team Page Styles */
.team-page-content {
    background-color: #FEFFE9;
    min-height: 100vh;
    padding: 80px 40px;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.team-page-title {
    font-family: 'Gasoek One', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    color: #1D1A05;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    transform: scaleX(1.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #1D1A05;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: #619D58;
}

.member-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: left;
}

.member-position {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #DB4E2A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.member-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FEFFE9;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.member-email {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #FEFFE9;
    margin-bottom: 8px;
    font-weight: 400;
    opacity: 0.8;
}

.member-hobbies {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #FEFFE9;
    opacity: 0.8;
    line-height: 1.3;
    font-weight: 400;
}

/* Success Stories Page Styles */
body:has(.success-stories-content) {
    background-color: #952A0A;
}

.success-stories-content {
    padding: 0;
    background-color: #952A0A;
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #1D1A05;
}

/* Section 1: Big Companies */
.big-companies-section {
    padding: 80px 0;
    background-color: #952A0A;
}

.big-companies-section .section-title {
    color: #FEFFE9;
}

.big-companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.company-card {
    background-color: #FEFFE9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1D1A05;
    margin-bottom: 15px;
}

.funding-amount {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #B94224;
    margin-bottom: 15px;
}

.founder-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1D1A05;
    margin-bottom: 8px;
}

.founder-fact {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1D1A05;
    opacity: 0.8;
    line-height: 1.4;
}

/* Section 2: Recent Successes */
.recent-successes-section {
    padding: 60px 0;
    background-color: #FEFFE9;
}

.recent-successes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.success-card {
    background-color: #619D58;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.person-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FEFFE9;
    margin-bottom: 12px;
}

.success-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FEFFE9;
    opacity: 0.9;
    line-height: 1.4;
}

.startup-link {
    color: #FEFFE9;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.startup-link:hover {
    opacity: 0.8;
}

/* Section 3: YC Companies */
.yc-companies-section {
    padding: 80px 0;
    background-color: #FEFFE9;
}

.yc-companies-section .section-title {
    color: #1D1A05;
}

.yc-companies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .yc-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .yc-card {
        flex: 1 1 100%;
    }
}

.yc-card {
    background-color: #1D1A05;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

.yc-card-logo {
    margin-bottom: 15px;
}

.yc-card-logo-img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.yc-card:hover {
    transform: translateY(-5px);
}

.yc-company-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FEFFE9;
    margin-bottom: 8px;
}

.yc-founder {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #B94224;
    margin-bottom: 12px;
}

.yc-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #FEFFE9;
    opacity: 0.8;
    line-height: 1.4;
}

/* Section 4: Call to Action */
.cta-section {
    padding: 80px 0;
    background-color: #FEFFE9;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #1D1A05;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1D1A05;
    opacity: 0.8;
    margin-bottom: 40px;
}

.apply-now-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FEFFE9;
    background-color: #EE8353;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.apply-now-btn:hover {
    background-color: #DB7642;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 131, 83, 0.3);
}

/* Section 5: Alumni Placement */
.alumni-placement-section {
    padding: 80px 0;
    background-color: #FEFFE9;
    text-align: center;
}

.alumni-placement-section .section-title {
    color: #1D1A05;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #1D1A05;
    opacity: 0.9;
    margin-bottom: 40px;
    font-style: normal;
    text-align: center;
}

.placement-diagram {
    margin-top: 40px;
}

.diagram-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Success Stories Responsive Design */
@media (max-width: 1024px) {
    .big-companies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .recent-successes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .yc-companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .success-stories-content {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .big-companies-section,
    .recent-successes-section,
    .yc-companies-section,
    .cta-section,
    .alumni-placement-section {
        padding: 50px 0;
    }
    
    .recent-successes-grid {
        grid-template-columns: 1fr;
    }
    
    .yc-companies-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card,
    .success-card,
    .yc-card {
        padding: 20px;
    }
}

/* Recruitment Page Styles */
.recruitment-content {
    padding: 80px 0;
    background-color: #FEFFE9;
    min-height: 100vh;
}

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

.recruitment-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #1D1A05;
}

.apply-section {
    text-align: center;
    margin-bottom: 80px;
}

.recruitment-apply-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FEFFE9;
    background-color: #EE8353;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.recruitment-apply-btn:hover {
    background-color: #DB7642;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 131, 83, 0.3);
}

.deadline-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1D1A05;
    opacity: 0.8;
    margin-top: 15px;
}

.faq-section {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #1D1A05;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1D1A05;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(29, 26, 5, 0.05);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(29, 26, 5, 0.02);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1D1A05;
    opacity: 0.8;
}

/* Recruitment Page Responsive Design */
@media (max-width: 768px) {
    .recruitment-content {
        padding: 60px 0;
    }
    
    .recruitment-container {
        padding: 0 15px;
    }
    
    .apply-section {
        margin-bottom: 60px;
    }
    
    .recruitment-apply-btn {
        font-size: 18px;
        padding: 15px 40px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
    
    .faq-answer p {
        padding: 15px;
        font-size: 13px;
    }
}

/* Team Page Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-page-content {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .team-member {
        margin: 0 auto;
    }
    
    .member-photo {
        height: 280px;
    }
}

