* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1a3a2e;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #2a9d8f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-image {
        height: 32px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2a9d8f;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 16px 0;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
}

/* Pages */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #215846 0%, #1a3a2e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #a7f3d0;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.125rem; }
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #215846;
}

.btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: #215846;
    color: white;
}

.btn-secondary:hover {
    background: #1a3a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,88,70,0.3);
}

/* Features */
.features {
    padding: 64px 20px;
    background: #f0fdf4;
}

.features h2, .services-preview h2, .page-header h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: #1a3a2e;
}

.feature-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card, .service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(33,88,70,0.2);
}

.service-card {
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    border-color: #215846;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3, .service-card h3 {
    color: #215846;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p, .service-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Services Preview */
.services-preview {
    padding: 64px 20px;
}

/* Page Header */
.page-header {
    padding: 48px 20px;
    background: #f0fdf4;
    text-align: center;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
}

/* Services Detail */
.services-detail {
    padding: 64px 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.detail-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.detail-card:hover {
    box-shadow: 0 8px 24px rgba(33,88,70,0.15);
    border-color: #215846;
}

.detail-card h3 {
    color: #215846;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
}

.detail-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

/* About */
.about-content {
    padding: 64px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

.about-text p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.contact-info {
    background: linear-gradient(135deg, #215846 0%, #1a3a2e 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    margin: 4px 0;
    color: #a7f3d0;
}

/* Forms */
.contact-form, .application-form {
    background: #f0fdf4;
    padding: 48px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h2, .application-form h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #1a3a2e;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #215846;
    box-shadow: 0 0 0 3px rgba(33, 88, 70, 0.1);
}

textarea {
    resize: vertical;
    margin-bottom: 16px;
}

.file-upload {
    margin-bottom: 16px;
}

.file-upload label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a3a2e;
}

/* Careers */
.careers-content {
    padding: 64px 20px;
}

.careers-content h2 {
    margin-bottom: 32px;
    color: #1a3a2e;
}

.job-listing {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.job-listing:hover {
    box-shadow: 0 4px 12px rgba(33,88,70,0.15);
    border-color: #215846;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.job-header h3 {
    color: #215846;
    font-size: 1.25rem;
}

.job-type {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.job-type.contract {
    background: #fef3c7;
    color: #92400e;
}

.job-location {
    color: #6b7280;
    margin-bottom: 12px;
}

.job-listing p:not(.job-location) {
    color: #4b5563;
    margin-bottom: 16px;
}

.application-form {
    margin-top: 64px;
}

/* Footer */
footer {
    background: #1a3a2e;
    color: white;
    padding: 48px 20px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-section p, .footer-section a {
    color: #a7f3d0;
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: block;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2a9d8f;
}

.footer-bottom {
    border-top: 1px solid #2d5f4f;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #a7f3d0;
    font-size: 0.875rem;
}

/* Add these new styles to your existing style.css */

/* Careers Page Updates */
.eoi-notice {
    background: linear-gradient(135deg, #215846 0%, #1a3a2e 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
    text-align: center;
}

.eoi-notice h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.eoi-notice p {
    color: #a7f3d0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.job-duties {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.job-duties strong {
    color: #1a3a2e;
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.job-duties ul {
    list-style: none;
    padding-left: 0;
}

.job-duties li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
}

.job-duties li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #215846;
    font-weight: bold;
    font-size: 1.2rem;
}

.pay-info {
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid #f59e0b;
    color: #78350f;
    font-size: 0.95rem;
}

.pay-info strong {
    color: #92400e;
}

.requirements-box {
    background: #f0fdf4;
    border: 2px solid #215846;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
}

.requirements-box h3 {
    color: #1a3a2e;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirements-box li:before {
    content: none;
}

@media (max-width: 768px) {
    .job-duties, .pay-info, .requirements-box {
        padding: 16px;
    }
}