/* General Container & Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
header {
    margin-bottom: 40px;
}

nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
    margin-left: 15px;
}

nav a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

/* Problem-Solution Framework */
.problem-solution {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.context-box {
    flex: 1;
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #333;
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.card {
    border: 1px solid #eee;
    padding: 35px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: #111;
}

.card p {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 20px;
}

/* Coaching Pathway List */
.coaching-pathway {
    list-style: none;
    padding-left: 0 !important;
    margin: 10px 0 30px 0;
}

.coaching-pathway li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.92em;
    line-height: 1.5;
}

.coaching-pathway li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* Button Alignment Container */
.card-footer {
    margin-top: auto; 
    padding-top: 10px;
}

/* Harmonized Button Styles */
.btn-primary {
    display: inline-block;
    background-color: #333;
    color: #fff !important;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #555;
}

/* About Section Narrative */
.about-narrative {
    margin-bottom: 40px;
}

.philosophy-box {
    background: #333;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1em;
    text-align: center;
    line-height: 1.5;
}

/* Credential Layout - Balanced Grid Approach */
.credential-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.academic-block h3, .practitioner-block h3 {
    margin-bottom: 20px;
    font-size: 1.25em;
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.credential-grid {
    display: grid;
    /* This creates a 4-column layout on desktops that scales down gracefully */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.cred-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.85em;
    border: 1px solid #eee;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cred-item strong {
    color: #000;
}

/* Contact Links */
.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero, .problem-solution, .services {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
    }

    .hero img {
        margin-bottom: 20px;
    }

    .credential-grid {
        grid-template-columns: 1fr;
    }
}