/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0 10px; /* Minimum left and right padding */
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-left li a:hover {
    color: #007aff; /* Apple's signature blue */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f5f7, #fff);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #007aff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 2rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #005bb5;
}

/* Contact Page */
.contact {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
    margin-bottom: 1.5rem;
    color: #000;
}

.contact-details p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #000;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Resources and Job Board Sections */
.resources, .jobs {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.resources h1, .jobs h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.resource-list, .job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource, .job {
    flex: 1 1 calc(33% - 2rem);
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource:hover, .job:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.resource h3, .job h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.resource p, .job p {
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
}

footer p {
    color: #666;
    margin: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-left {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-left.active {
        display: flex;
    }

    .nav-left li {
        margin: 0;
        text-align: center;
    }

    .nav-left li a {
        padding: 1rem;
        display: block;
    }
}

/* Resource Categories */
.resource-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.category {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category h2 {
    margin-bottom: 1.5rem;
    color: #000;
}