* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
header {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #1a365d;
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4299e1;
    border-radius: 1px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    position: relative;
    z-index: 200;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1a365d;
    margin: 3px 0;
    transition: 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 150;
    justify-content: center;
    align-items: center;
}

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

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #4299e1;
}

.phone {
    color: #4299e1;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone:hover {
    color: #3182ce;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(66, 153, 225, 0.7) 100%), 
                url('oceanBackgroundImage.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.2);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f7fafc;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #4299e1;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #4299e1;
}

.btn:hover {
    background: #3182ce;
    border-color: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #f7fafc;
}

.section-alt.ocean-bg {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(237, 242, 247, 0.95) 100%), 
                url('topOceanSplash.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a365d;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.section-content {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #4a5568;
    line-height: 1.8;
}

/* Specializations Grid */
.specializations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #cbd5e0;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialization-card:hover .card-image img {
    transform: scale(1.05);
}

.specialization-card h3 {
    color: #1a365d;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.4rem;
    padding: 0 1.5rem;
}

.specialization-card p {
    color: #4a5568;
    line-height: 1.7;
    padding: 0 1.5rem 2rem 1.5rem;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    background: #f7fafc;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    padding-left: 1rem;
}

.about-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-title h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.about-title p {
    color: #4299e1;
    font-size: 1.1rem;
    font-weight: 500;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #2d3748;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #edf2f7;
    border-left: 4px solid #4299e1;
    border-radius: 4px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-content strong {
    color: #1a365d;
}

/* Contact Section */
.contact-info {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-info strong {
    color: #1a365d;
}

.contact-info a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a.btn {
    color: white !important;
}

.contact-info a:hover {
    color: #3182ce;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a365d;
    color: #e2e8f0;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 2rem;
}

footer p {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
    }

    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-text {
        padding-left: 0;
    }

    .about-title {
        text-align: center;
    }

    .about-title h2 {
        text-align: center;
    }

    .about-image img {
        height: auto;
        max-height: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .specializations {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-info {
        margin: 0 20px;
        padding: 2rem;
    }

    .section-alt.ocean-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        color: white !important;
    }
}

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

/* Focus styles for accessibility */
.btn:focus,
nav a:focus,
.phone:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #4299e1;
}

.faq-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-item li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* About Page Styles */
.about-page {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.large-quote {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    border-left: 4px solid #4299e1;
}

.large-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.large-quote cite {
    font-size: 1rem;
    color: #4a5568;
    font-style: normal;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .payment-cancellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.main-service {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.main-service h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.service-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.insurance-note {
    font-style: italic;
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 1rem;
}

.specialization-section {
    margin-top: 4rem;
}

.section-intro {
    text-align: center;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.specialization-details {
    display: grid;
    gap: 3rem;
}

.specialization-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.spec-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.spec-content h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.spec-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Contact Page Styles */
.contact-page {
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.contact-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-link:hover {
    color: #3182ce;
    text-decoration: underline;
}

.location-section {
    margin-bottom: 3rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.address-card,
.directions-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.address-card h3,
.directions-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.directions-card ul {
    margin-left: 1rem;
}

.directions-card li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #4a5568;
}

.meeting-options {
    margin-bottom: 3rem;
}

.meeting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.meeting-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.meeting-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
}

.cta-section h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-section {
    margin-bottom: 3rem;
}

.contact-form-section h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-form-section p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.form-container iframe {
    border-radius: 8px;
}

/* Quick Info Section */
.quick-info {
    margin-bottom: 3rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.text-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    color: #3182ce;
    text-decoration: underline;
}

/* Location Page Styles */
.location-page {
    max-width: 1000px;
    margin: 0 auto;
}

.address-section {
    margin-bottom: 3rem;
}

.main-address-card {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(66, 153, 225, 0.3);
}

.main-address-card h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.address-info .address-line {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-note {
    font-size: 1.1rem;
    margin: 1rem 0;
    opacity: 0.9;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.contact-note a {
    color: white;
    text-decoration: underline;
}

.directions-section {
    margin-bottom: 3rem;
}

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

.directions-card h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.directions-card ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.directions-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.directions-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-weight: bold;
}

.directions-card strong {
    color: #2d3748;
}

.map-section {
    margin-bottom: 3rem;
}

.map-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4299e1;
}

.map-placeholder {
    text-align: center;
}

.gps-address {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.map-note {
    font-style: italic;
    color: #4a5568;
    margin-top: 1rem;
}

.contact-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.contact-cta h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specialization-item {
        grid-template-columns: 1fr;
    }
    
    .spec-image img {
        height: 200px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid .payment-cancellation-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 0.5rem;
        margin: 1rem 0;
        max-width: 100%;
        overflow: visible;
    }
    
    .form-container iframe {
        height: 900px;
        min-height: 600px;
        max-height: 90vh;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .main-address-card {
        padding: 2rem;
    }
    
    .main-address-card h2 {
        font-size: 1.5rem;
    }
    
    .address-info .address-line {
        font-size: 1.1rem;
    }
}
