.fpg-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.fpg-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.fpg-header span {
    color: #999;
    font-size: 14px;
    display: block;
    margin-bottom: 30px;
}

.fpg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fpg-card {
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fpg-img-box {
    padding: 0px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fpg-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

.fpg-info {
    padding: 15px;
    background: #f9f9f9;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fpg-info h3 {
    font-size: 14px;
    color: #444;
    margin: 0;
    font-weight: normal;
}

.fpg-action-bar {
    display: flex;
}

.fpg-btn {
    flex: 1;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s ease;
}

.btn-details { background: #EF8200; border:1px solid #EF8200;} /* Dark Blue/Navy */
.fpg-btn.btn-details:hover{ background:#ffffff; color: #EF8200;}
.btn-enquiry { background: #2A619D; border:1px solid #2A619D;}
.fpg-btn.btn-enquiry:hover{background: #ffffff;color: #2A619D;}

.fpg-btn:hover { opacity: 0.9; color: #fff; }

.fpg-footer { margin-top: 40px; }

.fpg-all-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}