/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #111827;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4b5563;
}

/* Typography & Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.primary-btn {
    background-color: #2563eb; /* Premium Blue */
    color: #fff;
}

.primary-btn:hover {
    background-color: #1d4ed8;
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f9fafb;
}

/* Hero Section */
.hero {
    background-color: #111827; /* Dark Slate */
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
}

.hero .subhead {
    color: #9ca3af;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
/* Bio Layout & Profile Picture */
.bio-layout {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevents the image from squishing */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bio-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-pic {
        margin-bottom: 1rem;
    }
}
/* Lists & Grids */
.pedigree ul {
    list-style-type: none;
    margin-top: 1.5rem;
}

.pedigree li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.pedigree li::before {
    content: "→";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.2rem;
    color: #2563eb;
}

/* Investment & CTA */
.investment-details {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.cta {
    text-align: center;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #60a5fa;
    text-decoration: none;
}