﻿:root {
            /* Colors extracted from reference */
            --color-bg: #fcfcfd;
            --color-text-main: #000000;
            --color-text-muted: #737373;
            --color-primary: #2d2d2d;
            --color-primary-hover: #1f1f1f;
            --color-secondary: #9b8ef6;
            --color-secondary-hover: #8678e0;
            --color-nav-bg: rgba(244, 244, 246, 0.85);
            --color-nav-hover: #ffffff;
            --color-accent-green: #d2ec9f;
            --color-white: #ffffff;

            /* Shadows */
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

            /* Border Radii */
            --br-sm: 8px;
            --br-md: 12px;
            --br-lg: 16px;
            --br-full: 9999px;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text-main);
            overflow-x: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* === BACKGROUND === */
        /* Isometric Architecture Background Wrapper */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
            background-color: #e5e5eb;
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            /* Modern apartment buildings */
            background-size: cover;
            background-position: center 60%;
            opacity: 0.35;
            filter: grayscale(100%) contrast(160%) brightness(105%);
        }

        /* Lighting overlay for the text */
        .hero-gradient {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center 30%, rgba(252, 252, 253, 0.9) 0%, rgba(252, 252, 253, 0.6) 40%, rgba(252, 252, 253, 0.9) 100%);
            z-index: -1;
            pointer-events: none;
        }

        /* === LAYOUT === */
        /* Common container class */
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2.5rem;
            width: 100%;
        }

        main {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* === HEADER === */
        header {
            width: 100%;
            padding: 1.5rem 0;
            position: relative;
            z-index: 20;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.04em;
            color: var(--color-text-main);
            text-decoration: none;
        }

        .brand-logo iconify-icon {
            font-size: 2.2rem;
        }

        .header-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.25rem;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            border-radius: var(--br-sm);
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background-color: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* --- Menu Toggle Button --- */
        .menu-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.25rem;
            font-weight: 600;
            font-size: 0.9rem;
            background-color: var(--color-nav-bg);
            color: var(--color-text-main);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: var(--br-sm);
            cursor: pointer;
            backdrop-filter: blur(16px);
            transition: all 0.2s ease;
            z-index: 30;
            position: relative;
        }

        .menu-toggle:hover {
            background-color: var(--color-nav-hover);
            box-shadow: var(--shadow-sm);
        }

        /* --- Sidebar Navigation --- */
        .sidebar-menu {
            position: absolute;
            top: 100%;
            margin-top: 1.5rem;
            right: 2.5rem;
            background: var(--color-nav-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: var(--br-md);
            padding: 1rem;
            width: 250px;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            z-index: 20;

            /* Hidden by default */
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sidebar-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.1rem 1rem;
            text-decoration: none;
            color: var(--color-text-main);
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: var(--br-sm);
            transition: all 0.2s ease;
        }

        .nav-btn:hover {
            background-color: var(--color-nav-hover);
            box-shadow: var(--shadow-sm);
        }

        .nav-btn span {
            flex: 1;
        }

        .nav-btn iconify-icon {
            transition: transform 0.2s ease;
            color: var(--color-text-muted);
            font-size: 1.1rem;
        }

        .nav-btn:hover iconify-icon {
            transform: translateX(4px);
            color: var(--color-text-main);
        }

        /* Social Area */
        .nav-socials {
            display: flex;
            justify-content: flex-start;
            gap: 0.75rem;
            margin-top: 0.75rem;
            padding: 0.75rem 1rem 0;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .social-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.04);
            border-radius: var(--br-sm);
            color: var(--color-text-main);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 1rem;
        }

        .social-btn:hover {
            background: rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        /* === HERO SECTION === */
        #hero {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            z-index: 40;
            /* Crucial: Hero must have a higher z-index than #features (20) so the phone child floats over features */
        }

        .hero-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 8vh;
            text-align: center;
            position: relative;
            z-index: 5;
            min-height: calc(100vh - 100px);
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-subtitle {
            font-size: 1.35rem;
            color: var(--color-text-muted);
            font-weight: 500;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .hero-title {
            font-size: clamp(3.5rem, 8vw, 7.5rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            color: var(--color-text-main);
            margin: 0;
        }

        /* --- Floating Markers (Prices) --- */
        .map-marker {
            position: absolute;
            background: var(--color-white);
            padding: 0.5rem 1rem;
            border-radius: var(--br-full);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: var(--shadow-md);
            font-weight: 700;
            font-size: 0.95rem;
            z-index: 10;
            animation: float 5s ease-in-out infinite;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .map-marker:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px) scale(1.02) !important;
        }

        .marker-icon {
            background: var(--color-accent-green);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b4e13;
            /* Dark green for icon */
            font-size: 1rem;
        }

        /* Complex Black Marker with Avatar */
        .marker-special {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 0.6rem;
            border-radius: var(--br-lg);
            padding-right: 1.25rem;
        }

        .marker-special .marker-thumb {
            width: 40px;
            height: 40px;
            border-radius: var(--br-sm);
            object-fit: cover;
        }

        .marker-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--color-accent-green);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--color-bg);
            color: #3b4e13;
            font-size: 0.85rem;
        }

        /* Positioning the markers to distribute randomly around the screen */
        .marker1 {
            top: 40%;
            left: 20%;
            animation-delay: 0s;
        }

        .marker2 {
            top: 65%;
            left: 35%;
            animation-delay: 1.2s;
            flex-direction: row;
            gap: 0.75rem;
        }

        .marker3 {
            top: 60%;
            right: 30%;
            animation-delay: 0.5s;
        }

        .marker4 {
            bottom: 15%;
            right: 15%;
            animation-delay: 2s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* --- Mobile App Parallax --- */
        .hero-app-container {
            position: absolute;
            bottom: -30%;
            /* Start higher in Hero area so 70% is visible over the map */
            left: 50%;
            transform: translateX(-50%);
            width: 320px;
            height: auto;
            z-index: 50;
            /* Significantly higher z-index to stay above everything */
            transition: transform 0.15s ease-out;
            /* Smooth JS scrolling */
        }

        .hero-app-mockup {
            width: 100%;
            height: auto;
            /* removed border-radius and box-shadow because the PNG has its own shape and dropshadow baked-in */
        }

        /* === BENTO SECTION === */
        #bento-features {
            background-color: var(--color-bg);
            /* light grey background of the site */
            padding: 8rem 0;
            position: relative;
            z-index: 20;
        }

        .bento-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .bento-title-main {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bento-card {
            border-radius: 32px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .bento-title {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.5rem;
            z-index: 2;
        }

        .bento-desc {
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--color-text-muted);
            margin-bottom: 3rem;
            max-width: 85%;
            z-index: 2;
        }

        /* Color variations matching site palette */
        .bento-light {
            background-color: var(--color-white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-sm);
        }

        .bento-purple {
            background-color: #f6f5ff;
            /* very light version of secondary #9b8ef6 */
            border: 1px solid rgba(155, 142, 246, 0.15);
        }

        .bento-purple .bento-title {
            color: #5846c4;
        }

        .bento-green {
            background-color: #f4fce6;
            /* very light version of green #d2ec9f */
            border: 1px solid rgba(210, 236, 159, 0.4);
        }

        .bento-green .bento-title {
            color: #4e6321;
        }

        .bento-dark {
            background-color: var(--color-primary);
            color: var(--color-white);
            border: none;
        }

        .bento-dark .bento-title {
            color: var(--color-white);
        }

        .bento-dark .bento-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Spans */
        .bento-span-col-2 {
            grid-column: span 2;
        }

        .bento-span-row-2 {
            grid-row: span 2;
        }

        /* Decorative mock UI elements inside bento cards */
        .mock-ui {
            background: var(--color-white);
            border-radius: var(--br-md);
            box-shadow: var(--shadow-md);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            border: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 2;
        }

        .bento-dark .mock-ui {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: none;
        }

        .mock-icon-wrap {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--color-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            color: var(--color-primary);
        }

        .bento-dark .mock-icon-wrap {
            background: rgba(255, 255, 255, 0.1);
            color: var(--color-white);
        }

        .mock-text {
            flex: 1;
        }

        .mock-text-line {
            height: 8px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.1);
            margin-bottom: 6px;
        }

        .mock-text-line:last-child {
            margin-bottom: 0;
            width: 60%;
        }

        .bento-dark .mock-text-line {
            background: rgba(255, 255, 255, 0.2);
        }

        .bento-tag {
            background: var(--color-accent-green);
            color: #3b4e13;
            padding: 0.35rem 0.8rem;
            border-radius: var(--br-sm);
            font-size: 0.8rem;
            font-weight: 700;
            margin-top: auto;
            align-self: flex-start;
            z-index: 2;
        }

        /* Background decor elements */
        .bento-decor {
            position: absolute;
            opacity: 0.05;
            font-size: 12rem;
            z-index: 1;
            right: -20px;
            bottom: -30px;
            transform: rotate(-15deg);
        }

        .bento-dark .bento-decor {
            opacity: 0.05;
            color: white;
        }

        /* === EXCLUSIVE SECTION === */
        #exclusive {
            background-color: var(--color-bg);
            /* #fcfcfd */
            padding: 8rem 0;
            position: relative;
        }

        .exclusive-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 1.5rem;
        }

        .exclusive-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 6rem;
        }

        .exclusive-title {
            font-size: clamp(2.5rem, 4.5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
        }

        .exclusive-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Left visual side */
        .exclusive-visuals {
            position: relative;
            height: 600px;
            /* Base height for the composition */
        }

        /* Background image of the buyer */
        .exclusive-bg-img {
            position: absolute;
            left: 0;
            top: 20px;
            width: 75%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: var(--shadow-md);
            z-index: 1;
        }

        /* Foreground phone image */
        .exclusive-phone {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            z-index: 2;
            transform: translateY(20px);
            filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
        }

        /* Floating interaction card */
        .exclusive-card {
            position: absolute;
            right: -20px;
            bottom: 40px;
            background: white;
            border-radius: var(--br-md);
            padding: 1.25rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            min-width: 250px;
        }

        .exclusive-card-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .exclusive-price {
            font-size: 1.25rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .exclusive-price-old {
            font-size: 0.9rem;
            color: #ff4b4b;
            text-decoration: line-through;
            font-weight: 600;
        }

        .exclusive-card-desc {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            line-height: 1.3;
        }

        .exclusive-status {
            text-align: right;
        }

        .exclusive-status span {
            display: block;
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }

        .btn-reserve {
            background: #e9fbc4;
            color: #3b4e13;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: var(--br-full);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-reserve:hover {
            background: #d4f59e;
        }

        /* Right text side */
        .exclusive-text {
            padding-left: 2rem;
        }

        .exclusive-text-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .exclusive-text-p {
            font-size: 1.2rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        #features {
            background-color: var(--color-white);
            padding: 8rem 0;
            position: relative;
            z-index: 20;
            /* Keep this lower than hero-app-container */
        }

        .features-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 6rem;
        }

        .features-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 320px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        /* Center column placeholder for the scrolling app */
        .app-placeholder {
            width: 100%;
            height: 600px;
        }

        .feature-block {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-block-left {
            align-items: flex-end;
            text-align: right;
            padding-right: 2rem;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-block-right {
            align-items: flex-start;
            text-align: left;
            padding-left: 2rem;
            border-left: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .feature-desc {
            color: var(--color-text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .feature-img-card {
            background: var(--color-bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: var(--br-md);
            padding: 1rem;
            box-shadow: var(--shadow-sm);
            margin-top: 1.5rem;
            position: relative;
        }

        .feature-img-card img {
            width: 100%;
            border-radius: var(--br-sm);
            object-fit: cover;
        }

        .feature-stat {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.05em;
            margin-top: 1rem;
        }

        /* === FOOTER === */
        .site-footer {
            background-color: #0d1117;
            color: #d1d5db;
            padding: 4.5rem 0 0;
            position: relative;
            z-index: 20;
            font-family: 'Inter', sans-serif;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
            gap: 2rem;
            margin-bottom: 3.5rem;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            font-size: 1.3rem;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .footer-logo iconify-icon {
            font-size: 1.8rem;
            color: #ffffff;
        }

        .footer-desc {
            color: #9ca3af;
            line-height: 1.6;
            font-size: 0.85rem;
            max-width: 90%;
        }

        .footer-title {
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: #d1d5db;
            font-size: 0.85rem;
            line-height: 1.4;
            text-decoration: none;
        }

        .footer-contact-item a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-contact-item a:hover {
            color: #ffffff;
        }

        .footer-contact-item iconify-icon {
            font-size: 1.2rem;
            margin-top: 1px;
        }

        .footer-subtext {
            display: block;
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }

        .footer-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.25rem;
            height: 44px;
        }

        .footer-form input {
            flex: 1;
            background-color: #1f2937;
            border: 1px solid #374151;
            padding: 0 1rem;
            border-radius: var(--br-sm);
            color: #ffffff;
            font-size: 0.85rem;
            outline: none;
            transition: border-color 0.2s;
            height: 100%;
        }

        .footer-form input::placeholder {
            color: #6b7280;
        }

        .footer-form input:focus {
            border-color: #ff2a2a;
        }

        .footer-form button {
            background-color: #e51c23;
            color: #ffffff;
            border: none;
            width: 44px;
            border-radius: var(--br-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s;
            font-size: 1.5rem;
            font-weight: 400;
            height: 100%;
        }

        .footer-form button:hover {
            background-color: #d32f2f;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #1f2937;
            padding: 2rem 0;
            color: #6b7280;
            font-size: 0.8rem;
        }

        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        /* === Media Queries === */
        @media (max-width: 1024px) {
            .sidebar-menu {
                position: absolute;
                right: 2.5rem;
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .marker1,
            .marker4 {
                display: none;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .app-placeholder {
                display: none;
            }

            .hero-app-container {
                display: none;
                /* Disable parallax on tablet/mobile for simplicity */
            }

            .feature-block-left,
            .feature-block-right {
                align-items: center;
                text-align: center;
                padding: 0;
                border: none;
            }

            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 1.5rem;
            }

            .bento-span-col-2 {
                grid-column: span 2;
            }

            .bento-span-row-2 {
                grid-row: span 1;
            }
        }

        @media (max-width: 1024px) {
            .exclusive-layout {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .exclusive-visuals {
                height: 500px;
                max-width: 600px;
                margin: 0 auto;
            }

            .exclusive-text {
                padding-left: 0;
                text-align: center;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .header-actions {
                display: none;
            }

            .hero-container {
                padding-top: 15vh;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .map-marker {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }

            .marker-icon {
                width: 24px;
                height: 24px;
                font-size: 0.85rem;
            }

            .marker-special {
                display: none;
            }

            .sidebar-menu {
                right: 1.5rem;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-span-col-2,
            .bento-span-row-2 {
                grid-column: span 1;
                grid-row: span 1;
            }
        }