/*
====================================
Calvin & Calvin Law Firm - styles.css
====================================
*/

/* --- 1. Global Reset and Base Styles --- */
:root {
    --primary-color: #003366; /* Deep Navy Blue */
    --secondary-color: #C0A04C; /* Subtle Gold/Brass Accent */
    --text-color: #333333;
    --light-bg: #f4f4f9; /* Light Gray/Off-White */
    --white: #ffffff;
    --font-serif: 'Georgia', serif;
    --font-sans: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}


/* --- 2. Header and Navigation Styles --- */

.main-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-color); /* Strong separation */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    font-size: 1.05em;
    padding: 5px 0;
    font-weight: 500;
}

/* CTA Button in Navigation */
.main-nav .cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    border: 2px solid var(--secondary-color);
}

.main-nav .cta-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}


/* --- 3. Hero Section --- */

.hero {
    background: var(--light-bg) url('img/hero-background.jpg') no-repeat center center/cover; /* Placeholder image */
    color: var(--primary-color);
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

/* Overlay for text readability on background image */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent white overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-color);
}

.primary-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
}

.primary-cta:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}


/* --- 4. Value Proposition Section --- */

.values {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.value-points {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    flex: 1;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--white);
}

.value-card h4 {
    color: var(--secondary-color);
    font-size: 1.4em;
}


/* --- 5. Practice Areas Section --- */

.practice-areas {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.area-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 3px;
}

.area-card h4 {
    font-size: 1.3em;
    color: var(--primary-color);
}


/* --- 6. Testimonial Section --- */

.testimonial {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

blockquote {
    font-size: 1.8em;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

cite {
    display: block;
    font-size: 1.1em;
    font-weight: 300;
    color: var(--secondary-color);
}


/* --- 7. Footer --- */

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact h4, .footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: var(--white);
    display: block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}
/*
====================================
Contact Us Page Specific Styles
====================================
*/

/* Page Title Section Styling */
.page-title {
    background-color: var(--light-bg);
    padding: 50px 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.page-title h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

/* Grid Layout for Form and Details */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Form takes 2/3, details take 1/3 */
    gap: 50px;
    padding: 60px 0;
}

/* Form Styling */
.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

.secure-form {
    background: var(--white);
    padding: 30px;
    border: 1px solid #ddd;
    border-top: 5px solid var(--secondary-color);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: var(--font-sans);
}

.form-group textarea {
    resize: vertical;
}

.disclaimer {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 10px;
    border-left: 3px solid var(--secondary-color);
}

.submit-button {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

/* Details and Map Styling */
.contact-details-wrapper h3 {
    margin-bottom: 30px;
}

.office-location, .office-hours {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.office-location h4, .office-hours h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.map-placeholder {
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 5px;
}

.map-placeholder iframe {
    display: block;
}

/* Media Query for Responsiveness */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
    .contact-form-wrapper, .contact-details-wrapper {
        padding: 0 15px; /* Add padding for better look on small screens */
    }
}

/*
====================================
Practice Area Page Specific Styles
====================================
*/

.practice-area-detail {
    padding: 60px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Content wider than sidebar */
    gap: 40px;
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 5px;
}

.breadcrumb a {
    color: #777;
}

/* Service Definition */
.service-definition h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.service-definition p {
    margin-bottom: 15px;
}

.key-services {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 5px solid var(--primary-color);
}

.key-services h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.key-services ul {
    list-style: disc;
    padding-left: 20px;
}

.key-services ul li {
    margin-bottom: 8px;
}

/* Sidebar and CTA */
.sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-box, .related-attorneys, .related-insights {
    padding: 20px;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-box {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-box h4 {
    color: var(--secondary-color);
}

.contact-box .primary-cta {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1em;
}

.attorney-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.attorney-mini-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.attorney-mini-card h5 {
    font-size: 1.1em;
    color: var(--primary-color);
}

.related-insights ul {
    list-style: none;
    padding-left: 0;
}

.related-insights ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

/* Media Query for Responsiveness */
@media (max-width: 900px) {
    .detail-grid {
        grid-template-columns: 1fr; /* Stack content on smaller screens */
    }
    .sidebar-cta {
        order: -1; /* Place sidebar above main content on mobile */
    }
}

/*
====================================
Practice Areas Directory Page Specific Styles
====================================
*/

.practice-areas-directory {
    padding: 60px 0;
    text-align: center;
}

.practice-areas-directory h3 {
    font-size: 2.2em;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #555;
}

/* Ensure the card layout is clean for the directory */
.directory-card {
    text-align: center;
    padding: 30px;
}

.directory-card h4 {
    margin-top: 10px;
    font-size: 1.5em;
}

.directory-card p {
    flex-grow: 1; /* Makes card heights consistent if content lengths vary */
    margin-bottom: 15px;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    /* Style for hypothetical SVG icons */
    width: 30px; 
    height: 30px;
    filter: invert(100%); /* Makes the icon white */
}

/* Secondary CTA Section */
.secondary-cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.secondary-cta-section p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.secondary-cta-section .primary-cta {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.secondary-cta-section .primary-cta:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/*
====================================
Insights Page Specific Styles
====================================
*/

.insights-content {
    padding: 60px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Articles wider than sidebar */
    gap: 40px;
}

/* Insight Post Styling */
.insight-post {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.insight-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.insight-post img {
    width: 30%;
    max-height: 180px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 5px;
}

.post-text {
    width: 70%;
}

.post-text .category {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 0.8em;
    font-weight: bold;
    color: var(--white);
    border-radius: 3px;
    text-transform: uppercase;
}

/* Category Colors */
.corporate { background-color: var(--primary-color); }
.litigation { background-color: #A32929; } /* Deep Red */
.real-estate { background-color: #2D6B27; } /* Deep Green */


.post-text h3 {
    font-size: 1.6em;
    margin-bottom: 8px;
}

.post-text .summary {
    color: #555;
    margin-bottom: 10px;
}

.post-text .meta {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.read-more {
    font-weight: bold;
}

/* Sidebar Styling */
.insights-sidebar {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
}

.sidebar-block {
    margin-bottom: 30px;
}

.sidebar-block h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.sidebar-block ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-block ul li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}

.sidebar-block ul li:last-child a {
    border-bottom: none;
}

.sidebar-block .cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.sidebar-block .cta-box h4 {
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-block .cta-box .primary-cta {
    display: block;
    width: 100%;
    margin-top: 15px;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 4px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
}

.pagination a.active, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Media Query for Responsiveness */
@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: 1fr; /* Stack content on smaller screens */
    }
    .insight-post {
        flex-direction: column;
    }
    .insight-post img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .post-text {
        width: 100%;
    }
}

/*
====================================
Single Article Page Specific Styles
====================================
*/

.article-detail {
    padding: 60px 0;
}

.article-container {
    max-width: 850px; /* Narrower column for optimal reading length */
}

/* Post Header and Meta */
.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.post-meta-line {
    color: #777;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.featured-image figcaption {
    font-style: italic;
    font-size: 0.9em;
    color: #999;
    text-align: center;
    padding-top: 5px;
}

/* Main Content Styling */
.post-content {
    font-size: 1.1em;
    line-height: 1.7;
}

.post-content h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color); /* Highlight section headers */
}

.lead-paragraph {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.post-content ul {
    list-style: disc;
    padding-left: 40px;
    margin: 20px 0;
}

/* Blockquote/Pull Quote */
.pull-quote {
    font-style: italic;
    font-size: 1.4em;
    margin: 30px 0;
    padding: 20px 20px 20px 30px;
    background-color: var(--light-bg);
    border-left: 5px solid var(--primary-color);
}

/* Author Bio Block */
.author-bio-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.author-bio-block img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-block h4 {
    margin-bottom: 5px;
    font-size: 1.2em;
}

/* CTA after article */
.article-cta {
    margin-top: 40px;
}

/*
====================================
Legal Disclaimer Page Specific Styles
====================================
*/

.disclaimer-content {
    padding: 40px 0 80px;
}

/* Narrower content width for easy readability of dense text */
.legal-text-container {
    max-width: 900px; 
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05em;
    color: #333;
}

.legal-text-container h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.legal-text-container p {
    margin-bottom: 18px;
}

.legal-text-container strong {
    font-weight: 700;
}

.last-updated {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
}

.final-cta-text {
    margin-top: 30px;
    font-weight: bold;
}

address {
    font-style: normal;
    margin-top: 10px;
}

/* Ensure utility links are styled in the footer */
.main-footer .utility-links {
    margin-top: 10px;
    font-size: 0.9em;
}

.main-footer .utility-links a {
    color: var(--light-bg); /* Use a light color for consistency with footer text */
    text-decoration: none;
    padding: 0 5px;
}

.main-footer .utility-links a:hover {
    text-decoration: underline;
}

/*
====================================
Case Results Page Specific Styles
====================================
*/

.case-results-directory {
    padding: 60px 0;
}

/* Filter Bar */
.result-filters {
    text-align: center;
    margin-bottom: 40px;
}

.result-filters span {
    font-weight: bold;
    margin-right: 15px;
}

.filter-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 25px;
    border-top: 4px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.result-card h4 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-area {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    color: var(--white);
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Reusing category colors from insights.html */
.result-card .corporate { background-color: var(--primary-color); }
.result-card .litigation { background-color: #A32929; }
.result-card .real-estate { background-color: #2D6B27; }

.meta-data {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.95em;
}

.disclaimer-note {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background-color: #fff8e1; /* Light warning color */
    border: 1px solid #ffe0b2;
    color: #e65100;
    border-radius: 5px;
}

/*
====================================
Attorney Profile Page Specific Styles
====================================
*/

.profile-detail {
    padding: 60px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 3fr; /* Sidebar for photo/contact; Wider content column */
    gap: 40px;
}

/* Sidebar Styling */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.title-role {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-top: -10px;
}

.contact-card, .download-card {
    padding: 20px;
    border-radius: 5px;
    background-color: var(--light-bg);
}

.contact-card h4, .download-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.small-cta {
    display: block;
    text-align: center;
    padding: 8px 15px;
    margin-top: 15px;
}

/* Content Styling */
.profile-content > div {
    margin-bottom: 40px;
}

.profile-content h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.expertise-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for expertise */
    gap: 10px 20px;
}

.expertise-list li:before {
    content: "•"; 
    color: var(--primary-color); 
    font-weight: bold; 
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.credentials-list p {
    margin-bottom: 5px;
}

/* Media Query for Responsiveness */
@media (max-width: 900px) {
    .profile-grid {
        grid-template-columns: 1fr; 
    }
    .profile-sidebar {
        order: -1; /* Move photo/contact to the top */
    }
    .expertise-list {
        grid-template-columns: 1fr; /* Single column for mobile expertise list */
    }
}

/*
====================================
Team Directory Page Specific Styles
====================================
*/

.team-directory {
    padding: 60px 0;
}

/* Team Filters */
.team-filters {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.filter-tab {
    background: none;
    border: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s, border-bottom 0.2s;
}

.filter-tab:hover, .filter-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

/* Attorneys Grid */
.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.attorney-card {
    display: block;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-bottom: 20px;
    transition: all 0.3s;
}

.attorney-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.attorney-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 15px;
}

.card-text h4 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.card-text .role {
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.card-text .specialty {
    font-size: 0.9em;
    color: #777;
}

.final-team-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 5px;
}
