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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    min-height: 100vh;
}

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

/* Navigation */
.navigation {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto 30px auto;
}

.nav-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background: #ff1d58;
    color: white;
}

.nav-btn:not(.active):hover {
    background: #f0f0f0;
    color: #333;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.motto {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Page Content */
.page-content {
    display: block;
}

.page-content.hidden {
    display: none;
}

.filters {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filters input,
.filters select,
.filters button {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filters input {
    flex: 1;
    min-width: 200px;
}

.filters input:focus,
.filters select:focus {
    outline: none;
    border-color: #ff1d58;
}

.filters select {
    background: white;
}

.filters button {
    background: #ff1d58;
    color: white;
    cursor: pointer;
    border: none;
    font-weight: bold;
    min-width: 120px;
}

.filters button:hover {
    background: #e01650;
}

.loading {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: #333;
}

.hidden {
    display: none;
}

.job-list {
    display: grid;
    gap: 20px;
}

.job-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #ff1d58;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.job-location {
    color: #666;
    margin-bottom: 15px;
}

.job-skills {
    margin: 15px 0;
}

.skills-section {
    margin: 8px 0;
}

.skill-tag {
    display: inline-block;
    background: #e9ecef;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin: 3px;
}

.job-details {
    display: flex;
    gap: 25px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 14px;
    color: #666;
}

.job-link {
    display: inline-block;
    background: #ff1d58;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
}

.job-link:hover {
    background: #e01650;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
}

.pagination button {
    padding: 12px 24px;
    border: 1px solid #ff1d58;
    background: white;
    color: #ff1d58;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.pagination button:hover:not(:disabled) {
    background: #ff1d58;
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

#pageInfo {
    font-weight: bold;
    color: #333;
}

/* About Us Page */
.about-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.about-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 25px;
    margin: 15px 0;
}

.about-text li {
    margin-bottom: 15px;
    text-align: justify;
}

.job-count {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

/* Newsletter page styles */
.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.newsletter-text {
    margin-bottom: 40px;
    text-align: left;
}

.newsletter-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.newsletter-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.newsletter-form > * {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #333;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(238, 90, 36, 0.4);
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.subscription-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.subscription-message p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}