/* Custom Design Enhancements */

/* 1. Typography */
body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    color: #111 !important;
}

/* 2. Soft Shadows and Rounded Corners */
.img-responsive, video {
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-responsive:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* 3. Highlight Boxes */
p[style*="background-color: #fef5c4"] {
    background-color: #f0f7f4 !important; /* Soft medical teal/green */
    border: 1px solid #c7e6d8 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    color: #2c5942 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
}

p[style*="border: 1px solid #6591F7"] {
    background-color: #f5fbff !important; /* Soft blue */
    border: 1px solid #d5ebff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
}

/* 4. Testimonial Columns */
.col-md-4 > div[style*="background-color:#fff6e2"] {
    background-color: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease;
    height: 100%;
}

.col-md-4 > div[style*="background-color:#fff6e2"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

/* 5. Buttons */
.btn-danger {
    background: #008c00 !important; /* Solid modern green */
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 140, 0, 0.3) !important;
    border-radius: 50px !important; /* Pill shape */
    padding: 15px 30px !important;
    transition: all 0.3s ease !important;
}

.btn-danger:hover {
    background: #007300 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 140, 0, 0.4) !important;
}

#div-mobile {
    background: #008c00 !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}
