/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body { 
    font-family: 'Inter', sans-serif;
    color: #1f2937; /* text-gray-900 */
}

/* * Base Typography
 * Applying a consistent, modern style to headings and text
 * across the entire site (including inside the .content-html class).
*/

/* Main page titles (e.g., hero sections) */
h1 {
    font-weight: 800; /* extrabold */
    letter-spacing: -0.025em; /* tracking-tight */
}

/* Section titles (e.g., "Our Core Values") */
h2 {
    font-weight: 700; /* bold */
    letter-spacing: -0.025em; /* tracking-tight */
}

/* Card titles (e.g., service cards) */
h3 {
    font-weight: 700; /* bold */
}

/* Body text */
p {
    line-height: 1.75; /* leading-relaxed */
    color: #374151; /* text-gray-700 */
}

/* Custom scrollbar for better aesthetics */
.custom-scroll::-webkit-scrollbar { 
    width: 8px; 
}
.custom-scroll::-webkit-scrollbar-thumb { 
    background: #3b82f6; 
    border-radius: 10px; 
}
.custom-scroll::-webkit-scrollbar-track { 
    background: #e0f2fe; 
}

/* * Style for content that accepts raw HTML 
 * (This enhances the styles from the admin panel)
*/
.content-html {
    line-height: 1.75;
    word-wrap: break-word;
}
.content-html h1, .content-html h2, .content-html h3 { 
    font-weight: 700; 
    margin-top: 1.5rem; 
    margin-bottom: 0.5rem; 
    color: #1d4ed8; /* text-blue-700 */
}
.content-html h1 { font-size: 1.875rem; } /* text-3xl */
.content-html h2 { font-size: 1.5rem; } /* text-2xl */
.content-html h3 { font-size: 1.25rem; } /* text-xl */

.content-html p { 
    margin-bottom: 1rem; 
    color: #374151; /* text-gray-700 */
}
.content-html ul, .content-html ol { 
    margin-left: 1.5rem; 
    margin-bottom: 1rem; 
    color: #374151; /* text-gray-700 */
}
.content-html ul { list-style-type: disc; }
.content-html ol { list-style-type: decimal; }

.content-html a {
    color: #4f46e5; /* indigo-600 */
    text-decoration: underline;
    font-weight: 500;
}
.content-html a:hover {
    color: #312e81; /* indigo-800 */
}


/* New FAQ Content Styling */
.faq-content h2 {
    font-size: 1.5rem; /* 2xl */
    font-weight: 700; /* bold */
    color: #4f46e5; /* indigo-600 */
    margin-top: 2rem; /* mt-8 */
    margin-bottom: 1rem; /* mb-4 */
    border-bottom: 1px solid #e5e7eb; /* border-b */
    padding-bottom: 0.5rem; /* pb-2 */
}

/* Remove default margin from 'Q' paragraph */
.faq-content p {
    margin-bottom: 0.25rem; /* mb-1 */
}

/* Style the 'Q:' text */
.faq-content p strong {
    font-size: 1.125rem; /* lg */
    font-weight: 600; /* semibold */
    color: #1f2937; /* gray-900 */
    line-height: 1.75; /* ensure consistent line height */
}

/* Style the 'A:' paragraph (a p that follows a p) */
.faq-content p + p {
    color: #374151; /* gray-700 */
    margin-bottom: 2rem; /* mb-8 */
    padding-left: 1rem; /* pl-4 */
    border-left: 3px solid #c7d2fe; /* border-l-4 border-indigo-200 */
}
.logo
{
    width: 300px;
    height: auto;
    margin: 5px;
}