:root {
    --primary-color: #1B365D;
    /* Navy Blue */
    --hover-color: #2E5077;
    /* Academy Blue */
    --text-color: #1e293b;
    /* Dark Slate Gray */
    --light-text: #475569;
    --bg-color: #F8FBFE;
    --white: #ffffff;
    --secondary-bg: #F1F5F9;
    /* Light Cool Gray */
    --accent-color: #A6192E;
    /* Deep Crimson */
    --border-radius: 1.5rem;
    --border-radius-pill: 6.25rem;
    --shadow-soft: 0 0.625rem 1.875rem rgba(27, 54, 93, 0.08);
    --shadow-medium: 0 0.9375rem 2.1875rem rgba(27, 54, 93, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: #004cb6;
    /* Premium Link Blue */
    text-decoration: underline;
    transition: var(--transition);
    font-weight: bold;
}

a:hover {
    color: var(--hover-color);
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 0.625rem;
}

.section-padding {
    padding: 2rem 0 4rem 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.btn * {
    text-decoration: none !important;
}

.btn-pill {
    border-radius: var(--border-radius-pill);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0.25rem 0.9375rem rgba(27, 54, 93, 0.3);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    color: var(--white);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(27, 54, 93, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 0.125rem solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0.25rem 0.9375rem rgba(166, 25, 46, 0.3);
}

.btn-accent:hover {
    background-color: #8B1526;
    color: var(--white);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(166, 25, 46, 0.4);
}

.btn-large {
    padding: 0.625rem 0.625rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(0.625rem);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9375rem 0;
    box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 81.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

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

.logo img {
    height: 3.125rem;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

/* Dropdown */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.has-dropdown i {
    font-size: 0.7rem;
    margin-left: 0.375rem;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(1.25rem);
    background-color: var(--white);
    min-width: 15rem;
    list-style: none;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-medium);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-bottom: 0.5rem solid var(--white);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0.625rem);
}

.has-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.95rem;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-bg);
    color: var(--primary-color);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.875rem;
    height: 1.3125rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.menu-toggle span {
    width: 100%;
    height: 0.1875rem;
    background-color: var(--primary-color);
    border-radius: 0.1875rem;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(0.5625rem) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-0.5625rem) rotate(-45deg);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 2.5rem 5%;
    gap: 3.75rem;
    max-width: 87.5rem;
    margin: 0 auto;
    min-height: 55vh;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 31.25rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 31.25rem;
}

.blob-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 !important;
}

.blob-bg {
    position: relative;
    width: 31.25rem;
    height: 31.25rem;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.4), rgba(27, 54, 93, 0.1));
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    z-index: 1;
    animation: blobMorph 10s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

@keyframes blobMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    33% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }

    66% {
        border-radius: 30% 70% 50% 50% / 60% 40% 70% 30%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(1.875rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-1.875rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(1.875rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1.25rem);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.sub-title {
    display: block;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    order: 1;
}

.title {
    font-size: 2rem;
    color: #1e293b;
    position: relative;
    display: inline-block;
    order: 2;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    border-radius: 0.125rem;
}

/* Intro Section */
.intro-text-box {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2.5rem;
}

.intro-text-box p {
    margin-bottom: 1.5rem;
}

.intro-text-box p:last-child {
    margin-bottom: 0;
}

.aed-promotion-section {
    margin-top: 3.75rem;
}

.aed-promotion-content {
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border: 0.0625rem solid rgba(101, 187, 233, 0.2);
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 1.25rem 2.5rem rgba(101, 187, 233, 0.1);
}

.aed-icon {
    width: 10rem;
    height: 7rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.promotion-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aed-text {
    flex: 1;
}

.aed-text h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.aed-text p {
    color: var(--light-text);
    margin: 0;
}

.aed-action .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 3.125rem;
    line-height: 1.2;
}

.aed-action .btn span {
    font-size: 1.2rem;
    font-weight: 700;
}

.aed-action .btn small {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

@media (max-width: 992px) {
    .aed-promotion-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.business-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-medium);
}

.card-image {
    height: 12.5rem;
    overflow: hidden;
}

.card-image-link {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

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

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

.card-content {
    padding: 1.875rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.75rem;
}

.aed-rental-link {
    text-align: center;
    margin-top: 3.75rem;
}

.aed-rental-link .btn {
    font-weight: 700;
    padding: 0.875rem 2.5rem;
}

/* Hospital Banner */
.hospital-banner {
    background-color: var(--secondary-bg);
}

.banner-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.banner-header h4 {
    font-size: 1.8rem;
    color: var(--text-color);
}

.en-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.hospital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.hospital-box {
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-box:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* FAQ */
.faq-list {
    max-width: 50rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.875rem;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 12.5rem;
    padding-bottom: 1.5rem;
}

/* Map */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Contact */
.contact-box {
    background-color: var(--primary-color);
    padding: 3rem;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.white-text {
    color: var(--white);
}

.white-text.title::after {
    background-color: var(--white);
}

.contact-form {
    background-color: rgba(255, 255, 255, 1);
    padding: 3.125rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 700;
    color: #1e293b;
}

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

input,
textarea,
select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    border: 0.0625rem solid #e2e8f0;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

input[type="date"],
select {
    max-width: 20rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 0.25rem rgba(101, 187, 233, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem 0.75rem;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.2rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.required {
    color: #ef4444;
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.form-submit .btn {
    padding: 1rem 4rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.875rem;
}

.footer-info {
    margin-bottom: 1.25rem;
}

.footer-info img {
    height: 3.5rem;
    width: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
    margin-bottom: 0.625rem;
    display: block;
}

.footer-info p {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--white);
    margin-top: 0.5rem;
}

.footer-sns {
    display: flex;
    gap: 1.25rem;
}

.footer-sns a {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-sns a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 25rem;
        height: 100vh;
        background-color: var(--white);
        padding: 6.25rem 2.5rem;
        box-shadow: -0.625rem 0 1.875rem rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1500;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.875rem;
        text-align: left;
    }

    .nav-list a {
        font-size: 1.2rem;
        text-decoration: none;
    }

    .has-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0.625rem 0 0 1.25rem;
        display: none;
        min-width: unset;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .has-dropdown.active i {
        transform: rotate(180deg);
    }

    .header-right {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem 0.625rem 1.25rem;
        gap: 2.5rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-image {
        margin: 0;
        height: auto;
    }

    .blob-bg {
        width: 18.75rem;
        height: 18.75rem;
        position: relative;
        margin: 0 auto;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 0.75rem;
    }

    .contact-form {
        padding: 1.275rem 0.75rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.875rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .section-padding {
        padding: 2rem 0;
    }

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

    .hospital-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
}

/* News Section Styles */
.bg-light {
    background-color: var(--secondary-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--shadow-medium);
}

.news-card-image {
    height: 12.5rem;
    overflow: hidden;
}

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

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

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.news-card-content {
    padding: 1.5rem;
    flex: 1;
    text-align: left;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.news-date {
    font-size: 0.875rem;
    color: var(--light-text);
}

.news-category {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.news-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-more {
    text-align: center;
    margin-top: 3rem;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--light-text);
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Card links and other navigation elements */
.card-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* AHA Course Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    padding: 1rem 0;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

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

.course-nav-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    text-decoration: none !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.course-nav-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-medium);
}

.course-nav-img {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.course-nav-img img {
    width: 100%;
    height: auto;
    display: block;
}

.course-nav-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-decoration: none !important;
}

.course-nav-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 0.125rem solid var(--secondary-bg);
    padding-bottom: 2rem;
}

.course-logo {
    width: 5rem;
    flex-shrink: 0;
}

.course-logo img {
    width: 100%;
    height: auto;
}

.course-label {
    display: block;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.course-title {
    font-size: 2.5rem;
    color: var(--text-color);
}

.course-content-grid {
    display: grid;
    grid-template-columns: 1fr 20rem;
    gap: 4rem;
}

.info-content>p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-details {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border-left: 0.5rem solid var(--primary-color);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.info-details h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.info-details ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-details ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.caution-text {
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 1rem;
}

.curriculum-box {
    margin-top: 3rem;
}

.curriculum-box h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.curriculum-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    line-height: 0.3rem;
}

.curriculum-list li {
    background-color: var(--secondary-bg);
    padding: 0rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.course-manual-box {
    position: sticky;
    top: 7.5rem;
    align-self: start;
}

.manual-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1.5rem;
}

.manual-img {
    aspect-ratio: 1 / 1.4;
    overflow: hidden;
}

.manual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manual-info {
    padding: 1.5rem;
    text-align: center;
}

.manual-info h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.manual-desc {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 1.25rem;
}

.amazon-btn {
    display: block;
    background-color: #FF9900;
    color: var(--white) !important;
    text-decoration: none !important;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.amazon-btn:hover {
    background-color: #e68a00;
    transform: translateY(-0.125rem);
}

.manual-note {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-align: center;
    font-weight: 500;
}

.pre-learning-box {
    background-color: rgba(166, 25, 46, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    border: 0.0625rem solid rgba(166, 25, 46, 0.1);
}

.pre-learning-box h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .course-nav-grid {
        grid-template-columns: 1fr;
    }

    .course-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .course-manual-box {
        position: static;
        max-width: 25rem;
        margin: 0 auto;
    }

    .curriculum-list {
        grid-template-columns: 1fr;
    }

    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

/* Regulations Page Specific Styles */
.reg-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.reg-table th,
.reg-table td {
    padding: 1rem;
    border-bottom: 0.0625rem solid var(--secondary-bg);
    text-align: left;
}

.reg-table th {
    width: 40%;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.reg-table td {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {

    .reg-table th,
    .reg-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .reg-table th {
        border-bottom: none;
        padding-top: 1rem;
    }
}