/* Basic Reset and Global Styles (No change from before) */
:root {
    --bg-color: #fff4d6; /* The Modanwals Aesthetic Base */
    --primary-color: #5d4037; /* Deep Brown/Coffee for sophistication */
    /* --accent-color: #bcaaa4; Light Taupe/Gray-Brown for accents */
    --text-color: #333;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.5s ease;
}

/* ... (Existing Typography & Layout Styles remain here) ... */

/* --- Hero Section --- */
.hero-section {
    background-color: var(--primary-color);
    color: var(--bg-color);
    text-align: center;
    padding: 80px 20px;
    /* margin-bottom: 40px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);  */
}

/* ... (Existing Info Card and Grid styles remain here) ... */

/* --- Contact Section & CTA Button --- */
.contact-section {
    text-align: center;
    background-color: var(--accent-color);
    color: white;
    padding: 40px;
}

.contact-section h2, .contact-section h3 {
    color: var(--primary-color); /* Primary color for titles inside this section */
}

/* New Styles for Manufacturer Details Block */
.manufacturer-details {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    color: var(--text-color);
}

.mfg-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.mfg-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.mfg-address {
    font-size: 0.9rem;
    opacity: 0.85;
}

.contact-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 30px 0;
}

.contact-details {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 600;
    color: var(--primary-color); /* Ensure text is readable */
}

.contact-details a, .care-number {
    color: var(--primary-color);
}

.contact-details a:hover {
    color: white;
}

.cta-button {
    /* ... (Existing CTA Button styles remain here) ... */
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: var(--shadow-light);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #795548; 
    transform: scale(1.05); 
}

/* --- Footer --- */
.footer-section {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 50px;
    color: white;
}

.customer-care-footer {
    margin-top: 5px;
    font-weight: 600;
    color: white;
}

/* ... (Existing Responsiveness styles remain here) ... */