:root {
        --primary-color: #009b6e;
        --secondary-color: #ffd47d;
        --accent-color: #D4AF37;
        --text-dark: #2d2d2d;
        --text-light: #666;
        --bg-light: #fafafa;
        --white: #ffffff;
        --shadow: 0 4px 20px rgba(0,0,0,0.08);
        --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    }

    .about-page {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
    }

    /* Breadcrumb */
    .breadcrumb {
        background: var(--bg-light);
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    .breadcrumb a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .breadcrumb span {
        margin: 0 8px;
        color: var(--text-light);
    }

    /* Hero Section - Compact */
    .about-hero {
        background: linear-gradient(135deg, var(--primary-color) 0%, #ffd47d 100%);
        color: var(--white);
        padding: 50px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
	
	.text-align: {
		text-align: justify;
	}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
        background-size: 100px 100px;
        opacity: 0.3;
    }

    .about-hero h1 {
        font-size: 2.8rem;
        margin: 0 0 15px 0;
        font-weight: 700;
        position: relative;
        letter-spacing: -0.5px;
    }

    .about-hero .subtitle {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        line-height: 1.7;
        position: relative;
        font-weight: 300;
    }

    /* Main Content Container */
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Story Section - Grid Layout */
    .story-section {
        padding: 60px 0;
    }

    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: start;
    }

    .image-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        position: sticky;
        top: 20px;
    }

    .image-gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-gallery img:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .image-gallery .img-large {
        grid-column: 1 / -1;
        height: 300px;
    }

    .story-content h2 {
        color: var(--primary-color);
        font-size: 2.2rem;
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.2;
    }

    .story-content p {
        margin: 0 0 18px 0;
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.8;
		text-align:justify;
    }

    /* 24/7 Banner - Integrated */
    .hours-banner {
        background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
        border-left: 4px solid var(--primary-color);
        padding: 25px 30px;
        margin: 30px 0;
        border-radius: 0 12px 12px 0;
        box-shadow: var(--shadow);
    }

    .hours-banner h3 {
        color: var(--primary-color);
        margin: 0 0 10px 0;
        font-size: 1.4rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hours-banner h3::before {
        content: '🕐';
        font-size: 1.6rem;
    }

    .hours-banner p {
        margin: 0;
        color: var(--text-light);
        line-height: 1.7;
    }

    /* Vision & Mission - Compact Cards */
    .vision-mission-section {
        background: var(--bg-light);
        padding: 50px 0;
        margin-top: 40px;
    }

    .vm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .vm-card {
        background: var(--white);
        padding: 35px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vm-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .vm-card h3 {
        color: var(--primary-color);
        font-size: 1.6rem;
        margin: 0 0 15px 0;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .vm-card .icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color), #a01d4a);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
    }

    .vm-card p {
        margin: 0;
        color: var(--text-light);
        line-height: 1.8;
        font-size: 1rem;
		text-align:justify;
    }
	.kns-image-grid .image-item:first-child {
		grid-column: 1 / -1;
	}
    /* Responsive */
    @media (max-width: 968px) {
        .story-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .image-gallery {
            position: relative;
            top: 0;
        }

        .vm-grid {
            grid-template-columns: 1fr;
        }

        .about-hero h1 {
            font-size: 2.2rem;
        }

        .story-content h2 {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 600px) {
        .image-gallery {
            grid-template-columns: 1fr;
        }

        .image-gallery .img-large {
            grid-column: 1;
        }

        .about-hero {
            padding: 40px 0;
        }

        .about-hero h1 {
            font-size: 1.8rem;
        }

        .story-section {
            padding: 40px 0;
        }
    }