/* Local Font Declaration */
@font-face {
    font-family: 'TH Sarabun New';
    src: url('../fonts/THSarabunNew.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TH Sarabun New';
    src: url('../fonts/THSarabunNew Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'TH Sarabun New';
    src: url('../fonts/THSarabunNew Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'TH Sarabun New';
    src: url('../fonts/THSarabunNew BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* General Body Styles */
body, input, button, textarea, select {
    font-family: 'TH Sarabun New', 'Sarabun', sans-serif;
}

body {
    font-size: 22px; /* เพิ่มขนาดพื้นฐานเพื่อให้ฟอนต์ TH Sarabun New อ่านง่ายและชัดเจนขึ้น */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

p {
    text-align: left;
}

/* Header and Navigation */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.15rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #2E8B57;
    border-bottom-color: #2E8B57;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
}

.bar {
    display: block;
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
    color: #2E8B57;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2E8B57;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.3rem;
    color: #555;
}

.vision-mission-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.vm-card {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    border: 1px solid #2E8B57;
    border-radius: 8px;
    background-color: #f8fbf8;
    text-align: left;
}

.vm-card blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vm-card cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #555;
}

#home h1 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: #2E8B57;
    font-weight: 500;
}

.bg-light {
    background-color: #f4f6f9;
}

#clinic {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(135deg, rgba(93, 133, 109, 0.45) 0%, rgba(225, 238, 230, 0.58) 48%, rgba(72, 116, 92, 0.48) 100%),
        url('../images/รูปมูลนิธิ.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#clinic .container {
    position: relative;
    z-index: 1;
    max-width: 1080px;
}

.clinic-header {
    max-width: 840px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(46, 139, 87, 0.16);
    text-align: center;
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.08);
}

.clinic-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-size: 1.05rem;
    font-weight: bold;
}

.clinic-header h2 {
    margin-bottom: 1.25rem;
}

.clinic-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #4f5f56;
    font-size: 1.18rem;
    line-height: 1.7;
    text-align: center;
}

/* Clinic Highlights Section */
.clinic-highlights {
    margin: 2.25rem 0;
    padding: 2rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(46, 139, 87, 0.14);
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.08);
}

.clinic-block-heading {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.clinic-block-heading h3,
.service-steps h3 {
    font-size: 2rem;
    color: #2E8B57;
    margin: 0 0 0.45rem;
    text-align: center;
    font-weight: bold;
}

.clinic-block-heading p {
    margin: 0 auto;
    color: #5c6a61;
    font-size: 1.1rem;
    line-height: 1.55;
    text-align: center;
}

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

.clinic-highlight-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(46, 139, 87, 0.16);
    border-radius: 8px;
    padding: 1.8rem 1.45rem 1.6rem;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.clinic-highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 139, 87, 0.34);
    box-shadow: 0 18px 32px rgba(31, 72, 52, 0.1);
}

.highlight-number {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #2E8B57;
    color: #ffffff;
    display: block;
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    margin-bottom: 1.15rem;
}

.highlight-icon {
    position: absolute;
    z-index: 1;
    top: 1.55rem;
    right: 1.35rem;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background-color: #eef8f3;
}

.highlight-icon::before,
.highlight-icon::after {
    content: '';
    position: absolute;
    display: block;
}

.highlight-icon-safety::before {
    width: 26px;
    height: 30px;
    left: 14px;
    top: 10px;
    background: #ffffff;
    border: 2px solid #2E8B57;
    border-radius: 14px 14px 10px 10px;
}

.highlight-icon-safety::after {
    width: 14px;
    height: 8px;
    left: 20px;
    top: 22px;
    border-left: 3px solid #2E8B57;
    border-bottom: 3px solid #2E8B57;
    transform: rotate(-45deg);
}

.highlight-icon-water::before {
    width: 23px;
    height: 31px;
    left: 16px;
    top: 10px;
    background: linear-gradient(180deg, #2E8B57, #2E8B57);
    border-radius: 16px 16px 16px 4px;
    transform: rotate(45deg);
}

.highlight-icon-water::after {
    width: 8px;
    height: 8px;
    left: 27px;
    top: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.highlight-icon-capacity::before {
    width: 8px;
    height: 26px;
    left: 12px;
    bottom: 12px;
    border-radius: 5px 5px 2px 2px;
    background: #2E8B57;
    box-shadow: 11px -8px 0 #2E8B57, 22px -15px 0 #2E8B57;
}

.highlight-icon-capacity::after {
    width: 34px;
    height: 2px;
    left: 10px;
    bottom: 10px;
    background: #b8d8c7;
}

.clinic-highlight-card h4 {
    position: relative;
    z-index: 1;
    margin: 0 0 0.65rem;
    color: #2E8B57;
    font-size: 1.55rem;
    line-height: 1.25;
}

.clinic-highlight-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.55;
}

/* Service Steps */
.service-steps {
    margin: 2.25rem 0;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(46, 139, 87, 0.14);
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.08);
    text-align: left;
}

.service-steps h3 {
    margin-bottom: 0.45rem;
}

.service-steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-step {
    position: relative;
    min-height: 190px;
    background: #ffffff;
    border: 1px solid #e3efe8;
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-step:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 139, 87, 0.3);
    box-shadow: 0 18px 32px rgba(31, 72, 52, 0.09);
}

.service-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -1rem;
    width: 1rem;
    height: 2px;
    background-color: #b8d8c7;
}

.step-number {
    display: inline-block;
    min-width: 48px;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: #2E8B57;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
}

.step-icon {
    display: block;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background-color: #eef8f3;
    position: relative;
}

.step-icon::before,
.step-icon::after {
    content: '';
    position: absolute;
    display: block;
}

.step-icon-record::before {
    width: 20px;
    height: 26px;
    left: 16px;
    top: 12px;
    border: 2px solid #2E8B57;
    border-radius: 4px;
    background: #ffffff;
}

.step-icon-record::after {
    width: 12px;
    height: 2px;
    left: 20px;
    top: 22px;
    background: #2E8B57;
    box-shadow: 0 7px 0 #2E8B57;
}

.step-icon-checkup::before {
    width: 26px;
    height: 18px;
    left: 13px;
    top: 17px;
    border: 2px solid #2E8B57;
    border-radius: 14px 14px 10px 10px;
    background: #ffffff;
}

.step-icon-checkup::after {
    width: 16px;
    height: 4px;
    left: 18px;
    top: 24px;
    background: #2E8B57;
    box-shadow: 0 0 0 0 #2E8B57;
}

.step-icon-checkup {
    background-image: linear-gradient(#2E8B57, #2E8B57);
    background-repeat: no-repeat;
    background-size: 4px 16px;
    background-position: center 18px;
}

.step-icon-dialysis::before {
    width: 22px;
    height: 30px;
    left: 15px;
    top: 11px;
    background: linear-gradient(180deg, #2E8B57, #2E8B57);
    border-radius: 16px 16px 16px 4px;
    transform: rotate(45deg);
}

.step-icon-dialysis::after {
    width: 8px;
    height: 8px;
    left: 25px;
    top: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.step-icon-appointment::before {
    width: 26px;
    height: 24px;
    left: 13px;
    top: 15px;
    border: 2px solid #2E8B57;
    border-radius: 5px;
    background: linear-gradient(#2E8B57 0 7px, #ffffff 7px);
}

.step-icon-appointment::after {
    width: 4px;
    height: 4px;
    left: 21px;
    top: 28px;
    background: #2E8B57;
    box-shadow: 8px 0 0 #2E8B57;
}

.service-step h4 {
    margin: 0 0 0.65rem;
    color: #2E8B57;
    font-size: 1.35rem;
    line-height: 1.25;
}

.service-step p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.55;
}

/* Info Card */
.info-card {
    background: #fbfdfc;
    padding: 1.35rem;
    border: 1px solid #dcebe4;
    border-radius: 8px;
    margin-top: 1.75rem;
    text-align: left;
}

.info-card h4 {
    font-size: 1.5rem;
    color: #2E8B57;
    margin: 0.25rem 0 0.4rem;
}

.info-label {
    display: inline-block;
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-size: 0.85rem;
    font-weight: bold;
    line-height: 1.3;
}

.service-schedule {
    display: grid;
    gap: 1rem;
}

.service-schedule-header {
    text-align: center;
}

.service-schedule-header p {
    margin: 0 auto;
    max-width: 560px;
    color: #516157;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: center;
}

.service-schedule-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.service-meta-item {
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e3efe8;
    text-align: center;
}

.service-meta-item span,
.schedule-round {
    color: #65766b;
    font-size: 0.95rem;
    line-height: 1.25;
}

.service-meta-item strong {
    color: #244936;
    font-size: 1.12rem;
    line-height: 1.2;
    white-space: nowrap;
}

.schedule-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.schedule-item {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    background: #ffffff;
    color: #244936;
    border: 1px solid #e3efe8;
}

.schedule-item strong {
    font-size: 1.16rem;
    line-height: 1.2;
}

.schedule-item .schedule-round {
    color: #65766b;
}

/* Activities Section */
#news {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(244, 248, 246, 0.84), rgba(244, 248, 246, 0.84)), url('../images/รูปมูลนิธิ_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#news .container {
    position: relative;
    z-index: 1;
}

#news h2 {
    margin-bottom: 1.25rem;
}

.activity-header {
    max-width: 880px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(46, 139, 87, 0.16);
    text-align: center;
}

.activity-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-size: 1.05rem;
    font-weight: bold;
}

.activity-header p {
    margin: 0 auto;
    max-width: 780px;
    color: #4f5f56;
    font-size: 1.18rem;
    line-height: 1.7;
    text-align: center;
}

.activity-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 880px;
    margin: 1.25rem auto 0;
    background: #2E8B57;
    border-radius: 8px;
    overflow: hidden;
}

.activity-summary-item {
    padding: 1.25rem 1rem;
    text-align: center;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.activity-summary-item:last-child {
    border-right: none;
}

.activity-summary-number {
    display: block;
    font-size: 1.55rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.activity-months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.activity-item {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.5rem 1.25rem 1.35rem;
    border-radius: 8px;
    border: 1px solid rgba(46, 139, 87, 0.14);
    text-align: left;
    box-sizing: border-box;
}

.activity-month {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    background: #e5f4ec;
    color: #2E8B57;
    font-size: 1rem;
    font-weight: bold;
}

.activity-item h3 {
    font-size: 1.65rem;
    color: #2E8B57;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.activity-item p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
}

.activity-facebook-link {
    display: inline-block;
    margin-top: 2.5rem;
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.activity-facebook-link:hover {
    text-decoration: underline;
}

/* News Section */
.news-page-title {
    font-size: 2.6rem;
    margin: 0 0 3rem;
    color: #2E8B57;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2E8B57;
}

.news-list {
    display: grid;
    gap: 1.5rem;
}

.news-list .news-month {
    display: grid;
    gap: 1rem;
}

.news-list .news-month h2 {
    margin: 1.25rem 0 0;
    color: #244936;
    font-size: 1.7rem;
}

.news-list .news-month h2::after {
    display: none;
}

.news-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item h2,
.news-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2E8B57;
}

.news-facebook-link {
    margin-top: 2.5rem;
    text-align: center;
}

.news-facebook-link a {
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.news-facebook-link a:hover {
    text-decoration: underline;
}

.news-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.news-item .btn {
    display: inline-block;
    background-color: #2E8B57;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.news-item .btn:hover {
    background-color: #2E8B57;
}

.news-detail-hero {
    background:
        linear-gradient(135deg, rgba(232, 246, 239, 0.94) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(221, 240, 230, 0.94) 100%);
    padding: 4.5rem 2rem 3rem;
}

.news-detail-hero .container {
    max-width: 980px;
    text-align: left;
}

.news-breadcrumb {
    margin-bottom: 1.25rem;
    color: #5c6a61;
    font-size: 1rem;
}

.news-breadcrumb a {
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.news-breadcrumb a:hover {
    text-decoration: underline;
}

.news-detail-label {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-weight: bold;
}

.news-detail-title {
    max-width: 860px;
    margin: 0 0 1rem;
    color: #1f4f35;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    text-align: left;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    color: #5c6a61;
    font-size: 1.05rem;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 920px;
    margin: 0 auto;
    align-items: start;
}

.news-article {
    text-align: left;
}

.news-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.12);
}

.news-article-body {
    background: #fff;
    border: 1px solid rgba(46, 139, 87, 0.14);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(31, 72, 52, 0.08);
}

.news-article-body p {
    margin: 0 0 1.2rem;
    color: #4f5f56;
    font-size: 1.12rem;
    line-height: 1.8;
}

.news-article-body h2 {
    margin: 2rem 0 0.8rem;
    color: #2E8B57;
    font-size: 1.6rem;
    text-align: left;
}

.news-article-body ul {
    margin: 0 0 1.2rem;
    padding-left: 1.4rem;
    color: #4f5f56;
    font-size: 1.08rem;
    line-height: 1.75;
}

.news-back-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.news-back-link:hover {
    text-decoration: underline;
}

/* Policy Section */
#policy {
    background:
        linear-gradient(135deg, rgba(239, 248, 243, 0.86) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(237, 247, 242, 0.86) 100%);
    overflow: hidden;
}

#policy .container {
    max-width: 1080px;
}

.policy-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.policy-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-size: 1.05rem;
    font-weight: bold;
}

.policy-header h2 {
    margin-bottom: 1.25rem;
}

.policy-header p {
    margin: 0 auto;
    color: #4f5f56;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
}

.policy-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 2.25rem auto 0;
    background: #ffffff;
    border: 1px solid rgba(46, 139, 87, 0.14);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.08);
}

.policy-summary-item {
    padding: 1.2rem 1.35rem;
    text-align: center;
    border-right: 1px solid #e3efe8;
}

.policy-summary-item:last-child {
    border-right: none;
}

.policy-summary-item strong {
    display: block;
    color: #2E8B57;
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.policy-summary-item span {
    display: block;
    color: #5c6a61;
    font-size: 1.02rem;
    line-height: 1.35;
}

.policy-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.policy-item {
    position: relative;
    min-height: 250px;
    padding: 1.6rem 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(46, 139, 87, 0.14);
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 14px 28px rgba(31, 72, 52, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.policy-item:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 139, 87, 0.32);
    box-shadow: 0 18px 32px rgba(31, 72, 52, 0.11);
}

.policy-title {
    font-size: 1.45rem;
    color: #2E8B57;
    margin: 0 0 0.2rem;
    line-height: 1.25;
}

.policy-subtitle {
    margin: 0 0 0.85rem;
    color: #7a887f;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.35;
    text-align: left;
}

.policy-text {
    margin: 0;
    color: #555;
    font-size: 1.08rem;
    line-height: 1.55;
}

.policy-text a {
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.policy-text a:hover {
    text-decoration: underline;
}

.policy-bullet-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #555;
    font-size: 1.08rem;
    line-height: 1.55;
}

.policy-bullet-list li {
    margin-bottom: 0.35rem;
}

.policy-bullet-list li:last-child {
    margin-bottom: 0;
}

.policy-bullet-list a {
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
}

.policy-bullet-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #fff;
    color: #333;
    padding: 3rem 2rem 1.25rem;
}

.contact-header {
    max-width: 780px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.contact-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background-color: #e5f4ec;
    color: #2E8B57;
    font-size: 1.05rem;
    font-weight: bold;
}

footer h2 {
    color: #2E8B57;
    font-size: 2rem;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    text-align: center;
}

footer h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2E8B57;
}

footer p {
    margin: 0;
    color: #4f5f56;
}

.contact-header p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.18rem;
    line-height: 1.65;
    text-align: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    align-items: stretch;
    text-align: left;
}

.contact-details {
    background: #ffffff;
    border: 1px solid rgba(46, 139, 87, 0.14);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 22px rgba(31, 72, 52, 0.06);
}

.contact-name {
    color: #2E8B57;
    font-size: 1.28rem;
    font-weight: bold;
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

.contact-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid #e3efe8;
}

.contact-card h3 {
    color: #2E8B57;
    font-size: 1.08rem;
    margin: 0 0 0.15rem;
}

.contact-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.38;
}

.contact-card a {
    color: #2E8B57;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid rgba(46, 139, 87, 0.35);
}

.contact-card a:hover {
    border-bottom-color: #2E8B57;
}

.contact-icon {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 8px;
    background: #e5f4ec;
    box-shadow: inset 0 0 0 1px rgba(46, 139, 87, 0.12);
    display: block;
    box-sizing: border-box;
    object-fit: contain;
}

.contact-map {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(46, 139, 87, 0.14);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(31, 72, 52, 0.08);
}

.contact-map-heading {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid #e3efe8;
}

.contact-map-heading h3 {
    margin: 0 0 0.25rem;
    color: #2E8B57;
    font-size: 1.4rem;
    line-height: 1.25;
}

.contact-map-heading p {
    color: #5c6a61;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: left;
}

.contact-map iframe {
    width: 100%;
    flex: 1;
    min-height: 300px;
    border: 0;
    display: block;
}

.copyright {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #dbece3;
    color: #6b7a71;
    font-size: 0.95rem;
}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 68px; /* Adjust based on header height */
        left: 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    nav ul.showing {
        display: flex;
    }

    nav ul li {
        margin: 1.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .content-section h2 {
        font-size: 1.6rem;
    }

    .news-page-title {
        font-size: 1.6rem;
    }

    .news-detail-hero {
        padding: 3rem 1.25rem 2.25rem;
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-article-body {
        padding: 1.35rem;
    }

    #home h1 {
        font-size: 2.2rem;
    }

    .info-card {
        padding: 1rem;
    }

    .service-schedule,
    .service-schedule-meta,
    .schedule-list {
        grid-template-columns: 1fr;
    }

    .service-meta-item,
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .service-meta-item {
        text-align: center;
    }

    .schedule-item {
        text-align: left;
    }

    .service-meta-item strong,
    .schedule-item strong {
        font-size: 1.1rem;
        text-align: left;
        white-space: normal;
    }

    .policy-item {
        min-height: auto;
        padding: 1.35rem 1.15rem;
    }

    .policy-summary {
        grid-template-columns: 1fr;
    }

    .policy-summary-item {
        border-right: none;
        border-bottom: 1px solid #e3efe8;
    }

    .policy-summary-item:last-child {
        border-bottom: none;
    }

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

    .policy-title {
        font-size: 1.25rem;
    }

    .vision-mission-cards {
        flex-direction: column;
        align-items: center;
    }

    .clinic-highlights {
        padding: 2rem 1.25rem;
    }

    .clinic-header {
        padding: 2rem 1.25rem;
    }

    .clinic-highlights-grid {
        grid-template-columns: 1fr;
    }

    .service-steps {
        padding: 2rem 1.25rem;
    }

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

    .service-step {
        min-height: auto;
        padding-left: 1.35rem;
    }

    .service-step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -1rem;
        left: 2.45rem;
        width: 2px;
        height: 1rem;
    }

    .activity-header {
        padding: 2rem 1.25rem;
    }

    .activity-summary {
        grid-template-columns: 1fr;
    }

    .activity-summary-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .activity-summary-item:last-child {
        border-bottom: none;
    }

    .activity-months-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    footer h2 {
        font-size: 1.8rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .contact-card {
        grid-template-columns: 42px 1fr;
    }

    .contact-map {
        min-height: 320px;
    }

    .contact-map iframe {
        min-height: 280px;
    }
}

/* News & Events Page Styles */
.news-events .event-banner img {
    width: 100%;
    height: auto;
}

.news-events .event-details {
    padding: 20px;
    text-align: left;
}
