/* ==========================================================================
   General Styles
   ========================================================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    color: #0A2540; /* Dark Blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4e6a87;
}

/* ==========================================================================
   Homepage & Section Styles
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.hero-section h1 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0A2540;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.primary-cta {
    background-color: #0A2540; /* Dark Blue */
    color: white;
}

.secondary-cta {
    background-color: transparent;
    color: #0A2540; /* Dark Blue */
    border: 2px solid #0A2540;
}

.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
}

.three-column {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.column {
    flex-basis: 30%;
    text-align: center;
    min-width: 280px;
}

.column h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.icon-placeholder {
    font-size: 3em;
    margin-bottom: 15px;
    color: #0A2540; /* Dark Blue */
}

/* UPDATED: Styles for the privacy-focused founder section on homepage */
.founder-spotlight-privacy {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.founder-bio-privacy h4 {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
details {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

summary {
    font-weight: bold;
    padding: 1em;
    cursor: pointer;
    outline: none;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

summary:hover {
    background-color: #e9ecef;
}

.details-content {
    padding: 1.5em;
    border-top: 1px solid #ddd;
}

.details-content h4 {
    margin-top: 0;
    color: #0A2540; /* Dark Blue */
}

.details-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* ==========================================================================
   Generic Page Styles (for About, Privacy, etc.)
   ========================================================================== */
.page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.page-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.page-content h3 { /* For subheadings in Markdown like "Our Philosophy" */
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content p, .page-content ul, .page-content li {
    font-size: 1.1em;
    color: #444;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
    background-color: #0A2540; /* Dark Blue */
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

.footer-line {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #fff;
    margin: 0 10px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-separator {
    margin: 0 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-line span {
        display: block;
        margin-bottom: 5px;
    }
    .footer-separator {
        display: none;
    }
    .hero-section h1 {
        font-size: 2.2em;
    }
    .page-title {
        font-size: 2em;
    }
}
