/* GT Aeronautics Modern Design System */

:root {
    /* Color Palette */
    --primary-color: #EAB537; /* Original Gold/Orange */
    --primary-dark: #d4a024;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-dark: #0f0f0f;
    --accent-blue: #0056b3;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    
    /* Container */
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.text-accent {
    color: var(--primary-color);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: white; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-text:hover {
    color: var(--primary-dark);
}

/* Navbar */
#navbar-placeholder {
    min-height: 80px; /* Prevent layout shift */
    display: block;
}

.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0 1rem; /* Reduced padding for more space */
}

.logo {
    margin-right: 1.5rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 15px; /* Restored slightly larger gap for better look */
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    flex-shrink: 0; /* Prevent shrinking */
}

.nav-links li {
    flex-shrink: 0;
    white-space: nowrap;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--secondary-color);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-contact {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap !important;
    min-width: fit-content;
    flex-shrink: 0;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 260px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 0 4px 4px;
}

.dropdown-content.wide {
    width: 600px;
    display: flex; /* Hidden by default via parent, but flex when shown */
    gap: 30px;
}

/* Only allow hover on desktop/large screens */
@media (min-width: 1351px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.dropdown-group {
    margin-bottom: 15px;
}

.dropdown-group:last-child {
    margin-bottom: 0;
}

.dropdown-group h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.dropdown-content a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Info Bar */
.info-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.info-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.7rem;
    margin-right: 8px;
    vertical-align: middle;
}

/* Features Section */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--primary-color);
}

/* News Section */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.news-image {
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.news-date-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 70px;
    flex-shrink: 0;
}

.news-date-badge .month {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
}

.news-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.news-summary h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.news-summary p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.news-summary a {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Detailed News Article Styles */
.news-article {
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.news-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.news-header h2 {
    margin-top: 15px;
}

.news-badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.news-media img {
    border-radius: 8px;
    width: 100%;
}

.news-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    position: relative;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/29-palms-pan.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); Removed: caused solid white bar on non-transparent logo */
}

.footer-col p {
    color: #999;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #999;
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1350px) {
    h1 { font-size: 2.8rem; }
    
    .grid-2, .grid-3, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 2rem; /* Increased size */
        padding: 10px; /* Larger touch target */
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 20px 40px 20px; /* Extra bottom padding for scrolling */
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        align-items: center; /* Center items in mobile menu */
        text-align: center;
        z-index: 999;
        max-height: calc(100vh - 80px); /* Prevent overflow */
        overflow-y: auto; /* Enable scrolling */
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        padding: 0; /* Removed padding here, moved to links */
        height: auto;
        display: block;
    }

    .nav-links > li > a {
        display: block;
        padding: 15px 0; /* Larger touch target */
        width: 100%;
    }
    
    .dropdown {
        height: auto;
        display: block;
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: center; /* Center dropdown trigger */
        align-items: center;
        width: 100%;
        gap: 10px;
        padding: 15px 0; /* Larger touch target */
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        border: none;
        display: none; /* Hidden by default */
        text-align: center;
        background-color: var(--bg-light);
        overflow: hidden; /* For smooth expansion if we added animation, but standard display toggle is safer for now */
    }
    
    .dropdown.active .dropdown-content {
        display: block;
        padding: 10px 0; /* Add padding only when open */
        border-top: 1px solid #eee;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .btn-contact {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
}

/* Additions for About Us Page */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-content h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

.sidebar-image-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    text-align: center;
}

.sidebar-image-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.sidebar-image-card span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

/* Product Page Styles */
.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Reorder columns on mobile if needed (specs first or images first) */
    /* Currently HTML order is Specs (Left), Images (Right). 
       On mobile, they will stack Specs then Images. 
       If we want Images first, we can use order property. */
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}
.specs-table tr:first-child td {
    border-top: 1px solid #eee;
}

.product-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
}

.specs-table strong {
    color: var(--secondary-color);
}
.spec-category {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    display: block;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-image {
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.product-description {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}
.ad-banner {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}
.ad-banner a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}
.ad-banner a:hover {
    color: white;
}

.page-header {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: white;
    text-align: center;
}

/* Contact Page Styles */
.contact-wrapper {
    max-width: 800px; 
    margin: 0 auto; 
    background: white; 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: var(--shadow-sm);
}

.contact-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
}

/* Management Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    align-items: center;
}

.icon-box {
    width: 40px; 
    height: 40px; 
    background: rgba(234, 181, 55, 0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-item span {
    display: block; 
    font-size: 0.85rem; 
    color: var(--text-light);
}

.map-container {
    margin-top: 40px; 
    height: 450px; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-wrapper {
        padding: 20px;
    }
}

/* Industry News Styles */
.news-archive-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.news-archive-item:last-child {
    border-bottom: none;
}
.archive-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 10px;
}
.news-archive-item p {
    margin-bottom: 10px;
}

/* Event Styles */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.event-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}
.event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.event-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}
.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}
.event-date .days {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.event-date .year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}
.event-details h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}
.event-details p {
    margin-bottom: 10px;
    color: var(--text-light);
}
.event-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .event-date {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
}

/* Links Page Styles */
.links-category {
    margin-bottom: 50px;
}
.links-category h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.link-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}
.link-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}
.link-card a {
    color: var(--primary-color);
    font-size: 0.9rem;
    word-break: break-all;
}
.link-card a:hover {
    text-decoration: underline;
}

/* FAQ Page Styles */
.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: #fff;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-color);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Employment Page Styles */
.job-list {
    display: grid;
    gap: 20px;
}
.job-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.job-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.job-header i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.job-card.active .job-header i {
    transform: rotate(180deg);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.3s ease;
    opacity: 0;
}

.job-card.active .job-details {
    max-height: 1000px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    opacity: 1;
}

.job-details h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.job-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.job-details li {
    margin-bottom: 5px;
}
.application-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}
.application-info h3 {
    color: var(--primary-color);
}
