/* Start custom CSS */.yard-signs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.yard-sign {
    width: 100%;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.yard-sign img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.banner-alt {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .yard-sign {
        width: 100%;
        margin: 10px 0;
    }
}

.custom-button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.custom-button:hover {
    background-color: #003580;
    transform: scale(1.05);
}/* End custom CSS */