:root {
    --primary-color: #3d5a80; /* A calming, deep blue */
    --secondary-color: #ee6c4d; /* A vibrant, friendly orange */
    --accent-color: #e0fbfc; /* A very light cyan for highlights */
    --dark-text: #293241;
    --light-text: #FFFFFF;
    --bg-color: #fdfdfd;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    color: var(--dark-text);
    background-color: var(--bg-color);
}

/* --- Navigation --- */
.navbar {
    background-color: var(--light-text);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}
/* --- New Logo Styling --- */
.logo {
    height: 100px; /* Adjust this value as needed */
    width: auto; /* Maintains the aspect ratio */
    display: block; /* Removes any extra space below the image */
}
.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--secondary-color);
}


/* --- Header --- */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 4rem 1rem;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1rem auto 0;
}


/* --- Main Content & Sections --- */
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
section {
    margin-bottom: 4rem;
}
section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}


/* --- Comparison Grid --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.player-column {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.player-column ul {
    list-style-type: none;
    padding: 0;
}
.player-column li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}
.player-column li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.verdict {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}


/* --- Accordion (Playbook) --- */
.accordion {
    background-color: #fff;
    color: var(--dark-text);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.4s;
    margin-top: 0.5rem;
}
.accordion.active, .accordion:hover {
    background-color: var(--accent-color);
}
.accordion::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    float: right;
    margin-left: 5px;
}
.accordion.active::after {
    content: "−";
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.panel p {
    margin: 1rem 0;
}


/* --- Highlight / Case Study Section --- */
.highlight {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
}
.case-study-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.case-study-text {
    flex: 1;
}
.case-study-image img {
    max-width: 75%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* --- New Case Study Logo Styling --- */
.case-study-logo {
    max-width: 300px; /* Adjust this value as needed */
    height: auto;     /* Maintains the aspect ratio */
    display: block;
    margin: 0 auto;   /* Centers the logo if its container is wider */
}
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}


/* --- Community Section --- */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.community-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
}
.community-card h4 {
    margin-top: 0;
    color: var(--primary-color);
}
.community-card ul {
    padding-left: 20px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
    background-color: #f1f1f1;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .comparison-grid, .community-grid, .case-study-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a {
        margin: 0.25rem 0.5rem;
    }
}