/* ============================================================================
   Base Styles
   ============================================================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================================================
   Header & Navigation
   ============================================================================ */

header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    width: 100%;
    padding: 0.5rem 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    padding: 0.5rem 0;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* ============================================================================
   Hero Section
   ============================================================================ */

.hero {
    background-image: url('/assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
    margin-left: 6rem;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #F5A624;
    color: #fff;
    border: 2px solid #F5A624;
}

.btn-primary:hover {
    background-color: #d89420;
    border-color: #d89420;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 36, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #001f5c;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #001f5c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ============================================================================
   Main Content
   ============================================================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

section {
    margin-bottom: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

/* ============================================================================
   Footer
   ============================================================================ */

footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #007bff;
}

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

.social-links li {
    margin-bottom: 0 !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #666;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #001f5c;
    color: #fff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* ============================================================================
   Blog Styles
   ============================================================================ */

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    color: #666;
    font-size: 0.875rem;
}

.post-content {
    line-height: 1.8;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-preview {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-post-preview h2 {
    margin-bottom: 0.5rem;
}

.blog-post-preview time {
    color: #666;
    font-size: 0.875rem;
}

/* ============================================================================
   People/Team Styles
   ============================================================================ */

.people-page {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.people-page h1 {
    margin-bottom: 2rem;
    color: #001f5c;
}

.people-page h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #001f5c;
}

.people-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.person-card {
    background: white;
    border: 0.5px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.person-card:hover {
    box-shadow: 0 4px 12px -1px rgba(0, 0, 0, 0.1);
}

.person-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.person-photo {
    display: flex;
    justify-content: center;
}

.person-photo img {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    object-fit: cover;
}

.person-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.person-info h3 a {
    color: #1f2937;
    text-decoration: none;
}

.person-info h3 a:hover {
    color: #007bff;
}

.person-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.person-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.person-description a {
    color: #007bff;
    text-decoration: none;
}

.person-description a:hover {
    text-decoration: underline;
}

.person-social-links-index {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.person-social-links-index a {
    color: #6b7280;
    transition: color 0.2s;
}

.person-social-links-index a:hover {
    color: #007bff;
}

.person-social-links-index .wikipedia-icon {
    width: 16px;
    height: 16px;
}

.person-interview-link {
    margin-top: 0.75rem;
}

.interview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
}

.interview-link:hover {
    color: #001f5c;
}

.interview-svg {
    flex-shrink: 0;
}

.no-content {
    color: #6b7280;
    font-style: italic;
}

@media (min-width: 768px) {
    .people-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .person-header {
        flex-direction: row;
        gap: 1.5rem;
    }

    .person-photo {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .people-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Person Profile Page */
.person-profile {
    max-width: 800px;
    margin: 0 auto;
}

.person-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.person-social {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.person-content {
    line-height: 1.8;
}

.person-content ul,
.person-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.person-content li {
    margin-bottom: 0.5rem;
}

/* Content Embed Card Styles */
.blog-embed-card,
.content-embed-card {
    background: white;
    border: 0.5px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    overflow: hidden;
    margin: 1.5rem 0;
}

.blog-embed-card:hover,
.content-embed-card:hover {
    box-shadow: 0 4px 12px -1px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   Video Styles
   ============================================================================ */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.video-card time {
    color: #666;
    font-size: 0.875rem;
}

.video-post {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================================
   Contact Page Styles
   ============================================================================ */

.contact-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    text-align: center;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #001f5c;
}

.contact-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 31, 92, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #001f5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #001f5c;
}

.contact-details {
    color: #666;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #333;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #001f5c;
    text-decoration: underline;
}

/* ============================================================================
   Careers Page Styles
   ============================================================================ */

.careers-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-hero-content {
    flex: 1;
    max-width: 500px;
}

.careers-badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.careers-hero-content h1 {
    font-size: 2.5rem;
    color: #001f5c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers-hero-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.careers-contact {
    margin-top: 2rem;
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.careers-email {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
}

.careers-email:hover {
    text-decoration: underline;
}

.careers-hero-image {
    flex: 1;
    max-width: 500px;
}

.careers-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.join-team {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.join-team-content {
    max-width: 800px;
}

.join-team h2 {
    font-size: 2rem;
    color: #001f5c;
    margin-bottom: 1.5rem;
}

.join-team p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.join-team strong {
    color: #001f5c;
}

.team-image-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.employee-benefits {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.employee-benefits h2 {
    font-size: 2rem;
    color: #001f5c;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    min-width: 150px;
    max-width: 180px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #6c5ce7;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
}

.benefit-note {
    font-size: 0.75rem;
    color: #999;
}

.eeo-statement {
    font-size: 0.875rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.leadership-banner {
    background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-banner-content {
    color: #fff;
}

.leadership-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.leadership-banner h2 {
    font-size: 1.75rem;
    color: #fff;
    margin: 0;
}

.btn-outline {
    background-color: #fff;
    color: #6c5ce7;
    border: 2px solid #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}

/* ============================================================================
   STRATO App Section
   ============================================================================ */

.strato-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.strato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.strato-header {
    text-align: center;
    margin-bottom: 3rem;
}

.strato-header h2 {
    font-size: 2.5rem;
    color: #001f5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.strato-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
}

.strato-content {
    margin-bottom: 3rem;
}

.strato-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.strato-description p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.strato-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.strato-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 31, 92, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.strato-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 31, 92, 0.15);
}

.strato-card-gold {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.strato-card-icon {
    width: 64px;
    height: 64px;
    background: #001f5c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.strato-card-gold .strato-card-icon {
    background: #f59e0b;
}

.strato-card h3 {
    font-size: 1.5rem;
    color: #001f5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.strato-card-highlight {
    font-size: 1.125rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.strato-card-gold .strato-card-highlight {
    color: #d97706;
}

.strato-features {
    list-style: none;
    margin-bottom: 2rem;
}

.strato-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.strato-features li svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 0.15rem;
}

.strato-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #001f5c;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.strato-card-btn:hover {
    background: #002d7a;
    transform: translateX(4px);
    text-decoration: none;
}

.strato-card-btn-gold {
    background: #f59e0b;
    color: #001f5c;
}

.strato-card-btn-gold:hover {
    background: #d97706;
}

.strato-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .strato-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .strato-section {
        padding: 3rem 0;
    }

    .strato-header h2 {
        font-size: 2rem;
    }

    .strato-subtitle {
        font-size: 1rem;
    }

    .strato-description p {
        font-size: 1rem;
    }

    .strato-card {
        padding: 1.5rem;
    }

    .strato-card h3 {
        font-size: 1.25rem;
    }
}

/* ============================================================================
   Telegram CTA Section
   ============================================================================ */

.telegram-cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.telegram-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.telegram-cta-inner {
    background: #001f5c;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.telegram-cta-content {
    text-align: center;
}

.telegram-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.telegram-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.telegram-cta-button {
    flex-shrink: 0;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #001f5c;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.telegram-button:hover {
    background: #F5A624;
    color: #001f5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.telegram-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.telegram-button:hover svg {
    transform: translateX(4px);
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        padding: 1rem 2rem;
        display: none;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    /* People page responsive */
    .people-page {
        padding: 1.5rem 1rem;
    }

    .people-page h1 {
        font-size: 2rem;
    }

    .people-page h2 {
        font-size: 1.5rem;
    }

    /* Telegram CTA responsive */
    .telegram-cta-section {
        padding: 2rem 0;
    }

    .telegram-cta-inner {
        padding: 2rem 1.5rem;
    }

    .telegram-cta-content h3 {
        font-size: 1.25rem;
    }

    .telegram-cta-content p {
        font-size: 0.9rem;
    }

    .telegram-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding: 2rem 1rem;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

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

    /* Careers page responsive */
    .careers-hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .careers-hero-content {
        max-width: 100%;
    }

    .careers-hero-content h1 {
        font-size: 2rem;
    }

    .careers-hero-image {
        max-width: 100%;
    }

    .join-team {
        padding: 2rem 1rem;
    }

    .join-team h2 {
        font-size: 1.5rem;
    }

    .team-image-section {
        padding: 0 1rem;
    }

    .employee-benefits {
        padding: 2rem 1rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        min-width: 120px;
        padding: 1rem;
    }

    .leadership-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }

    .leadership-banner h2 {
        font-size: 1.5rem;
    }
}

/* Telegram CTA desktop layout */
@media (min-width: 768px) {
    .telegram-cta-inner {
        flex-direction: row;
        gap: 3rem;
        padding: 3rem;
    }

    .telegram-cta-content {
        text-align: left;
    }

    .telegram-cta-content h3 {
        font-size: 1.75rem;
    }

    .telegram-cta-content p {
        font-size: 1.125rem;
    }
}
