/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Brand Font: Times New Roman */
    font-family: 'Times New Roman', Times, serif;
    /* Brand Color: Dark Blue Gradient */
    background: linear-gradient(135deg, #1E5BFF 0%, #003366 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #1a202c;
    padding: 20px 10px;
}

/* --- Container --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* --- Brand Colors (Dark Blue) --- */
:root {
    --dark-blue: #002347;
    --accent-blue: #004080;
    --soft-gray: #f8fafc;
}

/* --- Consultation Header --- */
.consultation-header {
    background: var(--dark-blue);
    padding: 20px;
    color: white;
    border-bottom: 3px solid #ffd700; /* Gold accent for professional look */
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.book-now-btn {
    background: #ffffff;
    color: var(--dark-blue);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.book-now-btn:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

/* --- Main Content --- */
.main-content {
    padding: 40px 30px;
}

.subtitle, .services-subtitle, .resources-subtitle {
    text-align: center;     
    max-width: 700px;        
    margin: 0 auto 30px;    
    font-size: 18px;         
    color: #4a5568;          
    font-style: italic;      
    display: block;          
}

.profile img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
    border: 4px solid var(--dark-blue);
}

h1, h2, h3 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 15px;
}

h1 { font-size: 32px; text-transform: uppercase; letter-spacing: 1px; }

.bio {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-style: italic;
}

/* --- Social Links (Grid) --- */
.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 50px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--soft-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-blue);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-3px);
}

.social-link i { font-size: 24px; margin-bottom: 8px; }

/* --- Services Section --- */
.services-section {
    background: var(--soft-gray);
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--dark-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card.featured {
    border-top-color: #ff6719; /* Orange accent for popular items */
}

.service-btn {
    background: var(--dark-blue);
    color: white;
    text-decoration: none;
    padding: 12px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 15px;
}

.service-btn:hover { background: var(--accent-blue); }

/* --- Resources & Substack --- */
.resources-section, .substack-section {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.resource-card {
    border: 1px dashed var(--dark-blue);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

/* --- Footer --- */
.footer {
    background: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

.footer a { color: #ffd700; text-decoration: none; }
