:root {
    --primary-color: #34495e;  /* Soft slate */
    --secondary-color: #2d3436;  /* Lighter charcoal */
    --accent-color: #3498db;  /* Bright blue */
    --text-color: #ffffff;
    --text-secondary: #dfe6e9;  /* Light gray */
    --highlight-color: #00cec9;  /* Bright turquoise */
    --gradient-start: rgba(52, 73, 94, 0.6);
    --gradient-end: rgba(45, 52, 54, 0.6);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

header {
    background-color: var(--primary-color);
    padding: 2rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link .company-name {
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.company-name {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

main {
    margin-top: 140px;
}

section {
    padding: 4rem 2rem;
}

.hero, .about-hero, .approach-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero h1, .about-hero h1, .approach-hero h1 {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.hero .subhead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 5.4rem auto 0;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.why-matters {
    background-color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.why-matters::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.why-matters h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.why-matters p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.approach {
    background-color: var(--secondary-color);
    text-align: center;
}

.approach h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.approach-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tile {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tile:hover {
    transform: translateY(-10px);
    background-color: var(--accent-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.tile i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.tile h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta {
    background-color: var(--primary-color);
    text-align: center;
    border-top: 2px solid var(--highlight-color);
}

.cta h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.cta-button {
    background-color: var(--highlight-color);
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
    transform: translateY(-2px);
}

footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--highlight-color);
}

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

footer a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-container img {
        height: 40px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero, .about-hero, .approach-hero {
        height: 50vh;
    }
    
    .hero h1, .about-hero h1, .approach-hero h1 {
        font-size: 2.2rem;
        white-space: normal;
        padding: 0 1rem;
    }

    .hero .subhead {
        font-size: 1.2rem;
        margin: 2rem auto 0;
        padding: 0 1rem;
        line-height: 1.4;
    }

    .hero-content {
        width: 100%;
        padding: 0 1rem;
        top: 45%;
    }

    .approach-tiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tile {
        padding: 1.5rem;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .team-profile {
        padding: 1rem 0;
    }

    .profile-image {
        max-width: 200px;
    }
}

/* About Page Styles */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--text-color);
}

.content-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.content-wrapper .subhead {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-header {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.header-image {
    width: 100%;
    height: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.different {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.different::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.different .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.different h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.different h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0.5);
    transition: transform 0.3s ease;
}

.different:hover h2::after {
    transform: scaleX(1);
}

.different p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.different ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.different li {
    position: relative;
    padding: 1.2rem 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.different li:hover {
    color: var(--accent-color);
}

.different li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 2rem;
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

@media (max-width: 768px) {
    .different {
        padding: 4rem 0;
    }
    
    .different h2 {
        font-size: 2rem;
    }
    
    .different li {
        padding: 1rem 0;
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }
    
    .different li::before {
        left: 0;
        font-size: 1.5rem;
    }
}

.point-of-view {
    background-color: var(--primary-color);
    padding: 6rem 0;
}

.team {
    background-color: var(--secondary-color);
    padding: 6rem 0;
}

.point-of-view p, .different p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-profile {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
    align-items: center;
}

.profile-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
    max-width: 300px;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--highlight-color);
}

.profile-content .title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.profile-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .team-profile {
        gap: 2rem;
    }

    .profile-image {
        max-width: 250px;
    }

    .about-header {
        margin-bottom: 1.5rem;
    }

    .different, .point-of-view, .team {
        padding: 3rem 0;
    }
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://raw.githubusercontent.com/stevenhinkel11/leadingedge-consulting/2285cd504aa41738ceb8f351f4b0a1f5b6006724/assets/Collaborative%20Problem%20Solving.png');
    background-size: cover;
    background-position: top center;
    padding: 8rem 0;
    text-align: center;
    color: var(--text-color);
}

/* Approach Hero Section */
.approach-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://raw.githubusercontent.com/stevenhinkel11/leadingedge-consulting/0ea3d2753f512788bf3b765b076cc10dff6bf781/assets/facilitation.jpg');
    background-size: cover;
    background-position: top 30% center;
    padding: 8rem 0;
    text-align: center;
    color: var(--text-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content .subhead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subhead {
        font-size: 1.2rem;
    }
}

.approach-tiles .tile {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.approach-tiles .tile:hover {
    transform: translateY(-10px);
    background-color: var(--accent-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.approach-tiles .tile i {
    font-size: 3rem;
    color: var(--highlight-color);
}

.approach-tiles .tile h3 {
    font-size: 1.5rem;
    margin: 0;
}

.approach-tiles .tile p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.approach-detail {
    padding: 8rem 0;
    background-color: var(--primary-color);
    position: relative;
}

.approach-detail:nth-child(even) {
    background-color: var(--secondary-color);
}

.approach-detail .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.approach-detail .section-icon {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--highlight-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.approach-detail:nth-child(even) .section-icon {
    background-color: var(--secondary-color);
}

.approach-detail .section-icon i {
    font-size: 2rem;
    color: var(--highlight-color);
}

.approach-detail h2 {
    color: var(--highlight-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
    padding-top: 2rem;
}

.approach-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.approach-detail ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.approach-detail ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left;
}

.approach-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 1024px) {
    .approach-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .approach-tiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .approach-detail {
        padding: 6rem 0;
    }

    .approach-detail h2 {
        font-size: 2rem;
    }

    .approach-detail p {
        font-size: 1.1rem;
    }
}

.journey {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.journey-path {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.journey-path::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--highlight-color);
    transform: translateX(-50%);
}

.journey-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.step-content {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content h2 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.step-content p {
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style-type: none;
    padding: 0;
}

.step-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

@media (max-width: 768px) {
    .journey-path::before {
        left: 40px;
    }

    .journey-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-icon {
        margin-bottom: 1rem;
    }

    .step-content {
        margin: 0;
        width: 100%;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--highlight-color);
}

.modal h2 {
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.modal p {
    margin-bottom: 1.5rem;
}

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

.modal a:hover {
    color: var(--accent-color);
}

/* Explore Links Section */
.explore-links {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.explore-links .content-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.link-box {
    flex: 1;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.link-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
}

.link-box a {
    display: block;
    padding: 3rem;
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

.link-box i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.link-box:hover i {
    transform: scale(1.1);
}

.link-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.link-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Responsive styles for explore links */
@media (max-width: 768px) {
    .explore-links .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .link-box {
        max-width: 100%;
    }

    .link-box a {
        padding: 2rem;
    }
}

/* Approach Summary Section */
.approach-summary {
    padding: 4rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.approach-summary p {
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .approach-summary {
        padding: 3rem 0;
    }
    
    .approach-summary p {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .approach-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .approach-tiles .tile {
        padding: 1.5rem;
    }

    .approach-tiles .tile i {
        font-size: 2rem;
    }

    .approach-tiles .tile h3 {
        font-size: 1.2rem;
    }

    .approach-tiles .tile p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .approach-tiles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 769px) {
    .link-box h3 {
        font-size: 1.3rem;
    }
} 