
    .property-hero {
        position: relative;
        height: 60vh;
        overflow: hidden;
    }

    .property-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

    .property-hero-content {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        color: white;
    }

    .property-hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .property-hero-location {
        font-size: 1.2rem;
    }

    .property-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .property-details {
        display: grid;
        gap: 1rem;
    }

    .property-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .property-info-item {
        padding: 1rem;
        background: #f5f5f5;
        border-radius: 8px;
    }

    .property-carousel {
        position: relative;
        margin: 2rem 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .property-carousel img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .property-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .property-carousel-button {
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .property-form {
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .property-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .property-form-group {
        margin-bottom: 1rem;
    }

    .property-form-label {
        display: block;
        margin-bottom: 0.5rem;
    }

    .property-form-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .property-form-button {
        width: 100%;
        padding: 1rem;
        background: var(--secondary-color);
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
    }

    .property-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        text-align: center;
    }

    .property-feature-card {
        padding: 2rem;
    }

    .property-feature-icon {
        color: var(--secondary-color);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .property-feature-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .property-feature-text {
        color: #666;
        line-height: 1.6;
    }

    .property-download-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: var(--secondary-color);
        color: white;
        text-decoration: none;
        border-radius: 4px;
        margin: 2rem 0;
    }

    @media (max-width: 768px) {
        .property-container {
            grid-template-columns: 1fr;
        }

        .property-features {
            grid-template-columns: 1fr;
        }

        .property-hero-title {
            font-size: 2rem;
        }
    }
