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

        body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        /*font-family: "Momo Trust Sans", sans-serif;*/
        background: #f5f5f5;
        color: #333;
        }

        /* Header */
        header {
        background: linear-gradient(135deg, #667eea 0%, #57C785 100%);
        color: white;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
        font-size: 28px;
        font-weight: bold;
        color: white;
        border: none;
        background: none;
        }

        nav a {
        color: white;
        text-decoration: none;
        margin-left: 30px;
        font-size: 16px;
        transition: opacity 0.3s;
        }

        nav a:hover {
        opacity: 0.8;
        }

        /* Entry Content - Search Form */
        .entry-content {
        max-width: 100%;
        margin: 40px auto;
        padding: 0 20px;
        }

        .bds-search {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 900px;
        margin: 0 auto;
        }

        .bds-search-fields {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 20px;
        }

        .bds-search input[type="text"],
        .bds-search select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s;
        background: white;
        }

        .bds-search input[type="text"]:focus,
        .bds-search select:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .bds-search select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
        }

        .bds-search button {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 300px;
        margin: 10px auto 0;
        display: block;
        padding: 14px 40px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.3s;
        }

        .bds-search button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* Property Listings */
        .properties {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        }

        .section-title {
        font-size: 32px;
        margin-bottom: 30px;
        color: #333;
        text-align: center;
        }

        .property-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        }

        .property-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        }

        .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .property-image {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .property-info {
            
            background: white;
        padding: 20px;
        }

        .property-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        }

        .property-details {
        display: flex;
        gap: 15px;
        margin: 15px 0;
        font-size: 14px;
        color: #666;
        }

        .property-details span {
        display: flex;
        align-items: center;
        gap: 5px;
        }

        .property-price {
        font-size: 24px;
        font-weight: bold;
        color: red;
        margin-top: 15px;
        }

        .property-location {
        color: #888;
        font-size: 14px;
        margin-top: 10px;
        }

        /* Pagination */
        .bds-pagination {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        }

        .bds-pagination .page-numbers {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 45px;
        height: 45px;
        padding: 0 15px;
        background: white;
        color: #333;
        text-decoration: none;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        }

        .bds-pagination .page-numbers:hover {
        background: #667eea;
        color: white;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .bds-pagination .page-numbers.current {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: #667eea;
        cursor: default;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .bds-pagination .prev,
        .bds-pagination .next {
        font-weight: 600;
        padding: 0 20px;
        }

        .bds-pagination .prev:hover,
        .bds-pagination .next:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        /* Footer */
        footer {
        background: #2c3e50;
        color: white;
        text-align: center;
        padding: 30px 20px;
        margin-top: 60px;
        }

        /* Responsive */
        @media (max-width: 768px) {
        .header-content {
        flex-direction: column;
        text-align: center;
        }

        nav {
        margin-top: 15px;
        }

        nav a {
        margin: 0 10px;
        }

        .bds-search {
        grid-template-columns: 1fr;
        }

        .bds-search button {
        max-width: 100%;
        }
        }