/* --- Global Styles & Variables --- */
:root {
    --primary-color: #C8602D; /* Orange */
    --secondary-color: #68A2B9; /* Blue */
    --accent-color: #F0A04B; /* Lighter Orange/Accent */
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --bg-color: #FFFFFF;
    --alt-bg-color: #f8f9fa; /* Light gray for alternating sections */
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
    --font-family: 'Work Sans', sans-serif;
    --container-width: 1140px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.sr-only { /* Screen reader only */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.alt-bg {
    background-color: var(--alt-bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}
.section-subtitle {
    text-align: center;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border: none;
    margin: 20px auto 40px;
}

.full-width-image {
    width: 100%;
    object-fit: cover;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #b04a1f; /* Darker orange */
    border-color: #b04a1f;
    color: var(--light-text-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}

.btn-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 10px;
    flex-grow: 1; /* For flex layout */
    max-width: 400px; /* Prevent them from getting too wide */
}
.btn-client {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    border-color: var(--secondary-color);
}
.btn-client:hover {
    background-color: #558a9e; /* Darker blue */
    border-color: #558a9e;
    color: var(--light-text-color);
}
.btn-consultant {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-color: var(--primary-color);
}
.btn-consultant:hover {
     background-color: #b04a1f;
     border-color: #b04a1f;
     color: var(--light-text-color);
}


/* --- Header --- */
.site-header {
    background-color: var(--bg-color);
    padding: 0 15px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    max-height: 50px; /* Adjust as needed */
}

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

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

.main-navigation .nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}
.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu .current-menu-item a::after {
    width: 100%;
}

.header-actions .btn {
    margin-left: 15px;
}

.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://via.placeholder.com/1920x700.png?text=Hero+Background') no-repeat center center/cover;
    color: var(--light-text-color); /* Text color for hero */
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-section .container {
    max-width: 800px;
}
.hero-section h1 {
    font-size: 3rem; /* Adjust as needed */
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.hero-section h1 .today-underline {
    text-decoration-color: var(--accent-color);
}
.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}
.animated-headline-container {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    min-height: 2.5em; /* To prevent layout jump */
}
.animated-text {
    /* Animation will be JS controlled */
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 3px;
}

/* --- Join CTA Section --- */
.join-cta-section {
    padding: 40px 0;
    background-color: var(--alt-bg-color);
}
.join-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}


/* --- "What Is" Section --- */
.what-is-section .two-column-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.what-is-section .column {
    flex: 1;
}
.what-is-section .column p {
    margin-bottom: 15px;
}

.icon-list {
    list-style: none;
    padding-left: 0;
}
.icon-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}
.icon-list li i {
    margin-right: 12px;
    color: var(--primary-color);
    width: 20px; /* Ensure icons align */
    text-align: center;
}
.icon-list li u {
    text-decoration-color: var(--primary-color);
    font-weight: 600;
}

/* --- Specialists Section --- */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.specialist-item img {
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}
.specialist-item img:hover {
    transform: scale(1.03);
}
.specialist-item p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* --- Clients & Professionals Section --- */
.clients-professionals-section .two-column-layout {
    display: flex;
    gap: 30px;
    align-items: stretch; /* Make columns same height */
}
.clients-professionals-section .column {
    flex: 1;
}

.card-style {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.card-style .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.card-style h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}
.card-style h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom if content is short */
}
.card-style p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.card-style .btn {
    margin-top: auto; /* Push button to bottom */
}
.testimonial {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-grow: 2; /* Give more space for testimonial */
}
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
}
.testimonial blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.testimonial cite {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

/* --- Blog Section --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 20px;
    flex-grow: 1; /* Ensure content fills space */
    display: flex;
    flex-direction: column;
}
.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.blog-card h3 a {
    color: var(--text-color);
}
.blog-card h3 a:hover {
    color: var(--primary-color);
}
.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1; /* Push read more and meta to bottom */
}
.blog-card .read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 10px;
}
.blog-meta {
    font-size: 0.85rem;
    color: #777;
    margin-top: auto; /* Push to bottom */
}

/* --- Footer --- */
.site-footer-main {
    background-color: #2c3e50; /* Dark blue/gray */
    color: var(--light-text-color);
    padding: 50px 0 0;
}
.site-footer-main a {
    color: var(--accent-color);
}
.site-footer-main a:hover {
    color: var(--light-text-color);
}
.footer-main-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    min-width: 250px; /* Ensure columns don't get too narrow */
    margin-bottom: 30px;
}
.footer-logo {
    max-height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* If logo is dark, make it white */
}
.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light-text-color);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li i {
    margin-right: 8px;
}
.footer-actions .btn {
    display: block;
    margin-bottom: 15px;
}
.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 15px;
}

.site-footer-bottom {
    background-color: #233140; /* Slightly darker */
    padding: 20px 0;
    font-size: 0.9rem;
    text-align: center;
}
.bottom-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.copyright, .credits {
    flex-basis: 100%; /* Default to full width */
    text-align: center;
}
.footer-legal-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 100%;
}
.footer-legal-links li {
    position: relative;
}
.footer-legal-links li:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    opacity: 0.7;
}
.credits .fa-heart {
    color: var(--primary-color);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95); /* Dark blue/gray, slightly transparent */
    color: var(--light-text-color);
    padding: 20px 0;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none; /* Hidden by default, shown by JS */
}
.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-banner p {
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.9rem;
}
.cookie-banner p a {
    color: var(--accent-color);
    text-decoration: underline;
}
.cookie-banner .btn {
    white-space: nowrap; /* Prevent button text from wrapping */
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    .hero-section h1 { font-size: 2.5rem; }
    .animated-headline-container { font-size: 1.5rem; }

    .main-navigation .nav-menu {
        display: none; /* Hide by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
    }
    .main-navigation .nav-menu.active {
        display: flex; /* Show when active */
    }
    .main-navigation .nav-menu li {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .main-navigation .nav-menu a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    .main-navigation .nav-menu li:last-child a {
        border-bottom: none;
    }
    .main-navigation .nav-menu a::after { /* Remove underline hover for mobile dropdown */
        display:none;
    }
    .menu-toggle {
        display: block; /* Show burger icon */
    }
    .header-actions {
        margin-left: auto; /* Push actions to right after nav collapses */
    }
    .main-navigation { /* Adjust main-nav to be before actions on mobile */
        order: 1; /* Change order for flex */
    }
    .header-actions {
        order: 2;
    }
    .logo {
        order: 0;
    }


    .what-is-section .two-column-layout,
    .clients-professionals-section .two-column-layout {
        flex-direction: column;
    }
    .footer-main-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        min-width: 100%;
    }
     .footer-column .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .bottom-footer-container {
        text-align: center;
    }
    .copyright, .footer-legal-links, .credits {
        flex-basis: auto; /* Allow natural flow */
        margin-bottom: 10px;
    }
    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .animated-headline-container { font-size: 1.3rem; }

    .header-actions .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .header-actions .btn-primary {
        margin-left: 5px;
    }
    
    .join-cta-container {
        flex-direction: column;
    }
    .join-cta-container .btn-cta {
        width: 80%;
        max-width: 300px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 15px;
    }
    .bottom-footer-container {
        flex-direction: column;
    }
    .footer-legal-links li:not(:last-child)::after {
        display: none; /* Stack them vertically */
    }
    .footer-legal-links li {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .header-actions { display: none; } /* Optionally hide buttons on very small screens if menu is enough */
}