/* Add these styles to your existing CSS file */

.job-section {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-section-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-logo {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.job-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.job-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.job-link {
    text-decoration: none;
    color: #3498db;
    font-size: 1.1rem;
    padding: 8px 16px;
    border: 1px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.job-link:hover {
    background-color: #3498db;
    color: white;
}

.job-link:active {
    background-color: #2c3e50;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    width: 100%;
    overflow: hidden;
}

/* Update this section in your CSS file */

.banner {
    height: 390px; /* Increased from 325px (approximately 20% taller) */
    background-image: url('remotepersonnel.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-text {
    text-align: center;
    margin: 2rem 0;
}

.intro-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #3498db;
    bottom: -10px;
    left: 20%;
}

.language-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
}

.language-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border: 1px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-links a:hover {
    background-color: #3498db;
    color: white;
}

.job-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.job-section {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.job-section:hover {
    transform: translateY(-5px);
}

.job-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.job-content {
    min-height: 150px;
    color: #495057;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5dade2;
}

footer p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .intro-text h2 {
        font-size: 1.4rem;
    }

    .language-links {
        flex-direction: column;
        align-items: center;
    }

    .language-links a {
        width: 60%;
        text-align: center;
    }

    .job-sections {
        flex-direction: column;
    }

    .job-section {
        width: 100%;
    }
}