* { box-sizing: border-box; margin: 0; padding: 0; }

        .property-details {
            background: rgba(255, 255, 255, 0.85);
            padding: 1.5rem;
            border-radius: 8px;
            color: #000;
            margin: 2rem 0;
            text-align: left;
        }
        .property-details ul {
            list-style: none;
            padding: 0;
        }
        .property-details li {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        .property-details a {
            color: #007bff;
            text-decoration: none;
        }
        .property-details a:hover {
            text-decoration: underline;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            background-color: #e4f2fd;
            color: #333;
        }

        .hero-content {
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            margin: 0 auto;
        }
        
        .hero-image {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .coming-soon {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        .signup-container {
            background: rgba(0, 0, 0, 0.4);
            padding: 2rem;
            border-radius: 8px;
            margin: 0 1rem;
        }

        .signup-text {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .signup-form input,
        .signup-form button {
            width: 100%;
            min-height: 44px;
        }

        .signup-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
        }

        .signup-form button {
            background: #007bff;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .signup-form button:hover {
            background: #0056b3;
        }

        .form-status {
            margin-top: 1rem;
            padding: 0.5rem;
            border-radius: 4px;
            font-weight: 500;
        }

        .form-status.success {
            color: #98ff98;
        }
        .form-status.error {
            color: #ffb6c1;
        }
        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
        }

        .slide {
            display: none;
            width: 100%;
            height: auto;
        }

        .active-slide {
            display: block;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 1rem;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            border: none;
            background-color: rgba(0,0,0,0.4);
            user-select: none;
            transition: background-color 0.3s;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.6);
        }

        .prev {
            left: 0;
            border-radius: 0 3px 3px 0;
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }


        @media (min-width: 768px) {
            .signup-form {
                flex-direction: row;
                gap: 0.5rem;
            }

            .signup-form input {
                flex: 1;
            }

            .signup-form button {
                width: auto;
            }

        }