.landmarks-content {
    padding: 30px 20px 40px;
    background: #ffffff;
    min-height: 50vh;
    margin-top: -12px; /* Pull up to overlap the hero slightly if needed, or match daka.css */
    position: relative;
    z-index: 5;
}

.landmark-group {
    margin-bottom: 24px;
}

.landmark-group:last-child {
    margin-bottom: 0;
}

.street-name {
    color: var(--green);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.landmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landmark-list li {
    position: relative;
    padding-left: 20px;
    color: var(--green);
    margin-bottom: 12px;
}

.landmark-list li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px; /* align with the first line of text */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green);
}

.landmark-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.landmark-item:active {
    background: #f0f0f0;
}

.landmark-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    padding-right: 30px; /* space for icon */
}

.landmark-address {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    padding-right: 30px; /* space for icon */
}

.landmark-nav-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    opacity: 0.8;
}
