:root {    --primary-color: #e64f21;    --secondary-color: #ff6b3d;    --background-dark: #0a0a0a;    --background-light: #1a1a1a;    --text-primary: #ffffff;    --text-secondary: #b3b3b3;    --border-color: #2a2a2a;    --shadow-light: rgba(230, 79, 33, 0.1);    --shadow-medium: rgba(0, 0, 0, 0.3);    --shadow-heavy: rgba(0, 0, 0, 0.5);}* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;    background-color: var(--background-dark);    color: var(--text-primary);    line-height: 1.6;    overflow-x: hidden;}.container {    max-width: 1200px;    margin: 0 auto;    padding: 0 20px;}/* Header Styles */.header {    background: var(--background-light);    border-bottom: 1px solid var(--border-color);    position: static;    display: block;}.header-content {    display: flex;    align-items: center;    justify-content: space-between;    padding: 1rem 0;}.logo-link {    display: flex;    align-items: center;    text-decoration: none;    color: var(--text-primary);}.logo-image {    width: 60px;    height: 60px;    border-radius: 12px;}.logo-image-large {    width: 80px;    height: 80px;    border-radius: 16px;}.logo-text {    font-size: 1.5rem;    font-weight: 700;    color: var(--text-primary);}.nav-list {    display: flex;    list-style: none;    gap: 2rem;    margin: 0;}.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
}.btn {    display: inline-flex;    align-items: center;    padding: 0.75rem 1.5rem;    border-radius: 8px;    text-decoration: none;    font-weight: 600;    transition: all 0.3s ease;    border: none;    cursor: pointer;    font-size: 0.95rem;}.btn-primary {    background: var(--primary-color);    color: white;    box-shadow: 0 4px 12px var(--shadow-light);}.btn-primary:hover {    background: var(--secondary-color);    transform: translateY(-2px);    box-shadow: 0 6px 20px var(--shadow-light);}.btn-secondary {    background: transparent;    color: var(--text-primary);    border: 2px solid var(--border-color);}.btn-secondary:hover {    border-color: var(--primary-color);    color: var(--primary-color);}/* Hero Section */.hero {    padding: 6rem 0;    text-align: center;    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);    position: relative;}.hero::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');    opacity: 0.1;}.hero-content {    position: relative;    z-index: 1;}.hero-title {    font-size: 3.5rem;    font-weight: 800;    margin-bottom: 1rem;    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;}.hero-subtitle {    font-size: 1.5rem;    color: var(--primary-color);    font-weight: 600;    margin-bottom: 2rem;}.hero-description {    font-size: 1.2rem;    color: var(--text-secondary);    max-width: 600px;    margin: 0 auto 3rem;    line-height: 1.8;}.hero-actions {    display: flex;    gap: 1rem;    justify-content: center;    flex-wrap: wrap;}/* Products Section */.products {    padding: 6rem 0;    background: var(--background-dark);}.section-title {    text-align: center;    font-size: 2.5rem;    font-weight: 700;    margin-bottom: 1rem;}.section-subtitle {    text-align: center;    font-size: 1.2rem;    color: var(--text-secondary);    margin-bottom: 4rem;    max-width: 600px;    margin-left: auto;    margin-right: auto;}.products-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));    gap: 2rem;    margin-top: 3rem;}.product-card {    background: var(--background-light);    border-radius: 16px;    padding: 2.5rem;    border: 1px solid var(--border-color);    transition: all 0.3s ease;    position: relative;    overflow: hidden;}.product-card::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    height: 4px;    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));}.product-card:hover {    transform: translateY(-8px);    box-shadow: 0 20px 40px var(--shadow-medium);    border-color: var(--primary-color);}.product-icon {    width: 60px;    height: 60px;    margin-bottom: 1.5rem;    border-radius: 12px;    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));    display: flex;    align-items: center;    justify-content: center;    transition: all 0.3s ease;}.product-icon svg {    width: 32px;    height: 32px;    color: white;    transition: all 0.3s ease;}.product-icon:hover svg {    transform: scale(1.1);}.product-title {    font-size: 1.5rem;    font-weight: 700;    margin-bottom: 1rem;    color: var(--text-primary);}.product-description {    color: var(--text-secondary);    margin-bottom: 2rem;    line-height: 1.7;}.product-link {    display: inline-flex;    align-items: center;    color: var(--primary-color);    text-decoration: none;    font-weight: 600;    transition: all 0.3s ease;}.product-link:hover {    color: var(--secondary-color);    transform: translateX(4px);}/* Content Sections */.content-section {    padding: 4rem 0;}.content-section.alt {    background: var(--background-light);}.content-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 3rem;    align-items: center;}.content-text h2 {    font-size: 2.2rem;    font-weight: 700;    margin-bottom: 1rem;}.content-text p {    color: var(--text-secondary);    font-size: 1.1rem;    line-height: 1.8;    margin-bottom: 1.5rem;}/* Footer Styles */.footer {    background: var(--background-light);    border-top: 1px solid var(--border-color);    padding: 3rem 0 1rem;}.footer-content {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 3rem;    margin-bottom: 2rem;}.footer-brand {    max-width: 400px;}.footer-logo-image {    width: 50px;    height: 50px;    border-radius: 12px;    margin-bottom: 1rem;}.footer-description {    color: var(--text-secondary);    margin-bottom: 2rem;    line-height: 1.7;}.footer-stats {    display: flex;    gap: 2rem;}.stat {    text-align: center;}.stat-number {    display: block;    font-size: 1.5rem;    font-weight: 700;    color: var(--primary-color);}.stat-label {    font-size: 0.9rem;    color: var(--text-secondary);}.footer-links {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));    gap: 2rem;}.footer-title {    font-size: 1.1rem;    font-weight: 600;    margin-bottom: 1rem;    color: var(--text-primary);}.footer-list {    list-style: none;}.footer-list li {    margin-bottom: 0.5rem;}.footer-link {    color: var(--text-secondary);    text-decoration: none;    transition: color 0.3s ease;}.footer-link:hover {    color: var(--primary-color);}.footer-bottom {    border-top: 1px solid var(--border-color);    padding-top: 2rem;}.footer-bottom-content {    display: flex;    justify-content: space-between;    align-items: center;    flex-wrap: wrap;    gap: 1rem;}.footer-copyright {    color: var(--text-secondary);    font-size: 0.9rem;}.footer-bottom-links {    display: flex;    gap: 2rem;}.footer-bottom-link {    color: var(--text-secondary);    text-decoration: none;    font-size: 0.9rem;    transition: color 0.3s ease;}.footer-bottom-link:hover {    color: var(--primary-color);}/* Coming Soon Page */.coming-soon {    min-height: 60vh;    display: flex;    align-items: center;    justify-content: center;    text-align: center;}.coming-soon-content h1 {    font-size: 3rem;    margin-bottom: 1rem;}.coming-soon-content p {    font-size: 1.2rem;    color: var(--text-secondary);    margin-bottom: 2rem;}/* Stats Section */.stats-section {    background: var(--background-light);    padding: 3rem 0;    border-top: 1px solid var(--border-color);    border-bottom: 1px solid var(--border-color);}.stats-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));    gap: 2rem;    text-align: center;}.stat-item {    padding: 1rem;}.stat-item .stat-number {    display: block;    font-size: 2.5rem;    font-weight: 800;    color: var(--primary-color);    margin-bottom: 0.5rem;}.stat-item .stat-label {    color: var(--text-secondary);    font-weight: 500;    font-size: 1rem;}/* Platforms Section */.platforms-section {    padding: 6rem 0;    background: var(--background-dark);}.section-header {    text-align: center;    margin-bottom: 4rem;}.platforms-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));    gap: 2rem;    margin-top: 3rem;}.platform-card {    background: var(--background-light);    border-radius: 20px;    padding: 0;    border: 1px solid var(--border-color);    transition: all 0.3s ease;    position: relative;    overflow: hidden;    display: flex;    flex-direction: column;    height: 100%;}.platform-card.featured {    border: 2px solid var(--primary-color);    transform: scale(1.02);}.platform-card.featured::before {    content: 'Most Popular';    position: absolute;    top: 1rem;    right: 1rem;    background: var(--primary-color);    color: white;    padding: 0.3rem 0.8rem;    border-radius: 12px;    font-size: 0.8rem;    font-weight: 600;}.platform-card:hover {    transform: translateY(-8px);    box-shadow: 0 20px 40px var(--shadow-medium);    border-color: var(--primary-color);}.platform-card.featured:hover {    transform: scale(1.02) translateY(-8px);}.platform-header {    padding: 2.5rem 2rem 1.5rem;    text-align: center;    border-bottom: 1px solid var(--border-color);}.platform-icon {    width: 80px;    height: 80px;    margin: 0 auto 1rem;    border-radius: 16px;    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));    display: flex;    align-items: center;    justify-content: center;    transition: all 0.3s ease;}.platform-icon svg {    width: 48px;    height: 48px;    color: white;}.platform-icon:hover {    transform: translateY(-2px);    box-shadow: 0 8px 25px var(--shadow-light);}.platform-title {    font-size: 1.8rem;    font-weight: 700;    margin-bottom: 0.5rem;    color: var(--text-primary);}.platform-tagline {    color: var(--primary-color);    font-weight: 600;    font-size: 1rem;    margin: 0;}.platform-content {    padding: 2rem;    flex-grow: 1;}.platform-description {    color: var(--text-secondary);    margin-bottom: 1.5rem;    line-height: 1.7;}.platform-features {    list-style: none;    padding: 0;    margin: 0;}.platform-features li {    padding: 0.5rem 0;    color: var(--text-secondary);    position: relative;    padding-left: 1.5rem;}.platform-features li::before {    content: '•';    position: absolute;    left: 0;    color: var(--primary-color);    font-weight: bold;}.platform-footer {    padding: 1.5rem 2rem 2rem;    border-top: 1px solid var(--border-color);    margin-top: auto;}.platform-link {    display: inline-flex;    align-items: center;    color: var(--primary-color);    text-decoration: none;    font-weight: 600;    font-size: 1.1rem;    transition: all 0.3s ease;}.platform-link:hover {    color: var(--secondary-color);}.platform-link .arrow {    margin-left: 0.5rem;    transition: transform 0.3s ease;}.platform-link:hover .arrow {    transform: translateX(4px);}/* Why Choose Section */.why-choose-section {    padding: 6rem 0;    background: var(--background-light);}.why-choose-grid {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 4rem;    align-items: center;}.why-choose-points {    margin: 2rem 0;}.point {    display: flex;    align-items: flex-start;    margin-bottom: 1.5rem;    gap: 1rem;}.point-icon {    width: 40px;    height: 40px;    display: flex;    align-items: center;    justify-content: center;    border-radius: 8px;    background: rgba(230, 79, 33, 0.1);    flex-shrink: 0;    margin-top: 0.2rem;    transition: all 0.3s ease;}.point-icon:hover {    background: rgba(230, 79, 33, 0.2);    transform: scale(1.1);}.point-content h4 {    margin: 0 0 0.5rem 0;    color: var(--text-primary);    font-weight: 600;}.point-content p {    margin: 0;    color: var(--text-secondary);    line-height: 1.6;}.why-choose-visual {    text-align: center;}.visual-stats {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));    gap: 2rem;    background: var(--background-dark);    padding: 3rem 2rem;    border-radius: 20px;    border: 1px solid var(--border-color);}.visual-stat {    text-align: center;}.visual-number {    display: block;    font-size: 2rem;    font-weight: 800;    color: var(--primary-color);    margin-bottom: 0.5rem;}.visual-label {    color: var(--text-secondary);    font-size: 0.9rem;    font-weight: 500;}/* CTA Section */.cta-section {    padding: 6rem 0;    background: var(--background-dark);    text-align: center;}.cta-content {    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Icon Styles */
.icon {
    width: 40px;
    height: 40px;
    color: white;
}

.icon-small {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    transition: all 0.3s ease;
}

.product-icon:hover svg {
    transform: scale(1.1);
}

.point-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(230, 79, 33, 0.1);
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.point-icon:hover {
    background: rgba(230, 79, 33, 0.2);
    transform: scale(1.1);
}

/* Careers Page Styles */
.careers-hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 50%, var(--background-dark) 100%);
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(230, 79, 33, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 61, 0.1) 0%, transparent 50%);
}

.careers-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Message Sections */
.message-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.success-message,
.error-message {
    background: var(--background-dark);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.success-message {
    border-color: #10b981;
}

.error-message {
    border-color: #ef4444;
}

.message-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    background: #10b981;
}

.error-icon {
    background: #ef4444;
}

.message-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-message h2 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.error-message h2 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Why Join Section */
.why-join-section {
    padding: 8rem 0;
    background: var(--background-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.benefit-card {
    background: var(--background-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 350px;
    flex-shrink: 0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.benefit-card .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card .benefit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Positions Section */
.positions-section {
    padding: 8rem 0;
    background: var(--background-light);
}

.position-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.positions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.position-card {
    background: var(--background-dark);
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 380px;
    flex-shrink: 0;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.position-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.position-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex-grow: 1;
}

.position-type {
    background: rgba(230, 79, 33, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(230, 79, 33, 0.2);
    white-space: nowrap;
}

.position-location {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.position-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.position-summary {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.apply-btn {
    margin: 0 2rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.apply-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 79, 33, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.modal-header {
    padding: 2rem 2.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--background-light);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--background-dark);
    color: var(--primary-color);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

#applicationForm {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.form-section:hover {
    border-color: var(--primary-color);
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 79, 33, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e64f21' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    appearance: none;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 0.125rem;
}

.checkbox-item label {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--text-primary);
}

.checkbox-item.legal-acceptance {
    background: rgba(230, 79, 33, 0.05);
    border-color: rgba(230, 79, 33, 0.2);
}

.checkbox-item.legal-acceptance label {
    font-weight: 500;
}

.checkbox-item.legal-acceptance a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-item.legal-acceptance a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
    border-radius: 0 0 20px 20px;
    margin: 2rem -2rem -2rem;
}

.form-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-width: 120px;
}

.form-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(230, 79, 33, 0.3);
}

.form-actions .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 79, 33, 0.4);
}

.form-actions .btn-secondary {
    background: var(--background-dark);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.form-actions .btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Highlight target sections */
section:target {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% {
        background-color: rgba(230, 79, 33, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

/* Volunteer notice styling */
.volunteer-notice {
    background: linear-gradient(135deg, rgba(230, 79, 33, 0.1), rgba(230, 79, 33, 0.05));
    border: 1px solid rgba(230, 79, 33, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.volunteer-notice svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.volunteer-notice p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

.volunteer-notice strong {
    color: var(--primary-color);
}

/* Team Page Styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-member {
    background: var(--background-light);
    border-radius: 20px;
    padding: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 380px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.member-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: rgba(230, 79, 33, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(230, 79, 33, 0.2);
}

/* Compact Team Member Styles */
.team-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-member-compact {
    background: var(--background-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.team-member-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.team-member-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px var(--shadow-medium);
    border-color: var(--primary-color);
}

.member-photo-compact {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-photo-compact .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 79, 33, 0.1);
}

.member-photo-compact .vacant-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.member-info-compact {
    flex-grow: 1;
    min-width: 0;
}

.member-name-compact {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.member-title-compact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member-compact .member-status {
    margin-top: 0.5rem;
}

.team-member-compact .status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

@media (max-width: 768px) {
    .team-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-member-compact {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .member-photo-compact {
        width: 50px;
        height: 50px;
    }
    
    .member-name-compact {
        font-size: 1rem;
    }
    
    .member-title-compact {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for team page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-photo {
        height: 250px;
    }
    
    .member-info {
        padding: 2rem;
    }

    /* Modal responsive adjustments */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    #applicationForm {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-actions {
        padding: 1rem 1.5rem;
        margin: 1.5rem -1.5rem -1.5rem;
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.75rem;
    }
    
    .checkbox-item label {
        font-size: 0.85rem;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Legal Page Enhancements */
.legal-navigation {
    position: sticky;
    top: 20px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-nav-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.legal-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-nav-link:hover,
.legal-nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
}

.legal-nav-link svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.legal-nav-link .nav-text {
    white-space: nowrap;
}

/* Responsive design for legal navigation */
@media (max-width: 768px) {
    .legal-navigation {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-nav-links {
        gap: 0.5rem;
    }
    
    .legal-nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .legal-nav-link svg {
        width: 14px;
        height: 14px;
        margin-right: 0.4rem;
    }
}

@media (max-width: 480px) {
    .legal-nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .legal-nav-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.content-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.content-text ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-text li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-text li:last-child {
    border-bottom: none;
}

.content-text li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 0.7rem;
}

.content-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Company Info Box */
.company-info {
    background: linear-gradient(135deg, var(--background-light), var(--background-dark));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem auto;
    box-shadow: 0 8px 25px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.company-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.company-info br + strong {
    margin-top: 1rem;
}

/* Legal Section Styling */
.legal-section {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.legal-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Product Cards for Legal Overview */
.legal-overview .product-card {
    height: 100%;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-dark) 100%);
}

.legal-overview .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-heavy);
}

.legal-overview .product-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.legal-overview .product-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.legal-overview .product-description {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-overview .product-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-overview .product-link:hover {
    background: rgba(230, 79, 33, 0.1);
    padding: 0.5rem 1rem;
}

/* Document Version Info */
.document-version {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 400px;
}

.document-version strong {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Contact Form */
.contact-form {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Contact Info Section */
.contact-departments {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.department-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.department-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.department-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.department-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.department-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.department-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.department-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.department-card a:hover {
    color: var(--secondary-color);
}

/* Response Info */
.response-info {
    background: var(--background-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.response-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.response-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.response-info li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.response-info li:last-child {
    border-bottom: none;
}

.response-info li strong {
    color: var(--text-primary);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-left-color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-left-color: #ef4444;
}

/* Responsive adjustments for team page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-photo {
        height: 250px;
    }
    
    .member-info {
        padding: 2rem;
    }

    /* Modal responsive adjustments */
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    #applicationForm {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-actions {
        padding: 1rem 1.5rem;
        margin: 1.5rem -1.5rem -1.5rem;
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.75rem;
    }
    
    .checkbox-item label {
        font-size: 0.85rem;
    }
}