        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .about-hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .about-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .about-hero-content {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .about-hero-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .about-hero-title {
            font-size: 48px;
            font-weight: 700;
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #FFD700;
        }

        .about-hero-button {
            display: inline-block;
            padding: 15px 40px;
            background: rgba(255, 192, 203, 0.9);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .about-hero-button:hover {
            background: rgba(255, 182, 193, 1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 192, 203, 0.4);
        }

        .about-values-section {
            padding: 80px 20px;
            background: #FFF0F5;
        }

        .about-values-container {
            max-width: 900px;
            margin: 0 auto;
        }

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

        .about-values-label {
            color: #D4A5A5;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .about-values-title {
            font-size: 38px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            font-family: 'Playfair Display', serif;
        }

        .about-values-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .about-value-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 35px 30px;
            background: transparent;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .about-value-item:first-child {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .about-value-item:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .about-value-icon-box {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            background: white;
            border: 1px solid #f0d0d0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding: 12px; */
        }

        .about-value-icon-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .about-value-content {
            flex: 1;
            padding-top: 5px;
        }

        .about-value-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif;
        }

        .about-value-description {
            font-size: 14px;
            line-height: 1.8;
            color: #5a5a5a;
            font-weight: 400;
        }

        @media (max-width: 768px) {
            .about-hero-title {
                font-size: 32px;
            }

            .about-values-title {
                font-size: 28px;
            }

            .about-value-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        .about-story-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #4A0725 0%, #4A0725 100%);
        }

        .about-story-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: stretch;
            gap: 0;
            background: transparent;
            padding: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .about-story-image-wrapper {
            flex: 1;
            min-width: 0;
            background: #FFC0CB;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-story-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .about-story-content {
            flex: 1;
            min-width: 0;
            background: #2D0A1C;
            padding: 50px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
        }

        .about-story-label {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }

        .about-story-title {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
            color: white;
        }

        .about-story-description {
            font-size: 13px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
        }

        @media (max-width: 968px) {
            .about-story-container {
                flex-direction: column;
            }

            .about-story-image-wrapper {
                padding: 30px;
            }

            .about-story-content {
                padding: 40px 30px;
            }

            .about-story-title {
                font-size: 20px;
            }
        }

        .about-journey-section {
            padding: 80px 20px;
            background: #FFF5F8;
        }

        .about-journey-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-journey-content {
            flex: 1;
            padding-right: 20px;
        }

        .about-journey-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #D4A5A5;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .about-journey-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
        }

        .about-journey-description {
            font-size: 14px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 30px;
            text-align: justify;
        }

        .about-journey-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-journey-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .about-journey-check {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .about-journey-item-content {
            flex: 1;
        }

        .about-journey-item-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }

        .about-journey-item-text {
            font-size: 13px;
            line-height: 1.7;
            color: #5a5a5a;
        }

        .about-journey-media {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .about-journey-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-journey-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(212, 165, 165, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding-left: 6px;
        }

        .about-journey-play-button:hover {
            background: rgba(212, 165, 165, 1);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(212, 165, 165, 0.5);
        }

        @media (max-width: 968px) {
            .about-journey-container {
                flex-direction: column;
                gap: 40px;
            }

            .about-journey-content {
                padding-right: 0;
            }

            .about-journey-title {
                font-size: 26px;
            }

            .about-journey-media {
                width: 100%;
                aspect-ratio: 16/9;
            }
        }