body {
    font-family: Arial;
    direction: rtl;
    margin: 0;
    background: #f2f4f5;
}

.header {
    background: #002f34;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
}

.container {
    width: 90%;
    margin: auto;
}

.top-bar {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
}

.btn {
    background: #23e5db;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}

.search-box input {
    padding: 8px;
    width: 200px;
}

.ads {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}