### 🎨 2. The Comprehensive Styling (`style.css`)
Replace your **`style.css`** file with this compiled design layer. It includes logo color values, card elements, layout grids, responsive design code, and interactive selector variables:

```css
/* Color Palette Variables - Extracted from Zawadi Lotus Logo */
:root {
    --zawadi-orange: #E05A16;       /* Logo Main text branding */
    --lotus-green: #2E7D32;         /* Organic Green accent */
    --lotus-red: #D32F2F;           /* Deep top petal accent */
    --background-cream: #FCFBFA;    /* Soft practice backdrop */
    --text-dark: #2C3E50;           /* Clean contrast typography */
    --wa-green: #25D366;            /* Official WhatsApp theme color */
}

/* Global Setup Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: var(--background-cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Fixed Navigation Layout */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--zawadi-orange);
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--zawadi-orange);
}

/* Hero Section Branding */
.hero {
    background: linear-gradient(rgba(244, 241, 238, 0.9), rgba(244, 241, 238, 0.9));
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #555;
}

.tagline {
    display: block;
    font-style: italic;
    color: var(--lotus-green);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Base Component Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.primary-btn {
    background-color: var(--zawadi-orange);
    color: white;
    margin-right: 15px;
}
.primary-btn:hover { background-color: #BD4E10; }

.secondary-btn {
    background-color: var(--lotus-green);
    color: white;
}
.secondary-btn:hover { background-color: #215C24; }

/* Mid Section Grid Foundations */
.welcome-section { text-align: center; background: #ffffff; }
.welcome-section h2 { margin-bottom: 20px; color: var(--text-dark); }
.welcome-section p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-placeholder {
    background-color: #e0e0e0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #777;
}

.credentials-box {
    background: #f4f1ee;
    padding: 20px;
    border-left: 4px solid var(--lotus-green);
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}
.credentials-box ul { margin-top: 10px; padding-left: 20px; }

/* Grid Components & Services Setup */
.services-section { background: #ffffff; text-align: center; }
.section-subtitle { margin-bottom: 40px; color: #666; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: #fcfbfa;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: left;
    border-top: 4px solid var(--zawadi-orange);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h3 { margin-bottom: 15px; color: var(--text-dark); }
.service-meta { margin: 20px 0; font-size: 0.9rem; color: #666; display: flex; gap: 20px; }
.card-btn { background: #f4f1ee; color: #333; width: 100%; }
.card-btn:hover { background: var(--zawadi-orange); color: white; }

/* Booking UI Extensions */
.booking-section { background: var(--background-cream); }
.booking-container { max-width: 900px; padding: 20px 0; }
.booking-card { background: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04); border-top: 5px solid var(--lotus-green); }
.booking-intro { color: #666; margin-bottom: 30px; }
.form-step { border-bottom: 1px dashed #e0e0e0; padding-bottom: 30px; margin-bottom: 30px; }
.form-step h3 { color: var(--text-dark); margin-bottom: 20px; font-size: 1.2rem; }
.row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Selection Grid Cards */
.radio-tile-group { display: flex; gap: 20px; }
.input-container { position: relative; flex: 1; }
.input-container .radio-button { opacity: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; }
.radio-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border: 2px solid #e0e0e0; border-radius: 8px; transition: all 0.3s ease; text-align: center; }
.tile-icon { font-size: 2rem; margin-bottom: 10px; }
.radio-tile-label { font-weight: 600; color: var(--text-dark); }
.radio-button:checked + .radio-tile { border-color: var(--zawadi-orange); background-color: rgba(224, 90, 22, 0.03); }

/* Interactive Time Selector Options */
.time-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; margin-top: 10px; }
.time-slot-btn { background: #f4f1ee; border: 1px solid #ccc; padding: 10px; border-radius: 4px; cursor: pointer; font-weight: 500; text-align: center; transition: all 0.2s ease; }
.time-slot-btn:hover { background: var(--zawadi-orange); color: white; border-color: var(--zawadi-orange); }
.time-slot-btn.selected { background: var(--lotus-green) !important; color: white !important; border-color: var(--lotus-green) !important; }
.input-instruction { color: #888; font-style: italic; font-size: 0.9rem; grid-column: 1 / -1; }
.address-notice { background-color: #f9f9f9; padding: 12px; border-radius: 4px; border-left: 3px solid var(--zawadi-orange); color: #555; font-size: 0.95rem; }

/* Secure Forms & Checkboxes Layout */
.contact-form label, .booking-card label { display: block; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.contact-form input, .contact-form textarea, .booking-card input, .booking-card textarea, .booking-card select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.popia-agreement { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; font-size: 0.85rem; color: #555; }
.popia-agreement input { width: auto; margin-top: 4px; }
.checkbox-item { margin-bottom: 15px; }
.submit-booking-btn { width: 100%; padding: 15px; font-size: 1.1rem; margin-top: 15px; }
.contact-link { color: var(--lotus-green); font-weight: bold; text-decoration: none; }

/* Floating WhatsApp Controller */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--wa-green); color: white; text-decoration: none; padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: bold; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); z-index: 1500; transition: transform 0.3s ease, background-color 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-5px); background-color: #128C7E; color: white; }
.wa-icon { font-size: 1.3rem; }

/* Global Base Practice Footer */
footer { background: var(--text-dark); color: #ecf0f1; padding: 40px 20px; font-size: 0.9rem; margin-top: 40px; }
.crisis-disclaimer { background: rgba(211, 47, 47, 0.1); border: 1px solid var(--lotus-red); padding: 15px; border-radius: 4px; margin-bottom: 20px; color: #ffb3b3; }
.copyright { text-align: center; color: #bdc3c7; }

/* Mobile Adaptations */
@media (max-width: 768px) {
    .about-grid, .services-grid, .contact-grid, .row-grid, .radio-tile-group { grid-template-columns: 1fr; flex-direction: column; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons .btn { display: block; width: 100%; margin-bottom: 10px; margin-right: 0; }
    .booking-card { padding: 20px; }
    .whatsapp-float { padding: 15px; border-radius: 50%; bottom: 20px; right: 20px; }
    .wa-text { display: none; }
}