/* Mobile-first CSS Variables */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #ff6b6b;
    --accent-color: #667eea;
    --text-color: #333;
    --background-color: #f8f9fa;
    --header-bg: #fff;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 15px 35px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --border-radius-sm: 6px;
    --border-radius-lg: 12px;
    --border-color: #e9ecef;
    --text-medium: #666;
    --padding-sm: 0.5rem;
    --padding-md: 1rem;
    --padding-lg: 1.5rem;
    --padding-xl: 2rem;
    --max-width: 100%;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --danger-color: #dc3545;
    --danger-color-dark: #c82333;
    --warning-color-dark: #e0a800;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px; /* Base font size for mobile */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container,
.content-max-width {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--header-bg);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.navbar {
    padding: var(--padding-md) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--padding-xl);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
    display: block;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.job-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.delete-job-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    display: none;
}

.delete-job-btn:hover {
    opacity: 1;
    background: var(--danger-color-dark);
    transform: scale(1.05);
}

.edit-job-btn {
    background: #ffc107;
    color: #212529;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin-left: 5px;
    display: none;
}

.edit-job-btn:hover {
    opacity: 1;
    background: var(--warning-color-dark);
    transform: scale(1.05);
}

.view-more-btn {
    background: var(--background-color);
    color: var(--primary-color);
    border: 1px solid #e9ecef;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.view-more-btn:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.job-card[data-job-id] {
    border-left: 4px solid #28a745;
}

.job-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.job-card-actions .view-more-btn,
.job-card-actions .apply-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    height: 40px;
}

.job-card-actions .apply-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #764ba2 100%);
    color: white;
}

.job-card-actions .apply-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Authentication Modal Styles */
#setupModal .modal-content {
    max-width: 400px;
    padding: 2rem;
}

#setupModal h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-align: center;
}

#setupModal p {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

#loginModal .modal-content,
#setupModal .modal-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#setupForm .form-group,
#loginForm .form-group {
    margin-bottom: 1rem;
}

#setupForm label,
#loginForm label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

#setupForm input,
#loginForm input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#setupForm input:focus,
#loginForm input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

#setupForm button,
#loginForm button {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: var(--padding-md);
}

#setupForm button:hover,
#loginForm button:hover {
    background: linear-gradient(135deg, #1a365d 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}


.job-detail-modal .modal-content {
    max-width: 700px;
    padding: 30px;
}

.job-detail-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.job-detail-header h2 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.job-id-display {
    margin-bottom: 15px;
}

.job-id-display small {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    width: fit-content;
}

.job-id-display i {
    color: var(--primary-color);
}

.job-detail-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.job-detail-meta span {
    background: #f0f8ff;
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-detail-meta i {
    font-size: 0.8rem;
}

.job-detail-description {
    line-height: 1.8;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.job-detail-description h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-detail-description p {
    margin-bottom: 15px;
}


.add-job-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.add-job-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.login-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.me-1 {
    margin-right: 0.25rem;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: var(--padding-md);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Jobs Section */
.jobs-section {
    padding: 80px 20px;
    background: white;
}

.jobs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.search-container input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: transparent;
    color: #333;
}

.search-container input:focus {
    outline: none;
}

.search-container input::placeholder {
    color: #999;
    font-style: italic;
}

.search-icon {
    position: absolute;
    left: 18px;
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: none;
}

.search-clear-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-clear-btn:hover {
    background: #f0f0f0;
    color: #666;
    transform: scale(1.1);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-suggestion:hover {
    background: #f8f9fa;
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--padding-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    grid-auto-flow: row;
}

.job-card {
    background: var(--header-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--padding-lg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

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

.job-header {
    margin-bottom: 1rem;
}

.job-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.job-header h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.job-header-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.job-type {
    background: #e8f4fd;
    color: #2c5aa0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
    margin: 2px;
}

.job-types-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    max-width: 200px;
}

.job-posting-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    width: fit-content;
}

.job-posting-date i {
    color: #2c5aa0;
    font-size: 0.8rem;
}

.job-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    height: 4.8rem; /* Fixed height for 3 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.job-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.job-details i {
    color: #2c5aa0;
}



/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadMoreBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    display: inline-block;
    margin: 0 auto;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

#loadMoreBtn.hidden {
    display: none !important;
}





/* About Section */
.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-content-full {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-header h2 {
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.services-list {
    margin: 3rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    color: #555;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.services-list li:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.services-list i {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mission-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.mission-statement h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.mission-statement p {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

/* Partners Carousel Styles */
.partners-carousel {
    margin-top: 3rem;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.carousel-track .feature {
    min-width: 300px;
    flex-shrink: 0;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 90, 160, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 30px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-track .feature {
        min-width: 280px;
    }
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.feature i {
    font-size: 2rem;
    color: #2c5aa0;
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5aa0;
    font-weight: bold;
}

.feature p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.feature .partner-website {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.feature .partner-website:hover {
    text-decoration: underline;
}

/* Partner Management Styles */
.manage-partners-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.manage-partners-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.partners-modal-content {
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.partners-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.partners-actions {
    display: flex;
    gap: 1rem;
}

.partners-management-grid {
    display: grid;
    gap: 1.5rem;
}

.partner-management-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.partner-management-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.partner-info {
    flex: 1;
}

.partner-info h4 {
    margin: 0 0 0.5rem 0;
    color: #2c5aa0;
    font-size: 1.2rem;
}

.partner-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}



.partner-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.partner-actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.edit-partner-btn {
    background: #4CAF50;
    color: white;
}

.edit-partner-btn:hover {
    background: #45a049;
}

.delete-partner-btn {
    background: #f44336;
    color: white;
}

.delete-partner-btn:hover {
    background: #da190b;
}

.partners-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.partners-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ddd;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: white;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-header h2 {
    font-size: 3rem;
    color: #2c5aa0;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.services-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-tagline {
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.services-subtitle {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.services-subtitle h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.service-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: white;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h4 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.4;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    border-radius: 15px;
    color: white;
}

.target-audience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.target-audience i {
    font-size: 2rem;
    color: #ffc107;
}

.target-audience p {
    font-size: 1.2rem;
    margin: 0;
    color: white;
}

/* Responsive adjustments for services section */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.5rem;
    }

    .services-intro {
        font-size: 1.1rem;
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-subtitle h3 {
        font-size: 1.5rem;
    }

    .target-audience {
        flex-direction: column;
        gap: 0.5rem;
    }

    .target-audience p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 2rem;
    }

    .services-intro {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-content h4 {
        font-size: 1.2rem;
    }

    .services-footer {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group:has(.job-type-multi-select) {
    z-index: 100;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

#customCategoryGroup input {
    border-color: #2c5aa0;
    background-color: #f8f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #666;
    color: #ccc;
}

/* Safe area insets for notch phones */
@supports(padding: max(0px)) {
    .header, .footer {
        padding-left: max(var(--padding-md), env(safe-area-inset-left));
        padding-right: max(var(--padding-md), env(safe-area-inset-right));
    }

    .hero, .jobs-section, .about-section, .services-section, .contact-section {
        padding-left: max(var(--padding-md), env(safe-area-inset-left));
        padding-right: max(var(--padding-md), env(safe-area-inset-right));
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

/* Responsive Design */
/* Media queries for responsive design */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        width: auto;
    }

    .nav-menu a {
        padding: var(--padding-sm) var(--padding-md);
        font-size: 1rem;
        width: auto;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--padding-md);
    }

    .navbar {
        padding: var(--padding-md);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
        padding: var(--padding-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: var(--padding-md) 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: var(--padding-md);
        font-size: 1.1rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}

/* Utilities for mobile */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--padding-md);
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Improve form inputs to prevent iOS zoom and add touch-friendly elements */
input, select, textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    transition: border-color 0.3s ease;
}

/* Touch-friendly elements */
button, .btn, a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent horizontal scrolling */
body, html {
    overflow-x: hidden;
    width: 100%;
}

/* Animation for job filtering */
.job-card {
    transition: all 0.3s ease;
}

.job-card.hidden {
    display: none;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

/* Application Form Styles */
.application-job-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.application-job-info h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

/* Multi-select Job Type Styles */
.job-type-multi-select {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.selected-job-types {
    padding: 12px 15px;
    min-height: 47px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    box-sizing: border-box;
}

.job-type-placeholder {
    color: #999;
    font-style: italic;
}

.job-type-tag {
    background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: tagAppear 0.3s ease;
}

.job-type-tag .remove-tag {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.job-type-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.5);
}

@keyframes tagAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.job-type-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.job-type-dropdown.active {
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #2c5aa0;
}

.job-type-option {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.job-type-option:last-child {
    border-bottom: none;
}

.job-type-option:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

.job-type-option input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #2c5aa0;
}

.job-type-option label {
    margin: 0;
    cursor: pointer;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    user-select: none;
}

.job-type-multi-select.active {
    border-color: #2c5aa0;
}

.job-type-multi-select.active .selected-job-types {
    border-radius: 8px 8px 0 0;
}

.application-job-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.file-hint,
.form-hint {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input[type="datetime-local"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    color: #333;
}

.form-group input[type="datetime-local"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* Applications Management Styles */
.view-applications-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-applications-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.applications-modal-content {
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.applications-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.applications-modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.applications-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.applications-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.application-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.application-applicant {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.application-date {
    font-size: 0.8rem;
    color: #666;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.application-job-title {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

.application-job-title h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.job-id-info {
    margin-top: 0.5rem;
}

.job-id-info small {
    color: #666;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-id-info i {
    color: var(--primary-color);
}

.application-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.download-cv-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-cv-btn:hover {
    background: linear-gradient(135deg, #6f42c1 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.delete-application-btn {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-application-btn:hover {
    background: linear-gradient(135deg, #fd7e14 0%, #dc3545 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.applications-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.applications-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.applications-empty p {
    font-size: 1.1rem;
    margin: 0;
}

/* Privacy Policy Preview Section */
.privacy-preview-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
}

.privacy-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.privacy-preview-content h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.privacy-preview-content h3 i {
    font-size: 1.6rem;
    color: #28a745;
}

.preview-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

.read-full-btn {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.read-full-btn:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.read-full-btn i {
    font-size: 1rem;
}

/* Privacy Policy Modal Styles */
.privacy-modal-content {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
}

.privacy-modal-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.privacy-modal-header h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.privacy-modal-header h2 i {
    color: #28a745;
    font-size: 1.6rem;
}

.privacy-modal-body {
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.privacy-section h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.privacy-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.privacy-section ul ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
    border-left: 4px solid #28a745;
}

.contact-section h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-section p {
    color: #e9ecef;
    margin-bottom: 0.5rem;
}

.contact-section a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    color: #ffcd39;
    text-decoration: underline;
}

/* Footer Privacy Link Style */
#privacyPolicyLink {
    color: #3498db !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

#privacyPolicyLink:hover {
    color: #2980b9 !important;
}

/* Responsive adjustments for privacy section */
@media (max-width: 768px) {
    .privacy-preview-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .privacy-preview-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .preview-text {
        font-size: 1rem;
        text-align: left;
    }

    .privacy-modal-content {
        margin: 5% 1rem;
        padding: 1.5rem;
    }

    .privacy-section {
        padding: 1rem;
    }
}