/* ✅ General Page Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}
/* ✅ Ensure No Unwanted Left Borders */
.product-row, .product-left, .product-right, .product-models {
    border-left: none !important; /* ✅ Remove any unexpected left border */
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ✅ Heading Styling */
h1 {
    font-size: 28px;
    text-align: center;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

h2 {
    font-size: 22px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ✅ Introduction Section */
.introduction {
    font-size: 16px;
    color: #000; /* ✅ Black text */
    line-height: 1.6;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007bff;
}


/* ✅ Product Models - Grid Layout */
.product-models {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ✅ Product Row (Dividing Left & Right Sections) */
.product-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Left Column - Image & Button */
.product-left {
    flex: 30%;
    text-align: center;
}

.product-left img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

/* ✅ "Get Instant Quotes" Button Styling */
.quote-button {
    margin-top: 12px;
    text-align: center;
}

/* ✅ WhatsApp Green Button */
.get-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* ✅ WhatsApp Green */
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

/* ✅ WhatsApp Icon Styling */
.whatsapp-icon {
    width: 22px; /* Adjust size */
    height: 22px;
    margin-right: 10px;
}

/* ✅ Hover Effect */
.get-quote-btn:hover {
    background-color: #1EBE5D; /* Darker Green on Hover */
    transform: scale(1.05); /* Button "Pops" */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* ✅ Right Column - Description */
.product-right {
    flex: 70%;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

/* ✅ Product Specifications Table */
.product-specs {
    margin-top: 15px;
}

.product-specs h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

/* ✅ Table Styling */
.product-specs table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
}

.product-specs th, .product-specs td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    width: 50%;
    color: #000;
}

.product-specs th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-align: center;
}

.product-specs td {
    background: #ffffff;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
        align-items: center;
    }
    
    .product-left, .product-right {
        flex: 100%;
        text-align: center;
    }
    
    .product-specs table {
        font-size: 14px;
    }
    .get-quote-btn {
    font-size: 20px;
    }
}
