* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2c2c2c;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Top Bar */
.top-bar {
    background-color: #F47920;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 1.5rem;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
}

.top-bar-item:hover {
    text-decoration: underline;
}

.top-bar-icon {
    flex-shrink: 0;
    opacity: 0.95;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo img {
    height: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links > a:hover {
    color: #7BA428;
}

/* Dropdown */
.dropdown {
    position: relative;
    z-index: 0;
}

.dropdown:hover {
    z-index: 20;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #2c2c2c;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.dropdown-btn:hover {
    color: #7BA428;
}

.chevron {
    width: 1rem;
    height: 1rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding: 1rem 0 0.5rem 0;
    min-width: 14rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #e8f2ff;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-nav {
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: #2c2c2c;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: #7BA428;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar-content {
        justify-content: center;
        gap: 1rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
    min-height: 500px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e8f2ff 0%, #ffffff 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #666666;
    max-width: 48rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.card-content p {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #7BA428;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

a.btn-primary {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #2c2c2c;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Recruitment Cards */
.recruitment-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.recruitment-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.recruitment-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #F47920;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.recruitment-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.recruitment-card .card-content {
    background-color: #ffffff;
}

/* Expertise Section */
.expertise-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    color: #7BA428;
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.expertise-card p {
    color: #666666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    color: #F47920;
}

.benefit-icon svg {
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.benefit-card p {
    color: #666666;
    line-height: 1.6;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.tech-category {
    margin-bottom: 2.5rem;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background-color: #e8f2ff;
    color: #7BA428;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #7BA428;
}

/* Case Studies Section */
.case-studies-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.case-study-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Services List Section */
.services-list-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: #f5f5f5;
    border-left: 4px solid #7BA428;
    padding: 1.5rem;
    border-radius: 0.25rem;
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.service-item p {
    color: #666666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #7BA428;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #7BA428 0%, #5a7d1f 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #7BA428;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Job Search Section */
.job-search-section {
    padding: 0rem 0;
    background-color: #f5f5f5;
}

.job-search-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #F47920;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.job-search-box-header {
    margin-bottom: 1.75rem;
}

.job-search-box-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #2c2c2c;
}

.job-search-box-header p {
    color: #666666;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .search-form-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-field .search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0 0.875rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    background-color: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.search-field .search-input-wrap:focus-within {
    border-color: #7BA428;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(123, 164, 40, 0.12);
}

.search-field .search-input-wrap svg {
    flex-shrink: 0;
    color: #F47920;
}

.search-field .search-input-wrap input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0;
    border: none;
    background: transparent;
    font-size: 1rem;
}

.search-field .search-input-wrap input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.search-form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eeeeee;
}

@media (min-width: 768px) {
    .search-form-footer {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }
}

.employment-filters {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    flex: 1;
}

.employment-filters legend {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.625rem;
    padding: 0;
}

.checkbox-group-inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.checkbox-group-inline .checkbox-label {
    padding: 0.375rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 2rem;
    background-color: #fafafa;
    transition: border-color 0.2s, background-color 0.2s;
}

.checkbox-group-inline .checkbox-label:has(input:checked) {
    border-color: #7BA428;
    background-color: #f4f9eb;
}

.checkbox-group-inline .checkbox-label span {
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7BA428;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.search-btn {
    width: 100%;
    padding: 0.75rem 2rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .search-btn {
        width: auto;
        min-width: 11rem;
    }
}

/* Job Listings */
.job-listings {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.job-listings h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.job-card-link:hover {
    border-color: #7BA428;
    transform: translateY(-2px);
}

.job-card-link:last-child {
    margin-bottom: 0;
}

.job-card-link:focus-visible {
    outline: 2px solid #7BA428;
    outline-offset: 2px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
}

.job-type {
    background-color: #e8f2ff;
    color: #7BA428;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    color: #666666;
    font-size: 0.875rem;
}

.job-posted {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #666666;
}

.job-posted svg {
    color: #F47920;
    flex-shrink: 0;
}

.job-card-cta {
    display: inline-block;
    background-color: #7BA428;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.job-card-link:hover .job-card-cta {
    opacity: 0.9;
}

.job-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.load-more {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
}

/* Job Detail Page */
.job-breadcrumb {
    padding: 1rem 0 0;
    background-color: #f5f5f5;
}

.job-breadcrumb a {
    color: #7BA428;
    text-decoration: none;
    font-size: 0.875rem;
}

.job-breadcrumb a:hover {
    text-decoration: underline;
}

.job-detail-section {
    padding: 3rem 0 4rem;
    background-color: #f5f5f5;
}

.job-detail-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 48rem;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eeeeee;
}

.job-detail-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.job-detail-body {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.job-detail-body h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 1.75rem 0 0.75rem;
}

.job-detail-body h2:first-child {
    margin-top: 0;
}

.job-detail-body p {
    margin-bottom: 1rem;
}

.job-detail-body ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.job-detail-body li {
    margin-bottom: 0.5rem;
}

.job-requirements {
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.job-requirements li {
    padding: 0.75rem 1rem;
    background-color: #f5f5f5;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

a.btn-secondary {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.job-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Why Join Section */
.why-join-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-container,
.contact-info-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-icon {
    display: flex;
    color: #F47920;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #7BA428;
}

.contact-info-item-head h3 {
    margin-bottom: 0;
}

.contact-info-item p {
    color: #666666;
    line-height: 1.6;
}

.contact-info-item p a {
    color: inherit;
    text-decoration: none;
}

.contact-info-item p a:hover {
    color: #7BA428;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-card {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.office-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.office-card p {
    color: #666666;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.quote-content {
    max-width: 56rem;
    text-align: center;
}

.quote-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #666666;
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1rem;
    color: #666666;
}

/* Footer */
.footer {
    background-color: #7BA428;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.location {
    margin-bottom: 1rem;
}

.location-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location p:not(.location-title) {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.phone {
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}