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

/* Fonts */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container */
.careers-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 600px;
    margin: 20px;
    padding: 20px;
}

/* Content Section */
.content {
    flex: 1;
    padding: 20px;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1b5e20;
}

/* Image Section */
.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-container {
        flex-direction: column;
        text-align: center;
    }

    .content {
        padding: 10px;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .image {
        margin-top: 20px;
    }
}

