body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 60px;
}

.navbar {
    background-color: #000;
}

.pistol-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.pistol-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Even spacing inside card */
}
.pistol-card .price {
    font-style: italic;
    font-size: 0.9rem;
    color: #555; /* A soft gray color to keep it subtle */
    margin-bottom: 10px; /* Add some spacing before the button */
}
.pistol-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
}

.pistol-card h3 {
    margin-bottom: 15px;
}

.pistol-card p {
    color: #555;
    margin-bottom: 20px;
}

.pistol-card .btn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
}

.pistol-card .btn:hover {
    background-color: #ff4b4b;
}

/* Row Alignment */
.row {
    justify-content: center; /* Center all cards in the row */
}

.col-md-4, .col-lg-3 {
    margin-bottom: 30px;
}

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
}
