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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Color Palette Variables */
:root {
    --primary-color: #1e3a8a; /* Deep blue */
    --secondary-color: #ffffff;
    --light-gray: #f8f9fa;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --teal-color: #1e3a8a; /* Teal for cards */
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

a{
    text-decoration: none;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-container {
    max-width: 600px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-text {
    color: var(--secondary-color);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-container {
    margin-top: 40px;
}

.cta-button {
    background-color: var(--accent-orange);
    color: var(--secondary-color);
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.content-section.alt {
    background-color: var(--light-gray);
}

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

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

.placeholder-image {
    height: 300px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    border: 2px dashed #d1d5db;
}

/* Why Work-from-Home Section */
.why-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--teal-color);
    padding: 40px 30px;
    text-align: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.9;
    flex-grow: 1;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--teal-color) 100%);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--teal-color);
    color: var(--secondary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(13, 148, 136, 0.3);
    transition: all 0.3s ease;
}

.step-icon-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-image: url('./images/why-choose-us.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.why-choose-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.why-choose-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.2;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.why-choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Job Categories Section */
.job-categories-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.job-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-category-card {
    background-color: var(--secondary-color);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    overflow: hidden;
}

.job-category-image {
    position: relative;
    overflow: hidden;
}

.job-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.job-category-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-category-icon {
    font-size: 2.5rem;
    color: var(--teal-color);
    margin-bottom: 20px;
}

.job-category-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.job-category-content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

/* Featured Jobs Section */
.featured-jobs-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.featured-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tag {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.job-pay {
    background-color: var(--teal-color);
    color: var(--secondary-color);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
}

.job-description {
    flex-grow: 1;
    margin-bottom: 25px;
}

.job-description p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.apply-button {
    background-color: var(--accent-orange);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.3);
    width: 100%;
    margin-top: auto;
    text-align: center;
    border-radius: 5px;
}

.apply-button:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 40px 30px;
    border: 2px solid var(--teal-color);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--teal-color);
    margin-bottom: 30px;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Job Application Form Section */
.job-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.job-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 50px 40px;
    border: 2px solid var(--teal-color);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-color);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background-color: var(--teal-color);
    color: var(--secondary-color);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.submit-button:hover {
    background-color: #0a7c74;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-color);
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--accent-orange);
    margin-top: 2px;
    width: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.company-info p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* About Page Styles - Simple Hero Design */
.about-hero-simple {
    background: linear-gradient(rgba(13, 148, 136, 0.3), rgba(13, 148, 136, 0.3)), url('./images/hero-about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--secondary-color);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content-simple {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.about-hero-content-simple h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-orange);
    font-size: 1.3rem;
}

/* Content Sections */
.why-exist-section,
.how-started-section,
.expect-section {
    padding: 80px 0;
}

.why-exist-section {
    background-color: var(--secondary-color);
}

.how-started-section {
    background-color: var(--light-gray);
}

.expect-section {
    background-color: var(--secondary-color);
}

.content-text-only {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.content-text-only h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.content-text-only .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--teal-color);
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}

.content-text-only p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-text-only .feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-text-only .feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.content-text-only .feature-list i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.content-text-only .highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    background-color: rgba(13, 148, 136, 0.1);
    padding: 20px;
    border-left: 4px solid var(--teal-color);
}

.content-text-only .promise-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 10px;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: linear-gradient(135deg, var(--teal-color) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding: 50px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
    max-width: 300px;
    width: 100%;
}

.visual-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--accent-orange);
}

.visual-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.visual-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.expect-item:hover {
    transform: translateY(-3px);
}

.expect-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.expect-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.expect-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.promise-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--teal-color), var(--accent-orange));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--teal-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.values-grid-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.team-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    background-color: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--teal-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member-role {
    font-size: 1rem;
    color: var(--teal-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-color) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--secondary-color);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.cta-button-large:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* Contact Page Styles */
.contact-form-section {
    padding: 120px 0 80px;
    background-color: var(--secondary-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 50px;
    border: 2px solid var(--teal-color);
}

.contact-form-container h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    background-color: var(--secondary-color);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--teal-color);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .checkbox-group {
    margin-bottom: 30px;
}

.contact-form .checkbox-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.contact-form .checkbox-label a {
    color: var(--teal-color);
    text-decoration: none;
}

.contact-form .checkbox-label a:hover {
    text-decoration: underline;
}

.contact-form .submit-button {
    width: 100%;
    background-color: var(--teal-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.contact-form .submit-button:hover {
    background-color: #0a7c74;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Terms Page Styles */
.terms-section {
    padding: 120px 0 80px;
    background-color: var(--secondary-color);
    min-height: 100vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.terms-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.terms-text h2:first-of-type {
    margin-top: 0;
}

.terms-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.terms-text ul {
    margin: 15px 0 25px 20px;
}

.terms-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Privacy Policy Page Styles */
.privacy-section {
    padding: 120px 0 80px;
    background-color: var(--secondary-color);
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.privacy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-text h2:first-of-type {
    margin-top: 0;
}

.privacy-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.privacy-text ul {
    margin: 15px 0 25px 20px;
}

.privacy-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 10px 20px;
        display: block;
        font-size: 1rem;
    }
    
    .hero-text-container {
        padding: 30px;
        margin: 0 20px;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .why-choose-text h2 {
        font-size: 2.5rem;
    }
    
    .why-choose-list li {
        font-size: 1.2rem;
    }
    
    .job-categories-grid {
        gap: 30px;
    }
    
    .job-category-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .job-category-content {
        padding: 30px 25px;
    }
    
    .job-category-icon {
        font-size: 2.2rem;
    }
    
    .job-category-content h3 {
        font-size: 1.4rem;
    }
    
    .featured-jobs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .job-header h3 {
        font-size: 1.3rem;
    }
    
    .job-pay {
        font-size: 1rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .job-form-section {
        padding: 60px 0;
    }
    
    .job-form {
        padding: 40px 30px;
    }
    
    .form-row {
        gap: 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* About Page Responsive */
    .about-hero-content-simple h1 {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text-only h2 {
        font-size: 2.2rem;
    }
    
    .content-text-only .lead-text {
        font-size: 1.1rem;
    }
    
    .content-text-only p {
        font-size: 1rem;
    }
    
    .visual-card {
        padding: 40px 30px;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    /* Contact Page Responsive */
    .contact-form-container h1 {
        font-size: 2.5rem;
    }
    
    .form-description {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 40px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Terms Page Responsive */
    .terms-content h1 {
        font-size: 2.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.3rem;
    }
    
    .terms-text p {
        font-size: 0.95rem;
    }
    
    /* Privacy Policy Responsive */
    .privacy-content h1 {
        font-size: 2.5rem;
    }
    
    .privacy-text h2 {
        font-size: 1.3rem;
    }
    
    .privacy-text p {
        font-size: 0.95rem;
    }
}


@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    .hero-text-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .placeholder-image {
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        font-size: 2.2rem;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .why-choose-list li {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .job-categories-section {
        padding: 60px 0;
    }
    
    .job-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-category-content {
        padding: 25px 20px;
    }
    
    .job-category-icon {
        font-size: 2rem;
    }
    
    .job-category-content h3 {
        font-size: 1.2rem;
    }
    
    .job-category-content p {
        font-size: 0.95rem;
    }
    
    .featured-jobs-section {
        padding: 60px 0;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-header h3 {
        font-size: 1.2rem;
    }
    
    .job-tag {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .job-pay {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
    
    .job-description p {
        font-size: 0.95rem;
    }
    
    .apply-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
    
    .job-form-section {
        padding: 60px 0;
    }
    
    .job-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-text-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .why-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .step-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .why-choose-us-section {
        padding: 50px 0;
    }
    
    .why-choose-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .why-choose-list li {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-left: 25px;
    }
    
    .why-choose-list li::before {
        font-size: 1.3rem;
    }
    
    .job-categories-section {
        padding: 50px 0;
    }
    
    .job-category-content {
        padding: 20px 15px;
    }
    
    .job-category-icon {
        font-size: 1.8rem;
    }
    
    .job-category-content h3 {
        font-size: 1.1rem;
    }
    
    .job-category-content p {
        font-size: 0.9rem;
    }
    
    .featured-jobs-section {
        padding: 50px 0;
    }
    
    .job-card {
        padding: 15px;
    }
    
    .job-header h3 {
        font-size: 1.1rem;
    }
    
    .job-tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .job-pay {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .job-description p {
        font-size: 0.9rem;
    }
    
    .apply-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.9rem;
    }
    
    .job-form-section {
        padding: 50px 0;
    }
    
    .job-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* About Page Mobile */
    .about-hero-simple {
        padding: 100px 0 60px;
    }
    
    .about-hero-content-simple h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .content-text-only h2 {
        font-size: 1.8rem;
    }
    
    .content-text-only .lead-text {
        font-size: 1rem;
    }
    
    .content-text-only p {
        font-size: 1rem;
    }
    
    .content-text-only .highlight-text {
        padding: 15px;
        font-size: 1rem;
    }
    
    .content-text-only .promise-text {
        font-size: 1rem;
        padding: 15px;
    }
    
    .content-text-only .feature-list li {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Contact Page Mobile */
    .contact-form-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .contact-form-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .contact-form-container h1 {
        font-size: 2.2rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .contact-form .submit-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    /* Terms Page Mobile */
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        padding: 0 15px;
    }
    
    .terms-content h1 {
        font-size: 2.2rem;
    }
    
    .last-updated {
        font-size: 0.9rem;
    }
    
    .terms-text h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
    
    .terms-text p {
        font-size: 0.95rem;
    }
    
    .terms-text li {
        font-size: 0.95rem;
    }
    
    /* Privacy Policy Mobile */
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
    
    .privacy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-text h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
    
    .privacy-text p {
        font-size: 0.95rem;
    }
    
    .privacy-text li {
        font-size: 0.95rem;
    }
}

