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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    padding: 140px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.1);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #e53e3e;
    color: white;
}

.btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #e53e3e;
    transform: translateY(-2px);
}

.btn-cta {
    background: #e53e3e;
    color: white;
    font-size: 1.1rem;
    padding: 18px 36px;
}

.btn-cta:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Sections */
.services-preview {
    background: #f7fafc;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #718096;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3182ce;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    color: #3182ce;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    background: white;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #4a5568;
    line-height: 1.7;
}

.features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #4a5568;
}

.feature-icon {
    font-size: 1.3rem;
    color: #3182ce;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: #2d3748;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Staff Section */
.staff-section {
    background: #f7fafc;
    padding: 100px 0;
}

.staff-grid {
    display: grid;
    gap: 60px;
}

.staff-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.staff-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.staff-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.staff-title {
    font-size: 1.1rem;
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 24px;
}

.staff-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a5568;
}

.staff-achievements {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.achievement-icon {
    font-size: 1.1rem;
    color: #3182ce;
    margin-top: 2px;
}

/* Team Gallery */
.team-gallery {
    background: white;
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 24px;
    text-align: center;
    font-weight: 500;
}

/* Services Detailed */
.services-detailed {
    background: #f7fafc;
    padding: 100px 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card-detailed {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3182ce;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon-large {
    font-size: 2.2rem;
    color: #3182ce;
}

.service-card-detailed h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.3;
}

.service-card-detailed p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
}

.service-price {
    margin-bottom: 24px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e53e3e;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #48bb78;
    font-weight: 500;
    margin-top: 8px;
}

.btn-service {
    background: #e53e3e;
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-service:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
}

/* Contact */
.contact-hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    background-image: url('public/ContactPageMain.jpg');
    background-size: cover;
    background-position: center center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.85);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: #e53e3e;
    color: white;
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-hero:hover {
    background: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 62, 62, 0.4);
}

.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-methods-secondary {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    color: #3182ce;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.contact-details p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-link {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form {
    background: #e53e3e;
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-bottom: 16px;
}

.btn-form:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.form-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: #48bb78;
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 16px;
}

.form-success p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-services {
    background: #f7fafc;
    padding: 100px 0;
}

.contact-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.help-step {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.help-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
    color: #3182ce;
}

.help-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.help-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Locations */
.locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.location {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.5;
}

.location:last-child {
    border-bottom: none;
}

.location strong {
    color: #2d3748;
}

/* Insurance Information */
.insurance-info {
    background: #f7fafc;
    padding: 80px 0;
}

.insurance-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insurance-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 32px;
}

.insurance-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.insurance-card p:last-child {
    margin-bottom: 0;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon-large {
    font-size: 4rem;
    margin-bottom: 32px;
    display: block;
}

.thank-you-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.5;
}

.next-steps-section {
    background: #f7fafc;
    padding: 100px 0;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.next-step-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.next-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    background: #e53e3e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.thank-you-contact {
    background: white;
    padding: 80px 0;
}

.contact-reminder {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-reminder h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.contact-reminder p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.contact-option .contact-icon {
    font-size: 1.8rem;
    color: #3182ce;
}

.contact-option strong {
    color: #2d3748;
    font-size: 1.1rem;
}

.resources-section {
    background: #f7fafc;
    padding: 100px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.resource-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
    color: #3182ce;
}

.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.return-home-section {
    background: #2d3748;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.return-home-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.return-home-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

.footer .logo {
    height: 40px;
    width: auto;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3182ce;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .staff-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 40px 30px;
    }
    
    .insurance-card {
        padding: 40px 30px;
    }
    
    .locations {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .thank-you-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-options {
        gap: 40px;
    }
    
    .next-step-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .staff-card {
        padding: 32px 24px;
    }
    
    .service-card-detailed {
        padding: 32px 24px;
    }
    
    .insurance-card {
        padding: 32px 24px;
    }
}