/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fefefe;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #f5f5f5;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-left: 0;
    padding-left: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #444;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-menu li a:hover {
    color: #3A5A78;
}

.nav-menu li a.active {
    color: #3A5A78;
    font-weight: 600;
    position: relative;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3A5A78;
}

.nav-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-cta {
    background-color: #3A5A78;
    color: white !important;
    padding: 6px 18px !important;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.nav-cta:hover {
    background-color: #2a4459;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #444;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.name-title {
    margin-bottom: 30px;
}

.name-main {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.name-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #3A5A78;
    font-style: normal;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

.btn-primary {
    display: inline-block;
    background-color: #3A5A78;
    color: white;
    text-decoration: none;
    padding: 6px 18px !important;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2a4459;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.image-frame {
    padding: 0;
    background-color: transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    border: none;
}

#profile-pic {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1px;
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding: 60px 0 100px;
}

.page-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-sub_title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #3A5A78;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* ===== TIMELINE STYLES (MY PATH) ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-entry {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-period {
    width: 150px;
    padding-right: 30px;
    text-align: right;
    position: relative;
}

.period-year {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A5A78;
    margin-bottom: 5px;
}

.period-dot {
    width: 14px;
    height: 14px;
    background-color: #3A5A78;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: 5px;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #3A5A78;
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A5A78;
    margin: 20px 0 10px 0;
}

.timeline-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.client-list {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.timeline-content li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '•';
    color: #3A5A78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sub-timeline {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #3A5A78;
}

.timeline-entry:last-child .timeline-content {
    border-bottom: none;
}

/* ===== CONTENT BLOCKS (BUILDING PREDICTABLE) ===== */
.content-blocks {
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-header {
    text-align: center;
    margin: 50px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.section-header p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.content-block {
    display: flex;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.block-light {
    background-color: #f8f9fa;
}

.block-white {
    background-color: white;
}

.block-icon {
    width: 80px;
    background-color: #3A5A78;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    flex-shrink: 0;
}

.block-icon i {
    font-size: 1.8rem;
    color: white;
}

.truth-number, .step-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.block-content {
    flex: 1;
    padding: 30px 40px;
}

.block-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.core-truth {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #3A5A78;
    border-left: 3px solid #3A5A78;
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.6;
}

.block-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.cta-container {
    margin-top: 25px;
    text-align: center;
}

.btn-large {
    padding: 12px 35px !important;
    font-size: 0.9rem !important;
}

.closing-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.closing-cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.closing-cta p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SIMPLE CONTACT PAGE ===== */
.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #3A5A78;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.contact-item p {
    font-family: 'Source Sans 3', sans-serif;
    color: #555;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A5A78;
}

.btn-full {
    width: 100%;
    padding: 14px !important;
    font-size: 0.9rem !important;
}

/* ===== MY STAND PAGE ===== */
.stand-content {
    max-width: 800px;
    margin: 0 auto;
}

.stand-letter {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.stand-letter p {
    margin-bottom: 25px;
}

.signature {
    margin-top: 40px;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #3A5A78;
    font-weight: 600;
}

.stand-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #f5f5f5;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
}

footer p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.back-to-top {
    color: #3A5A78;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.back-to-top:hover {
    text-decoration: underline;
}

/* ===== LETTER STYLES (MY STAND PAGE) ===== */
.letter-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.letter-paper {
    background-color: white;
    padding: 60px 70px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    max-width: 8.5in;
    min-height: 11in;
    margin: 0 auto;
}

.letter-content {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    /* REMOVED: padding-top: 1in; */
}

.letter-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.letter-signature {
    margin-top: 80px;
    text-align: right;
}

.signature-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14pt;
    font-style: italic;
    color: #222;
    display: inline-block;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .letter-paper {
        padding: 50px 40px;
        max-width: 100%;
        min-height: auto;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* REMOVED: .letter-content { padding-top: 1in; } */
}

@media (max-width: 768px) {
    .letter-container {
        padding: 10px;
    }
    
    .letter-paper {
        padding: 30px 25px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    .letter-content {
        font-size: 1rem;
        line-height: 1.7;
        /* REMOVED: padding-top: 1in; */
    }
    
    .letter-content p {
        margin-bottom: 20px;
    }
    
    .letter-signature {
        margin-top: 50px;
    }
    
    .signature-name {
        font-size: 14pt;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-cta {
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text, .hero-image {
        max-width: 100%;
    }
    
    .name-main {
        font-size: 1.8rem;
    }
    
    .name-subtitle {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .page-header h1,
    .page-main-title {
        font-size: 2.2rem;
    }
    
    .page-sub_title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 120px;
    }
    
    .timeline-period {
        width: 120px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-cta {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 40px 0 60px;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h1,
    .page-main-title {
        font-size: 1.8rem;
    }
    
    .page-sub_title {
        font-size: 1.6rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f5f5f5;
        padding: 20px;
        border-top: 1px solid #e0e0e0;
        gap: 15px;
        margin-left: 0;
        padding-left: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 10px 0;
        display: block;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .name-main {
        font-size: 1.8rem;
    }
    
    .name-subtitle {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .btn-primary {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-entry {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .timeline-period {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .period-dot {
        display: none;
    }
    
    .timeline-content {
        padding-left: 0;
        padding-top: 0;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-block {
        flex-direction: column;
    }
    
    .block-icon {
        width: 100%;
        padding: 20px 0;
    }
    
    .block-icon i {
        font-size: 1.5rem;
    }
    
    .block-content {
        padding: 25px;
    }
    
    .core-truth {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin: 30px 0 20px;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .stand-letter {
        font-size: 1rem;
    }
    
    .closing-cta,
    .closing-stand {
        padding: 30px 25px;
        margin: 40px auto;
    }
    
    .closing-cta h2,
    .closing-stand h2 {
        font-size: 1.5rem;
    }
}