/* ===== CSS Variables & Reset ===== */
:root {
    --color-bg: #fafafa;
    --color-bg-alt: #f0f0f0;
    --color-text: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-tertiary: #888888;
    --color-accent: #0066ff;
    --color-accent-light: #e8f1ff;
    --color-accent-dark: #0052cc;
    --color-success: #2e7d32;
    --color-success-light: #e8f5e9;
    --color-error: #c62828;
    --color-error-light: #ffebee;
    --color-border: #e5e5e5;
    --color-card: #ffffff;
    --gradient-text: linear-gradient(135deg, #0066ff 0%, #00b4d8 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    padding: 8px 18px;
    background: var(--color-text);
    color: white !important;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-role {
    display: inline-flex;
    padding: 6px 14px;
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 100px;
}

.availability {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--color-success-light);
    color: var(--color-success);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 100px;
}

.availability::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Hero Pillars - No Numbers */
.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 28px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pillar-icon {
    color: var(--color-accent);
    font-size: 0.6rem;
    margin-top: 6px;
}

.pillar-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-text);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-alt);
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* Profile Photo */
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-text);
    opacity: 0.2;
    z-index: 1;
}

/* Social Icons Below Profile */
.profile-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== Thinking Section ===== */
.thinking-section {
    padding: 80px 24px;
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
}

.thinking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.thinking-card {
    padding: 28px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.thinking-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.thinking-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== Section Styles ===== */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

/* ===== Case Studies ===== */
.case-studies {
    padding: 100px 24px;
}

.case-study {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.case-study:hover {
    box-shadow: var(--shadow-md);
}

.case-study-header {
    padding: 28px 32px;
    cursor: pointer;
    transition: background var(--transition);
    position: relative;
}

.case-study-header:hover {
    background: var(--color-bg);
}

.case-study-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.case-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.case-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 10px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 100px;
}

.case-study-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding-right: 50px;
}

.case-study-preview {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-right: 50px;
}

.expand-icon {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    transition: transform var(--transition), background var(--transition);
}

.case-study.active .expand-icon {
    transform: rotate(180deg);
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.case-study-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study.active .case-study-content {
    max-height: 2000px;
}

.case-study-body {
    padding: 0 32px 32px;
    border-top: 1px solid var(--color-border);
}

.case-section {
    margin-top: 28px;
}

.case-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.case-section p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.case-section p:last-child {
    margin-bottom: 0;
}

.constraint-note {
    padding: 16px;
    background: var(--color-accent-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}

.constraint-note strong {
    color: var(--color-accent);
}

.techniques-note {
    padding: 14px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.techniques-note strong {
    color: var(--color-text);
}

/* Choices Grid */
.choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.choice {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.choice.chosen {
    background: var(--color-success-light);
    border-color: var(--color-success);
}

.choice.rejected {
    background: var(--color-error-light);
    border-color: var(--color-error);
}

.choice-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.choice.chosen .choice-label {
    color: var(--color-success);
}

.choice.rejected .choice-label {
    color: var(--color-error);
}

.choice h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.choice p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.case-section ul {
    display: grid;
    gap: 8px;
}

.case-section li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.case-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ===== Proposals Section ===== */
.proposals {
    padding: 100px 24px;
    background: var(--color-card);
}

.proposals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.proposal-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.proposal-card:hover {
    box-shadow: var(--shadow-md);
}

.proposal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.proposal-logo {
    font-size: 1.75rem;
}

.proposal-company {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-tertiary);
}

.proposal-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.proposal-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.proposal-toggle {
    width: 100%;
    padding: 12px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.proposal-toggle:hover {
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-color: var(--color-accent-light);
}

.proposal-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-card.active .proposal-details {
    max-height: 2000px;
    margin-top: 24px;
}

.proposal-section {
    margin-bottom: 24px;
}

.proposal-section:last-child {
    margin-bottom: 0;
}

.proposal-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.proposal-section p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.proposal-section p:last-child {
    margin-bottom: 0;
}

/* Diagnosis Grid */
.diagnosis-grid {
    display: grid;
    gap: 12px;
}

.diagnosis-item {
    padding: 16px;
    background: var(--color-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.diagnosis-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.diagnosis-item p {
    margin: 0;
    font-size: 0.85rem;
}

/* Solution Details */
.solution-details {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.solution-details li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.solution-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Trade-off Grid */
.tradeoff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tradeoff {
    padding: 16px;
    border-radius: var(--radius-sm);
}

.tradeoff.optimizes {
    background: var(--color-success-light);
    border: 1px solid var(--color-success);
}

.tradeoff.sacrifices {
    background: var(--color-error-light);
    border: 1px solid var(--color-error);
}

.tradeoff-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
}

.tradeoff.optimizes .tradeoff-label {
    color: var(--color-success);
}

.tradeoff.sacrifices .tradeoff-label {
    color: var(--color-error);
}

.tradeoff ul {
    display: grid;
    gap: 6px;
}

.tradeoff li {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    padding-left: 14px;
    position: relative;
}

.tradeoff li::before {
    content: '•';
    position: absolute;
    left: 0;
}

/* ===== Experience Section ===== */
.experience {
    padding: 100px 24px;
}

.timeline {
    margin-top: 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-card);
    border: 3px solid var(--color-border);
    z-index: 1;
}

.timeline-item.current .timeline-marker {
    border-color: var(--color-accent);
    background: var(--color-accent-light);
}

.timeline-content {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.company-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.company-info .role {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
    white-space: nowrap;
}

/* Role Tags for NGO / Part-time */
.role-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.role-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.role-tag.ngo {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

.role-tag.parttime {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.role-context {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
}

.role-context p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.timeline-highlights {
    display: grid;
    gap: 10px;
}

.timeline-highlights li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.timeline-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ===== About Section ===== */
.about {
    padding: 80px 24px;
    background: var(--color-card);
}

.about-grid {
    max-width: 600px;
}

.education-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-top: 24px;
}

.edu-school {
    font-weight: 600;
    font-size: 1rem;
}

.edu-degree {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.edu-year {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

.edu-courses {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.edu-courses span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-tertiary);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 24px;
    background: var(--gradient-dark);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.contact .section-title {
    color: white;
}

.contact-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 440px;
}

.contact-links {
    display: grid;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.contact-link.primary {
    background: white;
    border-color: white;
}

.contact-link.primary .contact-label {
    color: var(--color-text-secondary);
}

.contact-link.primary .contact-value {
    color: var(--color-text);
}

.contact-link.primary:hover {
    background: var(--color-bg);
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    padding: 28px 24px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-role {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
}

.footer-location {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .profile-wrapper {
        width: 180px;
        height: 180px;
    }

    .thinking-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 20px;
        background: var(--color-card);
        border-bottom: 1px solid var(--color-border);
        gap: 12px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .choices-grid,
    .tradeoff-grid {
        grid-template-columns: 1fr;
    }

    .proposals-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .case-study-header {
        padding: 20px;
    }

    .case-study-body {
        padding: 0 20px 20px;
    }

    .expand-icon {
        right: 16px;
        top: 20px;
    }

    .proposal-card {
        padding: 20px;
    }

    .timeline-item {
        padding-left: 32px;
    }

    .timeline-content {
        padding: 20px;
    }
}