<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Oswald", sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 200;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 2rem;
}

/* Äá»ƒ trÃ¡nh content bá»‹ che bá»Ÿi header */
body {
    padding-top: 90px; /* TÃ¹y theo chiá»u cao header */
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-text {
    color: #2c5aa0;
    width: 200px;
}
.logo-text img {
    max-width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f39c12;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
    padding: 3rem 2rem;
    position: relative;
    height: 450px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.property-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.property-address {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* For Sale Badge */
.for-sale-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #2c5aa0;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    z-index: 10;
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Hide Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #f39c12;
    opacity: 1;
}

/* Hide Play/Pause Button */
.play-pause-btn {
    display: none;
}

/* Property Details Section */
.property-details {
    background: white;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 200px;
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.suite-table {
    background: #2c5aa0;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.suite-table-header {
    background: #1e3a5f;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.suite-table-row {
    padding: 1rem 2rem;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.1rem;
}
.offering-section a {
    color: #fff;
    display: block;
    font-size: 18px;
    text-decoration: none;
}
.offering-section h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.offering-memorandum {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 0.8rem;
}

.memorandum-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.download-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 0.1rem 1.5rem 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.download-overlay:hover {
    background: #e67e22;
    transform: translateY(-2px);
}
.overview-section {
    font-weight: 300;
    font-size: 17px;
}
.overview-section h2 {
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.overview-section h2 span {
    color: #2c5aa0;
}

.overview-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: 'â€¢';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .swiper {
        padding: 30px 0 30px 0 !important;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .property-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .main-content {
        min-height: auto;
        padding: 1rem 1rem;
        height: 400px;
    }

    .for-sale-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .swiper-slide img {
        height: 300px;
    }

    .property-details {
        margin-top: 0;
        padding: 2rem 1rem;
    }

    .details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .suite-table-header,
    .suite-table-row {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .overview-section h2, .overview-description, .offering-memorandum {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .overview-description {
        font-size: 1rem;
    }

    .memorandum-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

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

    .property-address {
        font-size: 1rem;
    }

    .swiper-slide img {
        height: 250px !important;
    }

    .overview-section h2, .offering-section h3 {
        font-size: 1.5rem;
    }
    .overview-section {
        text-align: justify;
    }

    .suite-table-header,
    .suite-table-row {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
}

/* Background Pattern */
.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    pointer-events: none;
}</pre></body></html>