        :root {
            --pastel-pink: #FFEDED;
            --pastel-blue: #E8F5FF;
            --pastel-mint: #E8FFF4;
            --pastel-lavender: #F5ECFF;
            --pastel-peach: #FFEFD6;
            --pastel-sun: #FFF2A6;
            --text-dark: #3F3F3F;
            --text-light: #5F5F5F;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html, body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }

        nav, section, footer {
            max-width: 100%;
        }

        .navbar,
        .hero-section {
            overflow-x: hidden;
        }

        .brand-logo {
            height: 60px;
            width: auto;
            margin-right: 12px;
            object-fit: contain;
        }

        /* Hero Section */
        .hero-section {
            background: url("/static/images/home_page.jpg");
            background-size: cover;
            background-position: center;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-section--home {
            background-position: center 40%;
        }

        .hero-section--neutral {
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
                radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.28), transparent 60%),
                linear-gradient(135deg, rgba(255, 246, 188, 0.78) 0%, rgba(255, 233, 150, 0.72) 100%),
                linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
        }

        .hero-section--baby {
            background: url("/static/images/baby_suitcase.jpg");
            background-size: cover;
            background-position: 50% 20%;
        }

        .hero-section--contact {
            background: url("/static/images/contact_image.jpg");
            background-size: cover;
            background-position: center;
        }

        .hero-section--contact .hero-content h1,
        .hero-section--contact .hero-content p {
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .hero-section--mobility {
            background: url("/static/images/mobility_beach.jpg");
            background-size: cover;
            background-position: center;
        }

        .hero-section--aircon {
            background: url("/static/images/hammock_relax.jpg");
            background-size: cover;
            background-position: center;
        }

        .hero-section--beach {
            background: url("/static/images/deckchair.jpg");
            background-size: cover;
            background-position: center 80%;
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 1;
            background: rgba(6, 144, 224, 0.35);
            padding: 30px 28px;
            border-radius: 18px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
        }

        .hero-content p {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-image {
            width: min(620px, 100%);
            max-height: 280px;
            object-fit: cover;
            border-radius: 18px;
            margin: 10px auto 26px;
            display: block;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        }

        .hero-strip {
            background: #ffffff;
            padding: 40px 0 30px;
        }

        .strip-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .strip-subtitle {
            text-align: center;
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .strip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 14px;
        }

        .strip-grid img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            object-position: center;
            border-radius: 14px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .strip-grid img.strip-image--contain {
            object-fit: contain;
            background: #ffffff;
        }

        .strip-grid img.strip-image--high-chair {
            object-position: 50% 20%;
        }

        .strip-grid img.strip-image--cot-folding {
            object-position: 50% 45%;
        }

        .strip-grid img.strip-image--cot-wood {
            object-position: 50% 35%;
        }

        .strip-grid img.strip-image--pushchair {
            object-position: 50% 30%;
        }

        .strip-grid img.strip-image--aircon {
            object-position: 50% 40%;
        }

        .strip-grid img.strip-image--wheelchair {
            object-position: 50% 35%;
        }

        .strip-grid img.strip-image--walker {
            object-position: 50% 30%;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            background: var(--pastel-sun);
            color: var(--text-dark);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            color: var(--text-dark);
        }

        .contact-card {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.8);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            color: var(--text-dark);
        }

        .price-list {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .price-item {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

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

        .price-item span {
            color: var(--text-dark);
        }

        .price-item strong {
            color: var(--text-dark);
            white-space: nowrap;
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .feature-card--auto {
            height: auto;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-card.pink { background: var(--pastel-pink); }
        .feature-card.blue { background: var(--pastel-blue); }
        .feature-card.mint { background: var(--pastel-mint); }
        .feature-card.lavender { background: var(--pastel-lavender); }
        .feature-card.peach { background: var(--pastel-peach); }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
        }

        .image-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--pastel-sun) 0%, var(--pastel-mint) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        /* Image Gallery Section */
        .gallery-section {
            background: linear-gradient(135deg, var(--pastel-sun) 0%, var(--pastel-mint) 100%);
            padding: 80px 0;
        }

        .gallery-item {
            margin-bottom: 30px;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-placeholder {
            width: 100%;
            min-height: 300px;
            background: white;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            color: var(--text-light);
            font-size: 1.1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }

        .gallery-placeholder h4 {
            margin-top: 5px;
        }

        .gallery-text {
            margin-top: 10px;
            padding: 0 10px;
            flex: 1 1 auto;
        }

        .gallery-btn {
            margin-top: 15px;
        }

        @media (min-width: 768px) {
            .gallery-item {
                display: flex;
            }

            .gallery-placeholder {
                height: 100%;
            }
        }

        @media (max-width: 576px) {
            .gallery-placeholder {
                padding: 18px 16px;
            }

            .gallery-text {
                padding: 0;
                font-size: 1rem;
            }

            .gallery-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .contact-link {
                display: inline-block;
                max-width: 100%;
                white-space: normal;
                text-align: center;
                overflow-wrap: anywhere;
                word-break: break-word;
            }
        }

        .gallery-placeholder .icon {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        /* Call to Action */
        .cta-section {
            background: var(--pastel-sun);
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .cta-section .cta-line {
            display: block;
        }

        .cta-btn {
            background: var(--text-dark);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: var(--text-light);
            color: white;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-sun) 100%);
            padding: 60px 0;
        }

        .footer-card {
            background: white;
            border-radius: 22px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .footer h5 {
            color: var(--text-dark);
            font-weight: 700;
        }

        .footer p {
            color: var(--text-light);
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--text-light);
        }

        .footer-divider {
            border-color: rgba(0, 0, 0, 0.08);
            margin: 25px 0 15px;
        }

        .navbar .container {
            flex-wrap: wrap;
        }

        .navbar-brand {
            white-space: normal;
            overflow-wrap: anywhere;
            flex: 1 1 auto;
            min-width: 0;
        }

        @media (max-width: 768px) {
            .hero-section--home {
                background-position: 68% 40%;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .strip-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1rem;
                line-height: 1.2;
                max-width: calc(100% - 60px);
            }
        }

        @media (min-width: 1200px) {
            .hero-section--home {
                min-height: 70vh;
                background-position: center 80%;
            }
        }

        @media (min-width: 1200px) {
            .hero-section--baby {
                min-height: 70vh;
                background-position: center 30%;
            }
        }

        @media (min-width: 1200px) {
            .hero-section--aircon {
                min-height: 70vh;
                background-position: center 30%;
            }
        }

        @media (min-width: 1200px) {
            .hero-section--mobility {
                min-height: 70vh;
                background-position: center 30%;
            }
        }

        @media (min-width: 1200px) {
            .hero-section--beach {
                min-height: 70vh;
                background-position: center 80%;
            }
        }

        @media (min-width: 1200px) {
            .hero-section--contact {
                min-height: 70vh;
                background-position: center 50%;
            }
        }