/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

:root {
    --primary-color: #0056b3;
    --secondary-color: #00a8e8;
    --accent-color: #ffcc00;
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --primary-blue: #0e2b5c;
    --primary-orange: #ff6600;
    --light-text: #ffffff;
    --dark-text: #333333;
}

.highlight-card {
    border-left: 4px solid var(--primary-blue);
    background-color: rgba(0, 167, 225, 0.05);
}

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

body {
    font-family: 'Play', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    line-height: 1.2;
}

p {
    margin-bottom: 10px;
}

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

a:hover {
    color: var(--primary-orange);
}

ul {
    list-style-position: inside;
    margin-bottom: 10px;
}

/* Section Styles */
.section {
    padding: 30px 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.section+.section {
    padding-top: 30px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-orange);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.section-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.section-badge span {
    background-color: var(--primary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}


.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.image-column,
.chart-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background-color: rgba(0, 167, 225, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.disclosure-box {
    background-color: rgba(10, 45, 107, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.disclosure-box h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.disclosure-box p {
    margin-bottom: 15px;
}

.cta-button {
    text-align: center;
    margin: 15px 0;
}

.cta-button a {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make logo white on blue background */
}

nav {
    background-color: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: var(--primary-blue);
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--primary-orange);
    background-color: rgba(0, 167, 225, 0.1);
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: var(--dark-text);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-blue);
    border-radius: 0 0 10px 10px;
    margin-bottom: 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--dark-text);
}

.hero p {
    color: var(--dark-text);
}

/* Company Overview Section */
.company-facts {
    list-style: none;
    margin-bottom: 15px;
}

.company-facts li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.company-facts li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Investment Section */
.funds-chart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.funds-table,
.funds-chart {
    flex: 1;
    min-width: 300px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

table th,
table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

table tr.highlight,
table tr.total-row {
    background-color: rgba(0, 167, 225, 0.1);
    font-weight: bold;
}

/* Market Section */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.state {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.market-table-container {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.market-table {
    width: 100%;
}

.market-penetration {
    width: 100%;
    text-align: center;
}

.market-penetration h3 {
    margin-bottom: 15px;
}

.penetration-table {
    margin-top: 20px;
    overflow-x: auto;
}

/* Financials Section */
.financials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.financials-table,
.financials-chart {
    flex: 1;
    min-width: 300px;
}

.detailed-financials {
    margin: 30px 0;
    overflow-x: auto;
}

.detailed-financials h3 {
    margin-bottom: 15px;
}

.detailed-table {
    min-width: 900px;
}

.financial-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* Strategy Section */
.strategy-steps {
    margin: 20px 0;
}

.strategy-step {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-blue);
    color: var(--light-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 8px;
}

/* Investment Summary Section */
.investment-table {
    margin: 20px 0;
    overflow-x: auto;
}

.conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    color: var(--primary-blue);
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 30px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo {
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
}

/* Investor Deck Styles */
.investment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.investment-option {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.investment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.investment-option h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.investment-option-details {
    margin-bottom: 20px;
}

.investment-option-details h4 {
    color: var(--primary-blue);
    margin-top: 15px;
    margin-bottom: 8px;
}

.investment-option-details ul {
    list-style-type: none;
}

.investment-option-details ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.investment-option-details ul li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.term-sheet {
    background-color: rgba(0, 167, 225, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.term-sheet h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.term-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.term-item:last-child {
    border-bottom: none;
}

.term-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.comparison-table {
    width: 100%;
    margin: 20px 0;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px;
    text-align: center;
}

.comparison-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 167, 225, 0.05);
}

.recommended-badge {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 10px;
    vertical-align: middle;
}

/* Investor Documents Styles */
.investor-documents {
    margin: 30px 0;
}

.document-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.document-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.document-card h4 {
    color: var(--primary-blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.document-card p {
    margin-bottom: 15px;
}

.document-card ul {
    list-style-type: none;
    margin-bottom: 15px;
}

.document-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.document-card ul li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.signature-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signature-line {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.signature-line .line {
    border-bottom: 1px solid #333;
    margin: 10px 0;
    width: 250px;
}

.signature-line .name {
    font-weight: bold;
}

.signature-line .title {
    font-style: italic;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .content-columns,
    .funds-chart-container,
    .financials-container,
    .investment-options {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
        margin-top: 15px;
    }
}

.investment-highlights {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 0 10px 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.highlight-item h4 {
    color: var(--primary-blue);
    margin-top: 0;
    font-size: 1.2rem;
}

.highlight-item p {
    margin-bottom: 0;
}

.comparison-table {
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table h3 {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px;
    margin: 0;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: #f5f5f5;
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:nth-child(2) {
    color: var(--primary-blue);
    font-weight: bold;
}

.key-points {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.key-points ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.key-points ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.key-points ul li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-box.small {
    background-color: rgba(247, 148, 29, 0.1);
    border-left: 4px solid var(--primary-orange);
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
}

.executive-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
    align-items: flex-start;
}

.summary-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.summary-section h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-orange);
}

.image-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enhanced comparison table styling */
.comparison-table h3 {
    background-color: var(--primary-blue);
    color: white;
    padding: 18px;
    margin: 0;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-table table thead th {
    background-color: var(--primary-orange);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
}

.comparison-table table thead tr {
    border-bottom: 3px solid var(--primary-blue);
}

@media (max-width: 992px) {
    .executive-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Solar Killer Section Styles */
.solar-killer-intro {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.solar-killer-badge {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.solar-killer-tagline {
    font-size: 1.6rem;
    color: var(--primary-blue);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.solar-killer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 25px;
    margin: 30px 0;
}

.solar-killer-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solar-killer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solar-killer-card .card-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    border-bottom: 3px solid var(--primary-orange);
}

.solar-killer-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.solar-killer-card .card-content {
    padding: 20px;
    flex-grow: 1;
}

.solar-killer-card.problem .card-header {
    background-color: #d32f2f;
}

.solar-killer-card.pain .card-header {
    background-color: #f57c00;
}

.solar-killer-card.solution .card-header {
    background-color: #388e3c;
}

.solar-killer-card.opportunity .card-header {
    background-color: #1976d2;
}

.solar-killer-card.comparison .card-header {
    background-color: #7b1fa2;
}

.feature-list {
    margin-top: 15px;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.feature-item.highlight {
    background-color: rgba(247, 148, 29, 0.1);
    border-left: 3px solid var(--primary-orange);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    flex: 1;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.vs-table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px;
    text-align: left;
}

.vs-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.vs-table td.highlight {
    color: var(--primary-blue);
    font-weight: bold;
    background-color: rgba(247, 148, 29, 0.1);
}

.vs-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .solar-killer-grid {
        grid-template-columns: 1fr;
    }

    .solar-killer-tagline {
        font-size: 1.3rem;
    }
}

.comparison-table-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.comparison-table-center table {
    width: 80%;
    margin: 0 auto;
}

/* Company Overview Section - Reduced whitespace */
.company-facts {
    list-style: none;
    margin-bottom: 10px;
}

.company-facts li {
    margin-bottom: 5px;
    padding-left: 25px;
    position: relative;
}

.feature-card {
    padding: 15px;
    margin-bottom: 15px;
}

.feature-list {
    margin-top: 10px;
}

.feature-item {
    margin-bottom: 10px;
}

/* Highlight pop for executive summary */
.highlight-pop {
    background-color: var(--primary-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Market data table styles */
.market-data-container {
    margin: 20px 0;
}

.market-table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
}

.market-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.market-data-table th,
.market-data-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.market-data-table th {
    background-color: var(--primary-blue);
    color: white;
}

.market-data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.highlight-row td {
    background-color: rgba(247, 148, 29, 0.15);
    font-weight: bold;
}

.table-note {
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.penetration-note {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

/* Document card styles */
.document-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.document-card.clickable {
    cursor: pointer;
}

.document-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
}

/* Smaller chart sizes */
.penetration-chart {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.financials-chart {
    max-width: 350px;
    margin: 0 auto;
}

.funds-chart {
    max-width: 250px;
    margin: 0 auto;
}

/* Tighter tables */
.vs-table,
table {
    font-size: 0.85rem;
    width: 90%;
    margin: 0 auto;
}

.vs-table th,
.vs-table td,
table th,
table td {
    padding: 4px 6px;
}

.comparison-table {
    width: 90%;
    margin: 20px auto;
}

.comparison-table th,
.comparison-table td {
    padding: 6px 8px;
    font-size: 0.85rem;
}

.forecast-table th,
.forecast-table td {
    padding: 4px 6px;
    font-size: 0.85rem;
}

/* Company overview with less whitespace */
.feature-card {
    padding: 8px;
    margin-bottom: 8px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-list {
    margin-top: 5px;
}

.feature-item {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.profile {
    margin-bottom: 10px;
}

.profile-info {
    margin-bottom: 8px;
}

.document-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.document-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: #f8f8f8;
}

.document-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--primary-blue);
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-blue);
}

.document-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.document-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 0 20px 0;
}

.document-expanded h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.document-expanded p {
    margin-bottom: 10px;
}

.document-expanded ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.document-expanded li {
    margin-bottom: 5px;
}

.clickable {
    cursor: pointer;
}

/* Tighter market data table */
.market-data-table {
    width: 85%;
    margin: 0 auto;
    font-size: 0.75rem;
}

.market-data-table th,
.market-data-table td {
    padding: 3px 5px;
}

.market-table-wrapper {
    max-height: 300px;
    overflow-y: auto;
    margin: 10px 0;
}

/* TAM SAM SOM Diagram Styles */
.tam-sam-som-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 900px;
}

.diagram-circles {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    border-radius: 50%;
    position: absolute;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.circle:hover {
    transform: scale(1.02);
}

.circle.tam {
    width: 320px;
    height: 320px;
    background-color: rgba(200, 220, 255, 0.4);
    border: 1px solid rgba(0, 86, 179, 0.1);
    z-index: 1;
}

.circle.sam {
    width: 210px;
    height: 210px;
    background-color: rgba(100, 180, 255, 0.5);
    border: 1px solid rgba(0, 86, 179, 0.2);
    z-index: 2;
}

.circle.som {
    width: 110px;
    height: 110px;
    background-color: var(--primary-blue);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(14, 43, 92, 0.4);
}

.diagram-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.label-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.label-indicator {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 50px;
    text-align: right;
}

.label-line {
    height: 2px;
    width: 60px;
    background-color: #ccc;
    position: relative;
}

.label-group.tam-label .label-line {
    background-color: rgba(200, 220, 255, 1);
}

.label-group.sam-label .label-line {
    background-color: rgba(100, 180, 255, 1);
}

.label-group.som-label .label-line {
    background-color: var(--primary-blue);
}

.label-text h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-text);
}

.label-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .tam-sam-som-container {
        flex-direction: column;
        gap: 30px;
    }

    .diagram-circles {
        width: 280px;
        height: 280px;
    }

    .circle.tam {
        width: 280px;
        height: 280px;
    }

    .circle.sam {
        width: 180px;
        height: 180px;
    }

    .circle.som {
        width: 90px;
        height: 90px;
    }

    .label-line {
        width: 30px;
    }
}