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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none;
}

.rounded-image {
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #1e3a8a;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    position: relative;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
}

.btn-primary {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1e40af;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: #1e3a8a;
}

.btn-primary-mobile {
    width: 100%;
    margin-top: 1rem;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-primary-mobile:hover {
    background-color: #1e40af;
}

/* Page Header */
.page-header {
    padding-top: 8rem;
    padding-bottom: 3rem;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
    text-align: center;
}

.page-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #4b5563;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.hero-text {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-large {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background-color: #1e40af;
}

.btn-secondary-large {
    background-color: transparent;
    color: #1e3a8a;
    padding: 0.75rem 2rem;
    border: 1px solid #1e3a8a;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-secondary-large:hover {
    background-color: #eff6ff;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-block;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-view-all:hover {
    background-color: #1e40af;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-description {
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #1e3a8a;
}

.service-title {
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563;
    font-size: 1rem;
}

/* Service Detail Cards */
.services-detail-grid {
    display: grid;
    gap: 2.5rem;
}

.service-detail-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #ffffff;
    transition: box-shadow 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-detail-icon {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    width: 2rem;
    height: 2rem;
    color: #1e3a8a;
}

.service-detail-title {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}

.btn-learn-more {
    background-color: transparent;
    color: #1e3a8a;
    padding: 0.5rem 1.5rem;
    border: 1px solid #1e3a8a;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.875rem;
}

.btn-learn-more:hover {
    background-color: #eff6ff;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.process-grid {
    display: grid;
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dbeafe;
    margin-bottom: 1rem;
}

.process-title {
    color: #111827;
    margin-bottom: 1rem;
}

.process-description {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.why-choose-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.section-title-left {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.highlight-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.highlight-item span {
    color: #374151;
    font-size: 1rem;
}

/* About Content Section */
.about-content-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: #1e3a8a;
}

.value-title {
    color: #111827;
    margin-bottom: 1rem;
}

.value-description {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: #1e3a8a;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dbeafe;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 4rem;
    height: 4rem;
    background-color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}

.timeline-content {
    padding-left: 3rem;
}

.timeline-title {
    color: #111827;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    gap: 2rem;
}

.team-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.team-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    color: #111827;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.team-description {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.expertise-tag {
    background-color: #eff6ff;
    color: #1e3a8a;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #f9fafb;
}

.social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #4b5563;
}

/* Why Work Section */
.why-work-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.why-work-grid {
    display: grid;
    gap: 2rem;
}

.why-work-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.why-work-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.why-work-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-work-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #1e3a8a;
}

.why-work-title {
    color: #111827;
    margin-bottom: 0.75rem;
}

.why-work-description {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info-heading {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-intro-text {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #1e3a8a;
}

.contact-info-title {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-text {
    color: #4b5563;
    font-size: 0.875rem;
}

.emergency-contact {
    padding: 1.5rem;
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 0.375rem;
}

.emergency-title {
    color: #991b1b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.emergency-text {
    color: #7f1d1d;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.emergency-phone {
    color: #991b1b;
    font-weight: 700;
    font-size: 1.125rem;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.form-heading {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: outline 0.2s, border-color 0.2s;
}

.form-input:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
    border-color: #1e3a8a;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label {
    color: #4b5563;
    font-size: 0.875rem;
}

.checkbox-label a {
    color: #1e3a8a;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: #1e40af;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.map-heading {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
}

.map-placeholder svg {
    width: 4rem;
    height: 4rem;
    color: #9ca3af;
    margin: 0 auto 1rem;
}

.map-placeholder p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.map-note {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.faq-question {
    color: #111827;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-answer {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    color: #dbeafe;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #172554;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: #ffffff;
}

.footer-description {
    color: #93c5fd;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-icon-btn:hover {
    background-color: #1e40af;
}

.social-icon-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.footer-links-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e3a8a;
    text-align: center;
    color: #93c5fd;
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
