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

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

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.main-navigation {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #fff;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

/* Careers Section */
.careers {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.careers h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.careers h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #007bff;
}

.careers-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.job-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.job-card h3 {
    background: #007bff;
    color: #fff;
    margin: 0;
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.job-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 2px solid #eee;
}

.job-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
}

.job-details p:last-child {
    margin-bottom: 0;
}

.job-details strong {
    color: #1a1a1a;
    min-width: 100px;
    font-weight: 600;
    position: relative;
    padding-right: 1rem;
}

.job-details strong:after {
    content: ':';
    position: absolute;
    right: 0;
}

.job-description {
    padding: 1.5rem;
    background: #fff;
}

.job-description p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.job-description h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.job-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.job-description li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.job-description li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: #0056b3;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #555;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .job-listings {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .careers h2 {
        font-size: 2.2rem;
    }
}
