body {
    background: #c6d0d1;
    font-family: 'Montserrat', Arial, sans-serif;
}
.aps-filter {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.aps-filter-btn, #aps-load-more {
    background: #222d32;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 36px;
    font-size: 1.2em;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
    margin-top: 0;
    box-shadow: none;
}
.aps-filter-btn.active, .aps-filter-btn:hover,
#aps-load-more.active, #aps-load-more:hover {
    background: #e3ff00 !important;
    color: #222d32 !important;
}
.aps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-content: center;
}
.aps-project {
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 24px 16px 24px;
    width: 100%;
    min-width: 0;
    max-width: 370px;
    transition: box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.aps-project:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.aps-project img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
}
.aps-project-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222d32;
    font-family: 'Montserrat', Arial, sans-serif;
}
.aps-project-price {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222d32;
}
.aps-project-location {
    font-size: 1em;
    color: #222d32;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.aps-project-meta {
    display: flex;
    gap: 18px;
    font-size: 1em;
    color: #222d32;
    margin-bottom: 6px;
}
.aps-project-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.aps-gallery-slider {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.aps-gallery-slider img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.aps-single-project {
    background: #A2B0B9;
    border-radius: 20px;
    padding: 32px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.aps-single-project h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #222d32;
    margin-bottom: 18px;
}
.aps-meta {
    font-size: 1.1em;
    color: #222d32;
    margin-bottom: 12px;
}
.aps-long-desc {
    font-size: 1.1em;
    color: #222d32;
    margin-top: 18px;
}
.aps-gallery-slider {
    margin-bottom: 18px;
}