        main{
          box-sizing: border-box;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #ffffff;
            /* Using requested palette directly in gradient */
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background-attachment: fixed;
        }

        .room {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Glassmorphism Panels */
        .glass-panel {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            padding: 40px;
        }

        .glass-panel{
            text-align: center;
            margin-bottom: 50px;
        }

        .glass-panel h1{
            font-size: 3rem;
            color: #ffffff;
            margin: 0;
            letter-spacing: -1.5px;
        }

        .glass-panel p{
            font-size: 1.1rem;
            color: #b0bec5;
            max-width: 700px;
            margin: 15px auto 0;
        }

        .tagline {
            display: inline-block;
            background: rgba(44, 83, 100, 0.4); /* Based on #2c5364 */
            color: #ffffff;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
            color: #ffffff;
            margin: 0;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: #2c5364;
            bottom: 0;
            left: 20%;
            border-radius: 10px;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        li strong{
          color: #6fbff3;
        }
        h3{
         color: #69cde1;
        }
        .feature-card {
           text-align: left;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: rgba(44, 83, 100, 0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            color: #ffffff;
            margin-bottom: 20px;
            margin-top: 0;
        }

        .feature-card ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .feature-card li {
            margin-bottom: 15px;
            padding-left: 32px;
            position: relative;
            font-size: 1rem;
            color: #cfd8dc;
        }

        .feature-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #2c5364;
            font-weight: bold;
        }

        .location-bar {
            margin-top: 60px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .loc-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 25px;
            flex: 1 1 280px;
        }

        .loc-text strong {
            display: block;
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .loc-text {
            color: #b0bec5;
            font-size: 0.95rem;
        }

        .footer-cta {
            text-align: center;
            margin-top: 70px;
        }

        .btn {
            display: inline-block;
            background: #2c5364;
            color: #ffffff;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            font-size: 1rem;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn:hover {
            transform: scale(1.05);
            background: #52c8f1;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }

        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .details-grid { grid-template-columns: 1fr; }
            .room { padding: 30px 15px; }
            .glass-panel { padding: 30px; }
        }