* {
    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: #333;
    overflow-x: hidden;
    -webkit-user-select: text;
    user-select: text;
}

/* Navigation Bar */
nav {
    background-color: #ffffff;
    padding: 1.25rem 2rem 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.nav-logo {
    color: #008B8B;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 1.5rem;
}

.nav-logo:hover {
    color: #006666;
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.nav-item {
    color: #333;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    border-radius: 4px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #008B8B;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #008B8B;
}

.nav-item:hover::after {
    width: calc(100% - 3rem);
}

.nav-item.active {
    color: #008B8B;
}

.nav-item.active::after {
    width: calc(100% - 3rem);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 6px;
    z-index: 1001;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #008B8B;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Main Content Area */
.hero-section {
    background-image: url('../images/hospital-hallway-with-motion-effect.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 1;
    line-height: 1.7;
    max-width: 800px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-bottom-left {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-bottom-left:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.hero-pdf-icon svg {
    width: 50px;
    height: 50px;
    margin-top: 20px;
    z-index: 1;
}

.hero-pdf-icon img {
    max-width: none;
    width: auto;
    height: auto;
    display: block;
    max-height: 200px;
}

.hero-note {
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 120px;
    line-height: 1.4;
    white-space: normal;
}

/* Message Section */
.message-section {
    background-color: #e5e5e5;
    min-height: calc(100vh - 70vh - 200px);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.message-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.message-text {
    color: #008B8B;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Allow Quill alignment classes to work */
.message-text p,
.message-text div,
.message-text h1,
.message-text h2,
.message-text h3,
.message-text h4,
.message-text h5,
.message-text h6 {
    text-align: inherit;
}

.message-text .ql-align-left {
    text-align: left;
}

.message-text .ql-align-center {
    text-align: center;
}

.message-text .ql-align-right {
    text-align: right;
}

.message-text .ql-align-justify {
    text-align: justify;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 4px solid #008B8B;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-column h3 {
    color: #008B8B;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 139, 139, 0.3);
}

.footer-column p,
.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
    display: block;
}

.footer-column a:hover {
    color: #008B8B;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: #008B8B;
    font-weight: bold;
    min-width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 139, 139, 0.2);
    border: 2px solid #008B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: #008B8B;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 139, 139, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom-text a {
    color: #008B8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-text a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .nav-logo {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        position: static;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        pointer-events: none;
    }

    .nav-menu.active {
        right: 0;
        pointer-events: auto;
    }

    .menu-overlay {
        display: none !important;
        pointer-events: none !important;
    }

    .menu-overlay.active {
        display: block !important;
        pointer-events: auto !important;
    }

    .nav-item {
        text-align: left;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        color: #008B8B;
        padding-left: 0.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-bottom-left {
        position: relative;
        bottom: auto;
        left: auto;
        align-items: center;
        margin-top: 3rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .message-section {
        min-height: calc(100vh - 60vh - 200px);
        padding: 3rem 1.5rem;
    }

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

    footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .nav-logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-item {
        font-size: 0.85rem;
        padding: 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-pdf-icon img {
        max-width: 100%;
        height: auto;
    }

    .hero-pdf-icon svg {
        width: 40px;
        height: 40px;
    }

    .message-section {
        min-height: calc(100vh - 50vh - 150px);
        padding: 2rem 1rem;
    }

    .message-text {
        font-size: 1rem;
    }

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

    footer {
        padding: 3rem 1rem 2rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    position: relative;
    z-index: 999;
    margin-top: 0;
    margin-bottom: 0;
}



