
        body {
            line-height: 1.7;
            color: #2d2d2d;
            background: linear-gradient(135deg, #fdfbf9 0%, #f9f5f0 50%, #fdf9f5 100%);
        }

        .ss-main-wrapper {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .ss-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Section */
        .ss-hero {
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
        }

        .ss-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 139, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .ss-hero-subtitle {
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #daa11f;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .ss-hero-title {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .ss-hero-title span {
            color: #daa11f;
            font-style: italic;
        }

        .ss-divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #daa11f, transparent);
            margin: 0 auto 0px;
        }

        .ss-hero-brand {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 8px;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .ss-hero-tagline {
            font-size: 15px;
            color: #666;
            max-width: 650px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Story Section */
        .ss-story-section {
            padding: 60px 0;
            background: #ffffff;
        }

        .ss-section-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .ss-section-label {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #daa11f;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .ss-section-title {
            font-size: clamp(26px, 4vw, 38px);
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .ss-story-content {
            display: grid;
            gap: 30px;
        }

        .ss-story-card {
            background: linear-gradient(145deg, #fdfbf9 0%, #f8f4ef 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(184, 149, 110, 0.15);
            position: relative;
            overflow: hidden;
        }

        .ss-story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #daa11f, #d4af8b);
        }

        .ss-story-text {
            font-size: 15px;
            color: #4a4a4a;
            line-height: 1.9;
        }

        .ss-story-text p {
            margin-bottom: 20px;
        }

        .ss-story-text p:last-child {
            margin-bottom: 0;
        }

        .ss-highlight {
            color: #daa11f;
            font-weight: 500;
        }

        /* Thought Section */
        .ss-thought-section {
            padding: 70px 0;
            background: linear-gradient(180deg, #f9f5f0 0%, #fdfbf9 100%);
        }

        .ss-thought-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .ss-thought-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .ss-thought-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(184, 149, 110, 0.08);
            border: 1px solid rgba(184, 149, 110, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ss-thought-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(184, 149, 110, 0.12);
        }

        .ss-thought-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f9f5f0 0%, #f3ebe0 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .ss-thought-icon svg {
            width: 32px;
            height: 32px;
            color: #daa11f;
        }

        .ss-thought-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .ss-thought-subtitle {
            font-size: 13px;
            color: #daa11f;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .ss-thought-text {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Mission Vision Section */
        .ss-mv-section {
            padding: 70px 0;
            background: #ffffff;
        }

        .ss-mv-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .ss-mv-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .ss-mv-card {
            padding: 30px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .ss-mv-mission {
            background: linear-gradient(145deg, #fdfbf9 0%, #f8f4ef 100%);
            border: 1px solid rgba(184, 149, 110, 0.2);
        }

        .ss-mv-vision {
            background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .ss-mv-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .ss-mv-mission .ss-mv-icon {
            background: linear-gradient(135deg, #daa11f 0%, #d4af8b 100%);
        }

        .ss-mv-vision .ss-mv-icon {
            background: rgba(184, 149, 110, 0.2);
        }

        .ss-mv-icon svg {
            width: 28px;
            height: 28px;
        }

        .ss-mv-mission .ss-mv-icon svg {
            color: #ffffff;
        }

        .ss-mv-vision .ss-mv-icon svg {
            color: #daa11f;
        }

        .ss-mv-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .ss-mv-mission .ss-mv-label {
            color: #daa11f;
        }

        .ss-mv-vision .ss-mv-label {
            color: #daa11f;
        }

        .ss-mv-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .ss-mv-mission .ss-mv-title {
            color: #1a1a1a;
        }

        .ss-mv-vision .ss-mv-title {
            color: #ffffff;
        }

        .ss-mv-text {
            font-size: 14px;
            line-height: 1.8;
        }

        .ss-mv-mission .ss-mv-text {
            color: #5a5a5a;
            margin-bottom: 0;
        }

        .ss-mv-vision .ss-mv-text {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Safety Section */
        .ss-safety-section {
            padding: 70px 0;
            background: linear-gradient(180deg, #f9f5f0 0%, #fdfbf9 100%);
        }

        .ss-safety-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .ss-safety-intro-text {
            font-size: 16px;
            color: #5a5a5a;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .ss-safety-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (min-width: 640px) {
            .ss-safety-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .ss-safety-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .ss-safety-item {
            background: #ffffff;
            border-radius: 20px;
            padding: 20px 20px;
            text-align: center;
            border: 1px solid rgba(184, 149, 110, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ss-safety-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(184, 149, 110, 0.15);
        }

        .ss-safety-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f9f5f0 0%, #f3ebe0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            border: 2px solid rgba(184, 149, 110, 0.2);
        }

        .ss-safety-icon img {
            width: 32px;
            height: 32px;
        }

        .ss-safety-label {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: 1px;
        }

        .ss-safety-note {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(184, 149, 110, 0.15);
        }

        .ss-safety-note-text {
            font-size: 17px;
            color: #5a5a5a;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* CTA Section */
        .ss-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .ss-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(184, 149, 110, 0.05) 0%, transparent 50%);
        }

        .ss-cta-content {
            position: relative;
            z-index: 1;
        }

        .ss-cta-brand {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 6px;
            color: #daa11f;
            margin-bottom: 20px;
        }

        .ss-cta-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .ss-cta-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.8;
            letter-spacing: 1px;
        }

        .ss-cta-tagline {
            font-size: 15px;
            color: #daa11f;
            font-style: italic;
            letter-spacing: 2px;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .ss-hero {
                padding: 50px 0 40px;
            }

            .ss-hero-title {
                font-size: 28px;
            }

            .ss-thought-grid {
                grid-template-columns: 1fr;
            }

            .ss-mv-grid {
                grid-template-columns: 1fr;
            }
        }
