/* ========================================
   About Page Styles
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85) 0%, rgba(46, 134, 193, 0.85) 100%), 
                url('../img/about-header-bg.jpg') center center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 80px;
    margin-top: 100px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.page-desc {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 10px;
}

/* Sub Navigation */
.sub-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 129px;
    z-index: 99;
    margin-top: 0;
}

.sub-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.sub-menu li a {
    display: block;
    padding: 20px 40px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.sub-menu li a:hover,
.sub-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Section Label */
.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 36px;
}

.intro-message {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Doctors Section */
.doctors-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.doctor-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-image .image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.doctor-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.doctor-info {
    padding: 35px 30px;
}

.doctor-position {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.doctor-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.doctor-specialty {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.specialty-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.doctor-career {
    list-style: none;
    margin-bottom: 20px;
}

.doctor-career li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    line-height: 1.6;
}

.doctor-career i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 14px;
}

.doctor-message {
    font-size: 15px;
    color: var(--primary-color);
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.facility-image .image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
    margin-bottom: 20px;
}

.facility-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.facility-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.facility-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Hours Section */
.hours-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hours-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hours-card:hover {
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.hours-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.hours-table {
    width: 100%;
    margin-bottom: 20px;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    font-size: 15px;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-table td:last-child {
    color: var(--text-light);
}

.hours-table .holiday td {
    color: #e74c3c;
}

.notice {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item .phone-number {
    color: var(--primary-color);
}

.location-info {
    padding-top: var(--spacing-sm);
}

.location-info p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.location-info strong {
    display: inline;
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

.hours-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Active Nav Link */
.nav-menu a.active {
    color: var(--primary-color);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .sub-nav {
        top: 90px;
        overflow-x: auto;
    }
    
    .sub-menu {
        justify-content: start;
        min-width: max-content;
    }
    
    .sub-menu li a {
        padding: 15px 25px;
    }
    
    .intro-text .section-title {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 26px;
    }
    
    .intro-image .image-placeholder {
        height: 250px;
        font-size: 60px;
    }
    
    .doctor-image .image-placeholder {
        height: 250px;
        font-size: 60px;
    }
}





.insurance-section {
    padding: 60px 0;
}

.insurance-type {
    margin-bottom: 60px;
}

.type-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.type-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.type-title p {
    font-size: 16px;
    opacity: 0.9;
}

.type-content {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h3 i {
    color: var(--primary-color);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.documents-list {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.documents-list h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f57c00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.documents-list ul {
    list-style: none;
    padding: 0;
}

.documents-list ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #6d4c41;
    font-size: 15px;
    font-weight: 500;
}

.documents-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f57c00;
    font-weight: bold;
}

.notice-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.notice-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-box p {
    color: #0d47a1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.contact-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.contact-banner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-banner p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-method i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .type-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .type-title h2 {
        font-size: 24px;
    }
    
    .type-content {
        padding: 25px 20px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    .step-desc {
        font-size: 13px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
}




.pricing-section {
    padding: 60px 0;
}

.pricing-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.pricing-intro h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header i {
    font-size: 28px;
}

.category-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.pricing-table {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: #f8f9fa;
}

.pricing-row.table-header {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-row.table-header:hover {
    background: #f8f9fa;
}

.pricing-cell {
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.pricing-cell:not(:last-child) {
    border-right: 1px solid #e9ecef;
}

.pricing-cell.item {
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-cell.description {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-cell.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    justify-content: center;
}

.price-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 8px;
}

.price-note h4 {
    font-size: 16px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-note p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 8px;
}

.price-note p:last-child {
    margin-bottom: 0;
}

.contact-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.contact-banner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-banner p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-method i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        border-bottom: 2px solid #dee2e6;
        margin-bottom: 15px;
        background: #fff;
    }
    
    .pricing-row.table-header {
        display: none;
    }
    
    .pricing-row:last-child {
        margin-bottom: 0;
    }
    
    .pricing-cell {
        padding: 12px 20px;
        border-right: none;
        border-bottom: none;
        display: flex;
        align-items: flex-start;
    }
    
    .pricing-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        margin-right: 10px;
        min-width: 60px;
    }
    
    .pricing-cell.item::before {
        content: '항목: ';
    }
    
    .pricing-cell.description::before {
        content: '설명: ';
    }
    
    .pricing-cell.price {
        justify-content: flex-start;
        font-size: 20px;
        border-top: 1px solid #e9ecef;
        background: #f8f9fa;
    }
    
    .pricing-cell.price::before {
        content: '비용: ';
    }
    
    .category-header {
        padding: 18px 20px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
}



.location-page {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--bg-light);
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Noto Serif KR', serif;
}

.location-header p {
    font-size: 18px;
    color: var(--text-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.location-map {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 600px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--primary-color);
    font-size: 22px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.phone-number {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid #e9ecef;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 12px 0;
    font-size: 15px;
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.schedule-table td:last-child {
    color: var(--text-light);
}

.schedule-table .holiday {
    color: #e74c3c !important;
}

.transport-section {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.transport-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.transport-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.transport-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.transport-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .location-page {
        padding-top: 110px;
        padding-bottom: 60px;
    }
    
    .location-header h1 {
        font-size: 32px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map {
        height: 400px;
    }
    
    .transport-section {
        padding: 30px 20px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.policy-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.policy-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-header p {
    font-size: 15px;
    color: var(--text-light);
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid var(--primary-color);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
    list-style-type: disc;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
}

.policy-content th,
.policy-content td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.policy-content th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-box {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.policy-footer .btn {
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content h3 {
        font-size: 16px;
    }

    .policy-content table {
        font-size: 13px;
    }

    .policy-content th,
    .policy-content td {
        padding: 10px;
    }
}

