
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #fafaf7;
            color: #1e2a1c;
            line-height: 1.5;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 24px;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e2f;
            margin-bottom: 48px;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #d4a373;
            margin: 12px auto 0;
            border-radius: 2px;
        }
        .facility-grid {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }
        .facility-item {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }
        .facility-image {
            flex: 1;
            min-width: 250px;
            background: #e8e6dc;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .img-placeholder {
            width: 100%;
            height: 100%;
            min-height: 240px;
            background: #d4e0cf;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a6b52;
            font-size: 0.9rem;
            text-align: center;
        }
        .facility-text {
            flex: 2;
            padding: 32px 36px;
        }
        .facility-text h3 {
            font-size: 1.6rem;
            color: #539A3F;
            margin-bottom: 16px;
        }
        .facility-text p {
            color: #4a5b44;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .facility-text ul {
            padding-left: 20px;
            margin-top: 8px;
        }
        .facility-text li {
            color: #5a6b52;
            margin-bottom: 6px;
        }
        .badge {
            display: inline-block;
            background: #539A3F10;
            color: #539A3F;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .facility-item {
                flex-direction: column;
            }
            .facility-text {
                padding: 24px;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }
    