* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #333;
    --text-secondary: #555;
    --text-light: #666;
    --header-bg: #315130;
    --accent: #315130;
    --accent-hover: #486047;
    --about-bg: #486047;
    --border: #e0e0e0;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-light: #999;
    --header-bg: #1f3a1f;
    --accent: #5a8759;
    --accent-hover: #6b9a6a;
    --about-bg: #3d5a3c;
    --border: #404040;
    --card-bg: #252525;
    --shadow: rgba(0, 0, 0, 0.3);
}
        
body {
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--header-bg);
    padding: 1.5rem 3rem;
    box-shadow: 0 2px 4px var(--shadow);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.name:hover {
    opacity: 0.8;
}

/* Theme Toggle Switch */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.theme-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(26px);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    padding-top: 8rem;
    background-color: var(--bg-secondary);
    gap: 3rem;
    transition: background-color 0.3s ease;
}

/* Page Header */
.page-header {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
        
/* About Section */
.about-section {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    background-color: var(--about-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    align-items: center;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-content a {
    color: #ffffff;
    text-decoration: underline;
}

.about-content a:hover {
    color: #d4e4f7;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.info-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: background-color 0.3s ease;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.info-card li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Projects Section */
.projects-section {
    max-width: 1260px;
    width: 100%;
}

.projects-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: color 0.3s ease;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow);
}

.project-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    flex: 1;
}

.project-tag {
    display: inline-block;
    background-color: var(--accent-hover);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.project-link:hover {
    background-color: var(--accent-hover);
}

/* Resume Styles */
.resume-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: background-color 0.3s ease;
}

.resume-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 2rem;
}

.resume-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

.resume-section {
    margin-bottom: 2.5rem;
}

.resume-section h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-hover);
    transition: color 0.3s ease;
}

.resume-item {
    margin-bottom: 1.5rem;
}

.resume-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.resume-item .position-date {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.resume-item .location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.resume-item ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.resume-item li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.skill-category {
    background-color: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.skill-category h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.skill-category ul {
    list-style: none;
    padding-left: 0;
}

.skill-category li {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.skill-category li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.honors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
}

.honors-list dt {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.honors-list dt::before {
    content: "*";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.download-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    background-color: var(--accent-hover);
}

/* Project Detail Page */
.back-link {
    display: inline-block;
    margin: 2rem 3rem 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.back-link::before {
    content: "← ";
}

.project-hero {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.project-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent);
}

.project-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.meta-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.project-section {
    margin-bottom: 3rem;
}

.project-section h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.project-section h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.project-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.project-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.project-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem;
    background-color: var(--bg-secondary);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.skills-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.skill-badge {
    background-color: var(--bg-secondary);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.project-button {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.project-button:hover {
    background-color: var(--accent-hover);
}

.project-button.secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.project-button.secondary:hover {
    background-color: var(--accent);
    color: #ffffff;
}

/* Project Details */
.back-link {
    display: inline-block;
    margin: 2rem 3rem 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    }

.back-link:hover {
    opacity: 0.7;
    }

.back-link::before {
    content: "← ";
    }

.project-tag {
    display: inline-block;
    background-color: var(--accent-hover);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    }

/* Case Study */
.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
    }

.case-study-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
    }

.case-study-byline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    }

.case-study-date {
    font-size: 0.9rem;
    color: var(--text-light);
    }

.quote-box {
    background-color: var(--accent-hover);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    }

.persona-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
    }

.persona-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    }

.persona-info h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    }

.persona-details {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    }

.persona-tech {
    background-color: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    max-width: 300px;
    }

.persona-tech h5 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    }

.persona-tech ul {
    list-style: none;
    padding-left: 0;
    }

.persona-tech li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
    }

.persona-tech li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    }

.persona-grid {
    margin-top: 1.5rem;
    }

.persona-section {
    margin-bottom: 1.5rem;
    }

.persona-section h5 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    }

.journey-map {
    overflow-x: auto;
    margin: 1.5rem 0;
    }

.journey-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    }

.journey-table th,
.journey-table td {
    border: 1px solid var(--border);
    padding: 1rem;
    text-align: left;
    vertical-align: top;
    }

.journey-table th {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    }

.journey-table td {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    }

.highlight-box {
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    }

.highlight-box h5 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    }

.highlight-box p {
    color: var(--text-secondary);
    margin: 0;
    }

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    }

.result-item {
    background-color: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    }

.result-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
    }

.result-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    }

.reference-list {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    }

.reference-list h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    }

.reference-list p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    text-indent: -2rem;
    }

/* Zara */
.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    }

.stat-box {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border);
    }

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    }

.stat-value {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    }

.persona-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    }

.persona-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
    }

.persona-info h4 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    }

.persona-demographics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    }

.demo-item {
    padding: 0.5rem 0;
    }

.demo-label {
    font-weight: 600;
    color: var(--text-primary);
    }

.demo-value {
    color: var(--text-secondary);
    }

.persona-section {
    margin-bottom: 1.5rem;
    }

.persona-section h5 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    }

.persona-quote {
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    border-radius: 4px;
    }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
        }

.comparison-box {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    }

.comparison-box h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    }

.comparison-box.before {
    border-left: 4px solid #d32f2f;
    }

.comparison-box.after {
    border-left: 4px solid #388e3c;
    }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    }

.solution-card {
    background-color: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
    }

.solution-card:hover {
    transform: translateY(-5px);
    }

.solution-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
    }

.solution-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    }

.figma-embed {
    width: 100%;
    height: 450px;
    border: 2px solid var(--border);
    border-radius: 8px;
    margin: 2rem 0;
    }

/* Analysis Page */
.research-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    }

.research-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
    }

.culture-section {
    background-color: var(--card-bg);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    }

.culture-section h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    }

.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
    }

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
    }

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
    }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 2px solid var(--bg-primary);
    }

.timeline-date {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    }

.quote-highlight {
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    border-radius: 4px;
    }

.quote-highlight cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    }

.comparison-table th,
.comparison-table td {
    border: 1px solid var(--border);
    padding: 1rem;
    text-align: left;
    vertical-align: top;
    }

.comparison-table th {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    }

.comparison-table td {
    color: var(--text-secondary);
    line-height: 1.6;
    }

.reflection-box {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    }

.reflection-box h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    }

.reflection-box p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
    }

.key-findings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    }

.finding-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    }

.finding-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    }

.finding-card h4 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    }

.finding-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    }

.misconception-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    }

    [data-theme="dark"] .misconception-box {
        background-color: #3d3416;
        border-color: #ffc107;
        color: #ffc107;
        }

.misconception-box h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    }

/* Footer */
footer {
    background-color: var(--header-bg);
    padding: 2rem 3rem;
    box-shadow: 0 -2px 4px var(--shadow);
    transition: background-color 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

footer p {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-nav,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.social-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-nav a::after,
.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-nav a:hover::after,
.social-links a:hover::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .project-hero {
        height: 50vh;
        min-height: 300px;
    }

    .project-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .header-left {
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: var(--accent-hover);
        box-shadow: 0 4px 6px var(--shadow);
        padding: 1.5rem;
        gap: 1rem;
        min-width: 200px;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        padding: 0.5rem 0;
    }

    main {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-section {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .projects-section {
        padding: 0 1rem;
    }

    .projects-section h2 {
        font-size: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .resume-container {
        padding: 2rem 1.5rem;
    }

    .resume-header h1 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .honors-list {
        grid-template-columns: 1fr;
    }

    .back-link {
        margin: 1rem 1.5rem;
    }

    .project-hero {
        height: 40vh;
        min-height: 250px;
    }

    .project-header h1 {
        font-size: 2rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .project-links {
        flex-direction: column;
    }

    footer {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
    .back-link {
        margin: 1rem 1.5rem;
        }

    .project-content {
        padding: 2rem 1.5rem;
        }

    .image-gallery {
        grid-template-columns: 1fr;
        }
    .persona-header {
        flex-direction: column;
        }

    .persona-tech {
        max-width: 100%;
        }

    .results-grid {
        grid-template-columns: 1fr;
        }
    .comparison-grid {
        grid-template-columns: 1fr;
        }

    .persona-header {
        flex-direction: column;
        }

    .figma-embed {
        height: 350px;
            }

    .timeline {
        padding-left: 1rem;
        }

    .timeline-item {
        padding-left: 1.5rem;
        }

    .comparison-table {
        font-size: 0.9rem;
            }

    .reflection-box {
        padding: 1.5rem;
        }
}