/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #007bff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: none;
}

.nav,
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    margin-left: 3.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Dropdown Menu Styles for Desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    font-size: 0.78rem;
}

.dropdown-item:hover {
    background-color: rgba(139, 92, 246, 0.5);
    color: #ffffff;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure dropdown works on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
    }
    
    .nav-menu .dropdown-menu {
        position: absolute !important;
        display: none !important;
        width: auto !important;
        min-width: 200px !important;
        background: white !important;
        border: 1px solid #e1e5e9 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        margin-top: 0 !important;
    }
    
    .nav-menu .nav-item-dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .nav-menu .dropdown-item {
        padding: 12px 16px !important;
        font-size: 0.78rem !important;
        border-bottom: 1px solid #f0f0f0 !important;
        background: white !important;
    }
    
    .nav-menu .dropdown-item:hover {
        background-color: rgba(139, 92, 246, 0.5) !important;
        color: #ffffff !important;
    }
}

.nav-link:hover {
    color: #000000;
}

/* Hero Section */
.hero {
    padding: 0;
    background: #f8f8f8;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem; /* Reduced from 2rem to 1rem (50% reduction) */
    text-align: center;
    position: relative;
}

.hero-content {
    margin-bottom: 2rem; /* Reduced from 4rem to 2rem (50% reduction) */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.scroll-arrow {
    position: absolute;
    bottom: -2rem;
    right: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    transform: translateY(5px);
}

.scroll-arrow svg {
    width: 24px; /* Increased from 8px to 24px (200% larger) */
    height: 120px; /* Increased from 40px to 120px (200% larger) */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Projects Section */
.projects {
    background: #f8f8f8;
    padding: 20px 0; /* Reduced from 80px to 20px to bring it closer to hero section */
}

.projects .container {
    max-width: 1200px;
    margin: 0 auto;
}

.skolay-project {
    margin-bottom: 2rem;
}

.two-column-projects {
    display: grid;
    grid-template-columns: 2fr 1fr; /* FAM takes 2/3, VNYL takes 1/3 */
    gap: 2rem;
    padding-top: 1.5rem; /* 24px padding on top */
}

.fam-project {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%) !important; /* bg-gradient-to-br from-blue-50 to-indigo-100 */
    border: 1px solid #f3f4f6; /* border border-gray-100 */
}

.vnyl-project {
    /* VNYL project specific styling - no additional styles needed */
    background: transparent;
}

.project-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); /* Reduced opacity by 30% from 0.1 to 0.07 */
    margin: 0;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

/* Adjust VNYL project spacing to match FAM */
.vnyl-project .project-header {
    margin-bottom: 2rem; /* Reduce bottom margin to bring image closer to button */
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.project-description {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    max-width: 500px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem; /* 24px space between tags and button */
}

.tag {
    background: #f3f4f6; /* bg-gray-100 */
    color: #333;
    padding: 0.5625rem 0.9375rem; /* Reduced by 25% from 0.75rem 1.25rem */
    border-radius: 0.28125rem; /* Reduced by 25% from 0.375rem */
    font-size: 0.65625rem; /* Reduced by 25% from 0.875rem */
    border: none;
    font-weight: 400;
    display: inline-block;
    margin-right: 0.5rem; /* mr-2 */
}

.read-more-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 0.75rem 1.125rem; /* Reduced by 25% from 1rem 1.5rem */
    border-radius: 9999px; /* rounded-full */
    font-weight: 500;
    font-size: 15px; /* Reduced by 25% from 20px */
    cursor: pointer;
    transition: background-color 0.3s ease; /* transition-colors */
    white-space: nowrap;
}

.read-more-btn:hover {
    background: #9333ea; /* purple-600 */
    color: white;
}

.project-showcase {
    background: transparent; /* Removed green background */
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add green background on left and right sides of Skolay image */
.skolay-project .project-showcase {
    background: linear-gradient(90deg, 
        #e8f5e8 0%, 
        #e8f5e8 20%, 
        transparent 20%, 
        transparent 80%, 
        #e8f5e8 80%, 
        #e8f5e8 100%
    );
    padding: 0; /* Remove padding to eliminate distance */
    height: 24rem; /* Match image height */
}

/* Override green background for FAM and VNYL projects */
.fam-project .project-showcase,
.vnyl-project .project-showcase {
    background: transparent;
}

/* Remove green background from Skolay project on mobile */
@media (max-width: 768px) {
    .skolay-project .project-showcase {
        background: transparent !important;
    }
}

.app-screenshot {
    width: 100%;
    height: 24rem; /* 384px */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Make VNYL image container match FAM height */
.vnyl-project .app-screenshot {
    min-height: 300px; /* Same height as FAM project */
    margin-top: -0.5rem; /* Move image up by 8px */
}

/* Section 4: GiveDirectly and Books on B Projects */
.projects-section-4 {
    background: transparent;
    padding: 1.5rem 0; /* 24px top and bottom padding */
    margin-top: -1rem; /* Reduce gap from Section 3 to just 24px */
}

.two-column-projects-2 {
    display: grid;
    grid-template-columns: 1fr 2fr; /* GiveDirectly takes 1/3, Books on B takes 2/3 */
    gap: 2rem;
    padding-top: 1.5rem; /* 24px padding on top */
}

.givedirectly-project {
    background: white;
}

.booksonb-project {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); /* Pink gradient background */
    border: 1px solid #f3f4f6; /* Subtle border */
}

/* Remove green background from Section 4 project showcases */
.givedirectly-project .project-showcase,
.booksonb-project .project-showcase {
    background: transparent;
}

.app-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* FAM Project Image Overlapping */
.fam-screenshot {
    position: relative;
    min-height: 300px; /* Increased height to accommodate larger images */
}

.fam-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image */
    z-index: 1;
    opacity: 0.8;
    width: 125%; /* Increased by 25% from 100% */
    height: 125%; /* Increased by 25% from 100% */
    object-fit: contain;
}

.fam-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(20px, -20px); /* Center and offset */
    z-index: 2;
    width: 125%; /* Increased by 25% from 100% */
    height: 125%; /* Increased by 25% from 100% */
    object-fit: contain;
}



/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger Menu Mobile Styles */
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: white !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 80px !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 1rem 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Mobile dropdown menu styles */
    .nav-menu .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8f9fa !important;
        margin-top: 0.5rem !important;
    }
    
    .nav-menu .nav-item-dropdown:hover .dropdown-menu,
    .nav-menu .nav-item-dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .nav-menu .dropdown-item {
        padding: 0.8rem 2rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #e9ecef !important;
    }
    
    /* Fix navbar horizontal scrolling */
    .header {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .nav-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        justify-content: flex-start !important;
    }
    
    .logo {
        margin-left: 4rem !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hamburger-menu {
        left: 1rem !important;
        z-index: 20 !important;
    }
    
    .nav-menu {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .nav-link {
        font-size: 0.9rem !important;
        white-space: nowrap !important;
        padding: 0.5rem !important;
    }
    
    /* Fix dropdown menu on mobile */
    .dropdown-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    .dropdown-item {
        padding: 1rem !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .hero-container {
        max-width: 600px;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .scroll-arrow {
        position: relative;
        bottom: 0;
        right: auto;
        margin-top: 2rem;
    }

    /* Home Page Mobile Responsiveness */
    .projects .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 1rem !important;
    }
    
    .two-column-projects {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .two-column-projects-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .project-card {
        padding: 1.5rem !important;
        margin: 0 0 2rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .project-header {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: flex-start !important;
    }
    
    .project-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .project-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .project-tags {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .tag {
        font-size: 0.8rem !important;
        padding: 0.25rem 0.75rem !important;
    }
    
    .app-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .read-more-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        align-self: flex-start !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 4rem 0 2rem 0 !important;
        min-height: 60vh !important;
    }
    
    .hero-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .scroll-arrow {
        display: none !important;
    }
    
    /* Work Together Section Mobile */
    .work-together {
        padding: 3rem 1rem !important;
    }
    
    .work-together-content {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .work-together-title {
        font-size: 1.8rem !important;
    }
    
    .work-together-description {
        font-size: 1rem !important;
    }
    
    .social-links-work {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    /* Prevent horizontal scrolling */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile navbar fixes */
    .header {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .nav-container {
        padding: 0 0.5rem !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .logo {
        margin-left: 3.5rem !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hamburger-menu {
        left: 0.5rem !important;
        z-index: 20 !important;
    }
    
    .nav-menu {
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .nav-link {
        font-size: 0.8rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Persona Cards Small Screen Responsive */
    .personas-grid {
        gap: 1.5rem;
    }
    
    .persona-card {
        padding: 1rem;
    }
    
    .persona-name {
        font-size: 20px !important;
    }
    
    .section-title {
        font-size: 0.9rem !important;
    }
    
    .user-personas-content {
        margin: 0 0 0 80px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Remove focus outlines from navigation and social links */
.nav-link:focus,
.social-icon:focus,
.dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outlines from all links in navigation */
.nav a:focus,
.navbar a:focus,
.dropdown-menu a:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outlines from all navigation elements */
.nav *:focus,
.navbar *:focus,
.header *:focus,
.nav-menu *:focus,
.nav-item-dropdown *:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove focus outlines from social media links */
.about-me-social-links a:focus,
.social-links-work a:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Universal focus outline removal for all clickable elements */
a:focus,
button:focus,
.nav-link:focus,
.social-icon:focus,
.dropdown-item:focus,
.dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .service-card {
        border: 2px solid #000;
    }
}

/* VNYL Case Study Styles */
.vnyl-hero-section {
    padding: 120px 0 80px 0;
    background: #ffffff;
    color: #1f2937;
    margin-top: 48px;
}

.vnyl-hero-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.detail-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.goal-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.goal-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.goal-list li:last-child {
    margin-bottom: 0;
}

.goal-list li::before {
    content: "•";
    color: #374151;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-image-top {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.hero-image-single {
    max-width: 78%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* VNYL Section Styles */
.project-overview-section,
.problem-statement-section,
.research-section,
.design-process-section,
.key-features-section,
.design-solutions-section,
.results-section,
.my-learnings-section {
    padding: 80px 0;
    background: #ffffff;
}

.project-overview-section .container,
.problem-statement-section .container,
.research-section .container,
.design-process-section .container,
.key-features-section .container,
.design-solutions-section .container,
.results-section .container,
.my-learnings-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.overview-content p,
.problem-content p,
.research-content p,
.process-content p,
.solutions-content p,
.results-content p,
.learnings-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Back to Projects Section */
.back-to-projects-section {
    padding: 60px 0;
    background: #f9fafb;
}

.back-to-projects-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.back-to-projects-btn {
    display: inline-block;
    background: #8b5cf6;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-projects-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Project Details Section */
.project-details-section {
    padding: 80px 0;
    background: #f9fafb;
}

.project-details-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
}

.detail-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.detail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.icon-image {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.detail-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.detail-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.detail-list li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.detail-list li:last-child {
    margin-bottom: 0;
}

/* Design Solution Section */
.design-solution-section {
    padding: 80px 0 40px 0;
    background: #dbeafe;
}

.design-solution-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-header {
    text-align: left;
}

.solution-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.solution-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

/* Solution Details Section */
.solution-details-section {
    padding: 80px 0;
    background: white;
}

.solution-details-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse .solution-content {
    direction: ltr;
}

.solution-content {
    padding: 2rem 0;
}

.solution-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.solution-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.solution-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-video-player {
    max-width: 50%;
    height: auto;
}

/* Success Metrics Section */
.success-metrics-section {
    padding: 80px 0;
    background: white;
}

.success-metrics-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.metrics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.metrics-subtitle {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.metrics-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.metrics-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.metrics-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
}

.metrics-list li:last-child {
    margin-bottom: 0;
}

.prototype-button-container {
    text-align: left;
}

.view-prototype-btn {
    display: inline-flex;
    align-items: center;
    background: #D97706;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-prototype-btn:hover {
    background: #b45309;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.arrow-icon {
    font-weight: 600;
    font-size: 1rem;
}

/* Research Methods Section */
.research-methods-section {
    padding: 80px 0;
    background: white;
}

.research-methods-header {
    background: #dbeafe;
    padding: 60px 0;
    margin-bottom: 0;
}

.research-methods-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.research-methods-section .container:last-child {
    padding-top: 16px;
}

.deep-dive-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.research-methods-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    line-height: 1.2;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
    margin-top: 16px;
}

.method-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.method-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.method-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0;
    line-height: 1.3;
}

.method-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Research Image Section */
.research-image-section {
    padding: 60px 0;
    background: white;
}

.research-image-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.key-takeaways-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.research-insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.research-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* Testing Platform Section */
.testing-platform-section {
    padding: 80px 0;
    background: white;
}

.testing-platform-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.testing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.testing-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 4rem 0;
}

.testing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.testing-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.card-description:last-child {
    margin-bottom: 0;
}

/* Design Principles Section */
.design-principles-section {
    padding: 0 0 80px 0;
    background: white;
}

.principles-header {
    background: #dbeafe;
    padding: 60px 0;
    margin-bottom: 0;
}

.principles-header .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.defining-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.principles-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.design-principles-section .container:last-child {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 60px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.principle-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.principle-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.principle-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.principles-summary {
    text-align: left;
}

.summary-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.summary-text:last-child {
    margin-bottom: 0;
}

/* Personalization Section */
.personalization-section {
    padding: 80px 0;
    background: #f9fafb;
}

.personalization-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.personalization-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.personalization-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.personalization-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.focus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.focus-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
}

.focus-list li:last-child {
    margin-bottom: 0;
}

/* Mockup Features Section */
.mockup-features-section {
    padding: 80px 0;
    background: white;
}

.mockup-features-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.mockup-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mockup-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.mockup-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.mockup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.mockup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.mockup-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.mockup-content-item .mockup-description:last-child {
    margin-bottom: 0;
}

.mockup-content {
    text-align: left;
}

.mockup-content .mockup-title:last-of-type {
    margin-top: 1.5rem;
}

.mockup-content .mockup-title {
    text-align: left;
}

.mockup-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.mockup-content-item {
    text-align: left;
}

.mockup-content-item .mockup-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.3 !important;
}

.mockup-item .mockup-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0 0 0.75rem 0 !important;
    line-height: 1.3 !important;
}

/* Mockup Flow Section */
.mockup-flow-section {
    padding: 80px 0;
    background: white;
}

.mockup-flow-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.mockup-flow-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 4rem;
    overflow-x: auto;
}

.mockup-flow-item {
    flex-shrink: 0;
    width: calc((100% - 80px) / 6);
}

.mockup-flow-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: right;
    border-radius: 8px;
}

.flow-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.flow-feature {
    text-align: center;
}

.flow-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.flow-feature-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Building Store Section */
.building-store-section {
    padding: 80px 0;
    background: #f9fafb;
}

.building-store-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.engagement-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.building-store-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.building-store-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 3rem 0;
}

.design-response-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.design-response-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-response-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.design-response-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
}

.design-response-list li:last-child {
    margin-bottom: 0;
}

/* Store Features Section */
.store-features-section {
    padding: 80px 0;
    background: white;
}

.store-features-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.store-mockup-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 4rem;
    overflow-x: auto;
}

.store-mockup-item {
    flex-shrink: 0;
    width: calc((100% - 48px) / 4);
}

.store-mockup-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.store-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.store-feature {
    text-align: left;
}

.store-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.store-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-feature-list li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.store-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
}

.store-feature-list li:last-child {
    margin-bottom: 0;
}

/* Education About Page Section */
.education-about-section {
    padding: 0;
    background: white;
}

.education-header {
    background: #f9fafb;
    padding: 80px 0;
}

.education-about-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.education-header .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.education-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.education-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.education-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 4rem 0;
}

.education-mockup-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 4rem;
    overflow-x: auto;
}

.education-mockup-item {
    flex-shrink: 0;
    width: calc((100% - 32px) / 3);
}

.education-mockup-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.education-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.education-feature {
    text-align: center;
}

.education-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.education-feature-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Concept Validation Section */
.concept-validation-section {
    padding: 0;
    background: white;
    margin-top: 32px;
}

.validation-header {
    background: #dbeafe;
    padding: 60px 0;
}

.validation-header .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.validation-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.validation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 8px 0 0 0;
    line-height: 1.2;
}

.concept-validation-section .container:last-child {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.validation-feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.feedback-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feedback-summary {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.feedback-user {
    margin-top: 1.5rem;
}

.user-name {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.user-quote {
    background: #fef3c7;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.user-quote::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fef3c7;
}

.user-quote p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.validation-conclusion {
    text-align: center;
    padding: 2rem 0;
}

.validation-conclusion p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

/* Terminology Fix Grid */
.terminology-fix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.terminology-text {
    text-align: left;
    margin-bottom: 1.5rem;
}

.terminology-text p {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.terminology-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.vibe-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3b82f6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transform: scaleX(1.2);
}

.terminology-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terminology-right {
    text-align: left;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-clarity-grid {
    margin-top: 4rem;
}

/* Refinement Section */
.refinement-section {
    padding: 0;
    background: white;
    margin-top: 32px;
}

.refinement-header {
    background: #dbeafe;
    padding: 60px 0;
}

.refinement-header .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.refinement-labels {
    margin-bottom: 1rem;
}

.refinement-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem 0;
}

.refinement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.refinement-section .container:last-child {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 80px 2rem 0 2rem;
}

.refinement-intro {
    margin-bottom: 3rem;
}

.refinement-intro p {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.refinement-details {
    margin-bottom: 3rem;
}

.refinement-item {
    margin-bottom: 2rem;
}

.refinement-item h3 {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.refinement-impact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.refinement-impact p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.refinement-images {
    display: flex;
    gap: 16px;
    margin-top: 3rem;
    justify-content: center;
}

.refinement-image {
    width: 585px;
    height: 439px;
    object-fit: contain;
}

/* Style Guide Section */
.style-guide-section {
    padding: 80px 0;
    background: white;
    margin-top: 32px;
}

.style-guide-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.style-guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.style-guide-content {
    margin-bottom: 3rem;
}

.style-guide-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.style-guide-content p:last-child {
    margin-bottom: 0;
}

.style-guide-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.style-guide-img {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Design Solution Final Section */
.design-solution-final-section {
    padding: 80px 0;
    background: white;
    margin-top: 32px;
}

.design-solution-final-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.design-solution-final-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.design-solution-final-content {
    margin-bottom: 3rem;
}

.design-solution-final-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.design-solution-final-content p:last-child {
    margin-bottom: 0;
}

.design-solution-final-mockups {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.mockup-image {
    max-width: 281px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: none;
}

/* Reflection & Future Developments Section */
.reflection-future-section {
    padding: 80px 0;
    background: white;
    margin-top: 32px;
}

.reflection-future-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.reflection-future-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.reflection-section {
    margin-bottom: 4rem;
}

.reflection-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.reflection-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reflection-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.reflection-item p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.future-section {
    margin-bottom: 2rem;
}

.future-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.future-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.future-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.future-item p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Research Insights Section */
.research-insights-section {
    padding: 80px 0;
    background: white;
}

.research-insights-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.key-takeaways-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.research-insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    line-height: 1.2;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3rem;
    row-gap: 4rem;
    align-items: start;
}

.insight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
}

.insight-icon-container {
    width: 120px;
    height: 120px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.insight-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.insight-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1;
}

.insight-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.insight-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.insight-quote {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

.quote-line {
    width: 2px;
    height: 100%;
    background: #6b7280;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.quote-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

/* About Me Section */
.about-me-section {
    background: #ffffff;
    padding: 6rem 0;
}

.about-me-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-me-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.about-me-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.about-me-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me-photo {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-me-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Let's Work Together Section */
.work-together {
    background: #000000;
    color: white;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.work-together-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.work-together-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.work-together-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

.work-together-email {
    display: block;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.work-together-email:hover {
    opacity: 0.8;
}

.social-links-work {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: #d1d5db; /* Light gray color */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.help-icon {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: #374151; /* Dark gray background */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.help-icon:hover {
    background: #4b5563;
}

/* Case Study Page Styles */
.case-study-main {
    padding-top: 80px; /* Account for fixed header */
    background: #ffffff;
}

.case-study-hero {
    background: #ffffff;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.case-study-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
    justify-items: start;
}

.case-study-hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
}

.hero-video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.hero-fallback-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.case-study-hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Research & Design Section */
.research-design-section {
    padding: 4rem 0;
    background: #ffffff;
}

.research-design-section .container {
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
    justify-items: start;
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.research-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.research-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0;
}

.research-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0;
}

.research-objectives {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.research-objectives li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.research-objectives li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.25rem;
}

.research-video {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    margin-top: 2rem;
    padding: 1rem 0;
}

.section-video {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 1rem;
}

/* Project Details Section */
.project-details-section {
    padding: 4rem 0;
    background: #ffffff;
}

.project-details-section .container {
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header .section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.detail-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.detail-icon svg {
    width: 32px;
    height: 32px;
}

.detail-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.detail-content {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0;
}

.detail-content p {
    margin-bottom: 0.5rem;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

/* Key Insights Section */
.key-insights-section {
    padding: 4rem 0;
    background: #ffffff;
}

.key-insights-section .container {
    max-width: none;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
    width: auto;
}

.insights-content {
    max-width: none;
    width: 100%;
}

.insights-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    white-space: normal;
}

.insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insights-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.insights-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.25rem;
}

/* User Research Summary Section */
.user-research-summary-section {
    padding: 4rem 0;
    background: #ffffff;
}

.user-research-summary-section .container {
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.insight-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.insight-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D97706;
    margin-bottom: 1rem;
    line-height: 1;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.insight-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-bubble {
    background: #F3E8FF;
    padding: 1.5rem;
    border-radius: 16px;
    border: none;
}

.quote-bubble p {
    font-size: 0.875rem;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.back-to-top {
    text-align: center;
    margin-top: 2rem;
}

.back-to-top-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-to-top-btn:hover {
    background: #0056b3;
}

/* Floating Back to Top Button */
.floating-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    color: #007bff;
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: underline;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.floating-back-to-top:hover {
    color: #0056b3;
}

.floating-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* FAM Hero Section */
.fam-hero-section {
    padding: 8rem 0 6rem 0;
    background: #ffffff;
    margin-top: 80px;
}

/* GiveDirectly Hero Section */
.givedirectly-hero-section {
    padding: 120px 0 80px 0;
    background: #dcfce7;
    color: #1f2937;
    margin-top: 48px;
    text-align: center;
}

.givedirectly-hero-section .container {
    max-width: calc(100vw - 384px);
    margin-left: 192px;
    margin-right: 192px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.givedirectly-hero-section .hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    line-height: 1.1;
}

.hero-images-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-image-left {
    position: relative;
    z-index: 2;
    max-width: 320px;
    transform: translateY(-20px) translateX(10px);
}

.hero-image-right {
    position: relative;
    z-index: 1;
    max-width: 320px;
    transform: translateY(-10px) translateX(-10px);
}

.givedirectly-hero-section .hero-image-single {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
}

.givedirectly-hero-section .hero-image-single:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

/* Project Information Section */
.project-info-section {
    padding: 80px 0;
    background: white;
}

.project-info-section .container {
    max-width: calc(100vw - 384px);
    margin-left: 192px;
    margin-right: 192px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-item {
    text-align: left;
}

.prompt-item {
    padding-right: 2rem;
    padding-left: 192px;
}

.details-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-row {
    margin-bottom: 1rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.info-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.info-text:last-child {
    margin-bottom: 0;
}

/* Project Context Section */
.project-context-section {
    padding: 80px 0;
    background: #dcfce7;
}

.project-context-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.context-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f766e;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.context-description {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

/* Design Solution Section */
.design-solution-section {
    padding: 80px 0;
    background: white;
}

.design-solution-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.design-solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    line-height: 1.2;
    text-align: left;
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse .solution-text {
    direction: ltr;
}

.solution-text {
    max-width: 500px;
}

.solution-item:first-child .solution-text {
    margin-left: 32px;
}

.solution-item:last-child .solution-text {
    margin-left: 32px;
}

/* Understanding Web3 Section */
.understanding-web3-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.understanding-web3-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.understanding-web3-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.understanding-web3-header {
    margin-bottom: 2rem;
}

.understanding-web3-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.understanding-web3-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.understanding-web3-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-item {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    position: relative;
}

.question-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: bold;
}

/* Research Deep Dive Section */
.research-deep-dive-section {
    padding: 80px 0;
    background: #ffffff;
}

.research-deep-dive-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.research-deep-dive-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.research-deep-dive-header {
    margin-bottom: 2rem;
}

.research-deep-dive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.research-deep-dive-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 3rem 0;
}

.research-deep-dive-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.survey-icon {
    margin-bottom: 1rem;
}

.response-count {
    font-size: 1.125rem;
    color: #10B981;
    font-weight: 600;
    margin: 0;
}

.research-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 0.96rem;
    background: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 125%;
    margin: 0 -12.5%;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.48rem;
}

.stat-description {
    font-size: 0.96rem;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

.participant-quote {
    text-align: center;
    margin-top: 2rem;
}

.quote-text {
    font-size: 1.125rem;
    color: #10B981;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}

/* How and Where Web3 Section */
.how-web3-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.how-web3-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.how-web3-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.how-web3-header {
    margin-bottom: 2rem;
}

.how-web3-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.how-web3-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.web3-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    position: relative;
}

.benefit-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: bold;
}

.web3-conclusion {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

/* Understanding Users Section */
.understanding-users-section {
    padding: 80px 0;
    background: #ffffff;
}

.understanding-users-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.understanding-users-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.understanding-users-header {
    margin-bottom: 2rem;
}

.understanding-users-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.understanding-users-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 3rem 0;
}

.key-takeaways-section {
    margin-top: 2rem;
    padding: 80px 0 80px 192px;
    background: #dcfce7;
    width: 100%;
    margin-left: 0;
    position: relative;
}

.key-takeaways-title {
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.takeaway-item:last-child {
    margin-bottom: 0;
}

.takeaway-number {
    font-size: 4rem;
    font-weight: 300;
    color: #1f2937;
    line-height: 1;
    min-width: 60px;
}

.takeaway-content {
    flex: 1;
}

.takeaway-main-point {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.takeaway-detail {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    position: relative;
}

.takeaway-detail::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #374151;
    font-size: 0.75rem;
    top: 0.25rem;
}

/* Why No International Donations Section */
.why-no-donations-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-no-donations-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.why-no-donations-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.why-no-donations-header {
    margin-bottom: 3rem;
}

.why-no-donations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.reason-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    min-width: 50px;
}

.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.reason-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.reason-quote {
    font-size: 1.125rem;
    color: #10B981;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #10B981;
}

/* Key Takeaways Section - Duplicate removed */

.key-takeaways-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.key-takeaways-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: block;
    text-align: left;
}

.key-takeaways-header {
    margin-bottom: 3rem;
}

.key-takeaways-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.takeaways-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.takeaway-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    min-width: 50px;
}

.takeaway-content {
    flex: 1;
}

.takeaway-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.takeaway-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Ideating Features Section */
.ideating-features-section {
    padding: 80px 0;
    background: #dcfce7;
}

.ideating-features-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.ideating-features-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.ideating-features-header {
    margin-bottom: 3rem;
}

.ideating-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Wireframe Annotations Section */
.wireframe-annotations-section {
    padding: 80px 0;
    background: #ffffff;
}

.wireframe-annotations-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.wireframe-annotations-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.wireframe-annotations-header {
    margin-bottom: 3rem;
}

.wireframe-annotations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.wireframe-annotations-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.wireframes-container {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    margin-right: 192px;
}

.wireframe-left, .wireframe-right {
    flex: 0 1 auto;
    position: relative;
}

.wireframe-image {
    text-align: center;
    position: relative;
}

.wireframe-img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}

.annotation-left {
    position: absolute;
    left: -4px;
    top: 20%;
    transform: none;
    z-index: 10;
}

.annotation-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.annotation-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.annotation-item.top-right {
    top: 33%;
    right: -4px;
}

.annotation-item.bottom-right {
    bottom: 84px;
    right: -4px;
}

.annotation-line {
    width: 100px;
    height: 2px;
    background: #10B981;
    position: relative;
}

.annotation-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #10B981;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.annotation-content {
    min-width: 180px;
}

.annotation-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.annotation-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

/* Feedback & Reassurance Section */
.feedback-reassurance-section {
    padding: 80px 0;
    background: #ffffff;
}

.feedback-reassurance-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.feedback-reassurance-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.feedback-reassurance-header {
    margin-bottom: 3rem;
}

.feedback-reassurance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.feedback-reassurance-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.feedback-wireframe {
    text-align: center;
    margin-top: 2rem;
}

.feedback-img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tracking Fund Spending Section */
.tracking-fund-spending-section {
    padding: 80px 0;
    background: #ffffff;
}

.tracking-fund-spending-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.tracking-fund-spending-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.tracking-fund-spending-header {
    margin-bottom: 3rem;
}

.tracking-fund-spending-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.tracking-fund-spending-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.tracking-grid-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.tracking-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.tracking-image-item {
    position: relative;
}

.tracking-img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.pin {
    position: absolute;
    top: 12px;
    right: 15%;
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.tracking-legend {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.legend-pin {
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.legend-content {
    flex: 1;
}

.legend-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.legend-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-grid-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tracking-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tracking-legend {
        flex: none;
        width: 100%;
    }
}

/* Educating Users Section */
.educating-users-section {
    padding: 80px 0;
    background: #ffffff;
}

.educating-users-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.educating-users-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.educating-users-header {
    margin-bottom: 3rem;
}

.educating-users-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.educating-users-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.educating-images-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.educating-image-item {
    flex: 1;
}

.educating-img {
    width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Testing and Improvements Section */
.testing-improvements-section {
    padding: 80px 0;
    background: #dcfce7;
}

.testing-improvements-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.testing-improvements-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.testing-improvements-header {
    margin-bottom: 3rem;
}

.testing-improvements-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

/* Trustable Circle Feature Section */
.trustable-circle-section {
    padding: 80px 0;
    background: #ffffff;
}

.trustable-circle-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.trustable-circle-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.trustable-circle-header {
    margin-bottom: 3rem;
}

.trustable-circle-title {
    font-size: 1.2375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.trustable-circle-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.trustable-circle-image-container {
    position: relative;
    text-align: center;
    margin-top: 2rem;
}

.trustable-circle-img {
    width: 25%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trusted-circle {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    border: 4px solid #337AB7;
    border-radius: 50%;
    pointer-events: none;
}

/* Continuous Education Section */
.continuous-education-section {
    padding: 80px 0;
    background: #ffffff;
}

.continuous-education-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.continuous-education-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.continuous-education-header {
    margin-bottom: 3rem;
}

.continuous-education-title {
    font-size: 1.2375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.continuous-education-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.wallet-images-container {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 2rem;
}

.wallet-img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced Security Section */
.enhanced-security-section {
    padding: 80px 0;
    background: #ffffff;
}

.enhanced-security-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.enhanced-security-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.enhanced-security-header {
    margin-bottom: 3rem;
}

.enhanced-security-title {
    font-size: 1.2375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.enhanced-security-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.enhanced-security-detail {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.security-images-container {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 2rem;
}

.security-img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* User Identification Update Section */
.user-identification-section {
    padding: 80px 0;
    background: #ffffff;
}

.user-identification-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.user-identification-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.user-identification-header {
    margin-bottom: 3rem;
}

.user-identification-title {
    font-size: 1.2375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.user-identification-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-item {
    text-align: center;
}

.comparison-img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.comparison-caption {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.comparison-arrow svg {
    width: 32px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        padding: 0.5rem;
    }
    
    .comparison-arrow svg {
        width: 24px;
        height: 32px;
    }
    
    .comparison-img {
        width: 75%;
    }
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: #ffffff;
}

.next-steps-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.next-steps-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.next-steps-header {
    margin-bottom: 3rem;
}

.next-steps-title {
    font-size: 1.60875rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    flex-shrink: 0;
    min-width: 40px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.step-description {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Problem Statement Section */
.problem-statement-section {
    padding: 80px 0;
    background: #ffffff;
}

.problem-statement-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-statement-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.problem-statement-header {
    margin-bottom: 3rem;
}

.problem-statement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.problem-statement-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.evaluation-criteria {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.criteria-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

.criteria-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* How Might We Section */
.how-might-we-section {
    padding: 80px 0;
    background: #ffffff;
}

.how-might-we-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.how-might-we-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.how-might-we-header {
    margin-bottom: 3rem;
}

.how-might-we-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.hmw-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hmw-card {
    background: #dcfce7;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.hmw-card:not(:last-child):hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hmw-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.hmw-question {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    min-height: 3rem;
}

.hmw-arrow {
    font-size: 1.5rem;
    color: #10B981;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.hmw-card:not(:last-child):hover .hmw-arrow {
    opacity: 1;
}

/* User Personas Section */
.user-personas-section {
    padding: 80px 0;
    background: #ffffff;
}

.user-personas-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.user-personas-content {
    max-width: none;
    margin: 0 0 0 160px;
    position: relative;
    display: block;
    text-align: left;
}

.user-personas-header {
    margin-bottom: 3rem;
}

.user-personas-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.personas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.persona-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.donor-card {
    background: #f3f4f6;
}

.philanthropist-card {
    background: #e5e7eb;
}

.persona-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.persona-name {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 0;
    line-height: 1.2;
}

.persona-section {
    margin-bottom: 1.5rem;
}

.persona-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.section-content {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-list li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.section-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: bold;
}

.section-list li:last-child {
    margin-bottom: 0;
}

/* Research Goals Section */
.research-goals-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.research-goals-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 0 0 0;
    padding: 0 2rem;
}

.research-content {
    max-width: none;
    margin: 0 0 0 192px;
    position: relative;
    display: block;
    text-align: left;
    width: calc(100% - 192px);
}

.research-header {
    position: relative;
    margin-bottom: 2rem;
    display: block;
    width: 100%;
    text-align: left;
}

.research-number {
    position: absolute;
    left: -60px;
    top: 0;
    font-size: 4rem;
    font-weight: 300;
    color: #6b7280;
    line-height: 1;
}

.research-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
    display: block;
    width: 100%;
    text-align: left;
}

.research-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    display: block;
    width: 100%;
    text-align: left;
}

.research-questions {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    display: block;
    width: 100%;
    text-align: left;
}

.research-goals-list {
    display: block;
    width: 100%;
}

.goal-item {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
}

.goal-item:last-child {
    margin-bottom: 0;
}

.goal-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    display: inline;
}

.goal-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    display: inline;
}

.solution-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.solution-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.solution-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-video-player {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.fam-hero-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.fam-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fam-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fam-hero-title {
    font-size: 5.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.fam-hero-line {
    display: block;
    color: #1f2937;
}

.fam-hero-brand {
    display: block;
    color: #8b5cf6;
}

.fam-hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fam-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fam-hero-phone {
    max-width: 540px;
    height: auto;
    border-radius: 0;
}

.fam-hero-phone-background {
    position: absolute;
    left: -56px;
    z-index: 1;
}

.fam-hero-phone-foreground {
    position: relative;
    left: 60px; /* This creates the 20% overlap from the right side */
    z-index: 2;
}

/* Hackathon Section */
.hackathon-section {
    padding: 6rem 0;
    background: #ffffff;
}

.hackathon-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.hackathon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hackathon-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hackathon-question {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin: 0;
}

.achievement-box {
    background: #7c3aed;
    padding: 2rem;
    border-radius: 8px;
}

.achievement-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.achievement-detail {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.hackathon-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image {
    max-width: 100%;
    height: auto;
}

/* Problem & Focus Section */
.problem-focus-section {
    padding: 6rem 0;
    background: #ffffff;
}

.problem-focus-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-focus-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.problem-section,
.focus-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-focus-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.problem-focus-text {
    font-size: 1.125rem;
    color: #000000;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}

/* Key Research Insights Section */
.key-insights-section {
    padding: 6rem 0;
    background: #ffffff;
}

.key-insights-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.key-insights-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    text-align: left;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.insight-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.insight-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.insight-quote {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.insight-quote p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Design Goals Section */
.design-goals-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.design-goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.design-goals-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.design-goals-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.design-goals-title .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-align: left;
}

.design-goals-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.goal-pointer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    margin-top: 0.25rem;
}

.goal-pointer svg {
    width: 20px;
    height: 20px;
}

.goal-text {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0;
    line-height: 1.6;
}

/* Design Solution Section */
.design-solution-section {
    padding: 6rem 0;
    background: #ffffff;
}

.design-solution-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.design-solution-section .section-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    text-align: left;
}

.key-design-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.key-design-item:last-child {
    margin-bottom: 0;
}

.key-design-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.key-design-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.key-design-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.key-design-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-solution-video {
    max-width: 50%;
    height: auto;
    border-radius: 0;
}

/* Design Process Section - Removed duplicate rule */

.process-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.process-header {
    display: contents;
}

.process-phase {
    background: #8b5cf6;
    color: #ffffff;
    padding: 2rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.process-row {
    display: contents;
}

.process-category {
    background: #f8fafc;
    color: #1f2937;
    padding: 2rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-right: 1px solid #e5e7eb;
    min-height: 120px;
}

.process-cell {
    background: #ffffff;
    padding: 2rem 1.5rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.process-cell:last-child {
    border-right: none;
}

.methods-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.methods-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.methods-list li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: 600;
}

.methods-list li:last-child {
    margin-bottom: 0;
}

/* Exploratory Phase Section */
.exploratory-phase-section {
    padding: 6rem 0 2rem 0;
    background: #ffffff;
}

.exploratory-phase-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.main-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 3rem 0;
    text-align: left;
}

.exploratory-phase-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 3rem 0 1.5rem 0;
    text-align: left;
}

.exploratory-phase-section .section-title:first-of-type {
    margin-top: 0;
}

.competitive-research-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    max-width: 800px;
}

.competitive-research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    margin-left: 32px;
}

.key-insights-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
}

.research-chart-container {
    display: flex;
    justify-content: center;
    margin-top: -16px;
}

.research-chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.key-insights-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-insights-title {
    margin: 0;
}

.key-insights-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.key-insights-list li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

.key-insights-list li:last-child {
    margin-bottom: 0;
}

.key-insights-list strong {
    color: #1f2937;
    font-weight: 700;
}

/* Define Phase Section */
.define-phase-section {
    padding: 2rem 0 6rem 0;
    background: #ffffff;
}

.define-phase-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.define-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    text-align: left;
}

.define-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.define-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 4rem 0;
    line-height: 1.6;
    max-width: 800px;
}

.research-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
}

.main-research-image {
    max-width: 40%;
    height: auto;
    border-radius: 0;
}

.persona-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.insight-box {
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.insight-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
}

.behavior-box {
    background: #ede9fe;
    color: #1f2937;
}

.behavior-box::after {
    border-color: transparent transparent #ede9fe transparent;
}

.needs-box {
    background: #f3e8ff;
    color: #1f2937;
}

.needs-box::after {
    border-color: transparent transparent #f3e8ff transparent;
}

.painpoints-box {
    background: #ede9fe;
    color: #1f2937;
}

.painpoints-box::after {
    border-color: transparent transparent #ede9fe transparent;
}

.insight-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.insight-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #4b5563;
}

.insight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-box li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #4b5563;
    padding-left: 1.5rem;
    position: relative;
}

.insight-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 600;
}

.insight-box li:last-child {
    margin-bottom: 0;
}

/* Design Phase Section */
.design-phase-section {
    padding: 2rem 0 6rem 0;
    background: #ffffff;
}

.design-phase-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.design-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    text-align: left;
}

.design-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 3rem 0 1.5rem 0;
    text-align: left;
}

.design-section-title:first-of-type {
    margin-top: 0;
}

.design-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    max-width: 800px;
}

.design-principles-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.design-principles-list li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
}

.design-principles-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.5rem;
}

.design-principles-list li:last-child {
    margin-bottom: 0;
}

.design-flow-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 2rem 0 1rem 0;
    line-height: 1.6;
    max-width: 800px;
}

.design-note {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
}

.flowchart-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 4rem 0;
}

.flowchart-image-file {
    max-width: 75%;
    height: auto;
    border-radius: 0;
}

/* Wireframes Section */
.wireframes-section {
    padding: 6rem 0;
    background: #ffffff;
}

.wireframes-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.wireframes-section .section-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    text-align: left;
}

.wireframes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.wireframes-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 32px;
}

.wireframes-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transform: translateY(-32px);
}

.wireframes-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wireframes-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

.content-strategy-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.content-strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-strategy-list li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
}

.content-strategy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
}

.content-strategy-list li:last-child {
    margin-bottom: 0;
}



.wireframes-collage {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

/* Profile Setup Section */
.profile-setup-section {
    padding: 6rem 0;
    background: #ffffff;
}

.profile-setup-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.profile-setup-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.profile-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0 0 4rem 0;
    line-height: 1.6;
    max-width: 800px;
}

.profile-screens-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.profile-screen {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-screen-image {
    max-width: 100%;
    height: auto;
    border-radius: 1px;
    border: 1px solid #e5e7eb;
}

/* Dinner Invite Section */
.dinner-invite-section {
    padding: 6rem 0;
    background: #ffffff;
}

.dinner-invite-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.dinner-invite-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    text-align: left;
}

.dinner-invite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.dinner-invite-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dinner-invite-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dinner-invite-features li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

.dinner-invite-features li:last-child {
    margin-bottom: 0;
}

.dinner-invite-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.dinner-invite-screen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dinner-invite-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Collaboration Tool Section */
.collaboration-tool-section {
    padding: 6rem 0;
    background: #ffffff;
}

.collaboration-tool-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.collaboration-tool-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4rem 0;
    text-align: left;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.collaboration-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collaboration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collaboration-features li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

.collaboration-features li:last-child {
    margin-bottom: 0;
}

.collaboration-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.collaboration-screen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collaboration-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Final Design Section */
.final-design-section {
    padding: 6rem 0;
    background: #ffffff;
}

.final-design-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.final-design-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2rem 0;
    text-align: left;
}

.final-design-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    text-align: center;
}

.profile-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: left;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
    max-width: 100%;
    display: block;
}

.final-design-section .profile-description {
    text-align: center;
}

/* Decorative Line */
.decorative-line {
    width: 180px;
    height: 2px;
    background: #8b5cf6;
    margin: 0 auto 1.5rem auto;
    border-radius: 1px;
}

/* Specific positioning for Discovery and Collaboration sections */
.discovery-section .decorative-line,
.collaboration-section .decorative-line {
    margin: 0 auto 1.5rem auto;
}

.profile-design-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.profile-design-screen:last-child {
    margin-left: -32px;
}

.profile-design-screen {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-design-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Single Profile Image Container */
.profile-image-container {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
    align-items: flex-start;
}

.profile-image-container .profile-design-image {
    max-width: 25%;
    height: auto;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}





.profile-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.annotation-left {
    top: 20px;
    left: -200px;
}

.annotation-right {
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
}

.annotation-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid #8b5cf6;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.annotation-label {
    background: #8b5cf6;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Cards Pair Layout */
.cards-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.card-panel {
    margin: 0 !important;
    padding: 0;
}

.card-panel img {
    display: block;
    width: 100%;
    height: auto;
}

/* Sticky Navigation Menu */
.sticky-menu {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.sticky-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px;
}

.sticky-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sticky-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.sticky-menu-item:hover {
    color: #22c55e;
}

.sticky-menu-item:hover .sticky-menu-dot {
    background: #22c55e;
    border-color: #22c55e;
}

.sticky-menu-item:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.sticky-menu-item:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.sticky-menu-item.active {
    color: #22c55e;
    font-weight: 600;
}

.sticky-menu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    transition: all 0.2s ease;
}

.sticky-menu-item.active .sticky-menu-dot {
    background: #22c55e;
    border-color: #22c55e;
}

/* Case Study Specific Sticky Menu Colors */

/* Skolay Case Study - Light Purple */
.skolay-case-study .sticky-menu-item:hover {
    color: #a855f7;
}

.skolay-case-study .sticky-menu-item:hover .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

.skolay-case-study .sticky-menu-item.active {
    color: #a855f7;
}

.skolay-case-study .sticky-menu-item.active .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

/* Fam Case Study - Light Purple */
.fam-case-study .sticky-menu-item:hover {
    color: #a855f7;
}

.fam-case-study .sticky-menu-item:hover .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

.fam-case-study .sticky-menu-item.active {
    color: #a855f7;
}

.fam-case-study .sticky-menu-item.active .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

/* VNYL Case Study - Light Orange */
.vnyl-case-study .sticky-menu-item:hover {
    color: #ff6b35;
}

.vnyl-case-study .sticky-menu-item:hover .sticky-menu-dot {
    background: #ff6b35;
    border-color: #ff6b35;
}

.vnyl-case-study .sticky-menu-item.active {
    color: #ff6b35;
}

.vnyl-case-study .sticky-menu-item.active .sticky-menu-dot {
    background: #ff6b35;
    border-color: #ff6b35;
}

/* Books on B Case Study - Light Purple */
.books-on-b-case-study .sticky-menu-item:hover {
    color: #a855f7;
}

.books-on-b-case-study .sticky-menu-item:hover .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

.books-on-b-case-study .sticky-menu-item.active {
    color: #a855f7;
}

.books-on-b-case-study .sticky-menu-item.active .sticky-menu-dot {
    background: #a855f7;
    border-color: #a855f7;
}

/* Testing Beta App Section */
.testing-beta-section {
    padding: 4rem 0;
    background: #ffffff;
}

.testing-beta-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.testing-content {
    max-width: none;
    width: 100%;
}

.testing-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Beta Testing Results Section */
.beta-testing-results-section {
    padding: 4rem 0;
    background: #ffffff;
}

.beta-testing-results-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.testing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testing-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testing-image {
    background: #f9fafb;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beta-testing-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 200px;
}

.testing-description {
    padding: 1.5rem;
}

.testing-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testing-issues {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testing-issues li {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.testing-issues li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
    font-size: 0.75rem;
}

.testing-issues li:last-child {
    margin-bottom: 0;
}

/* Problem Statements Section */
.problem-statements-section {
    padding: 4rem 0;
    background: #ffffff;
}

.problem-statements-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.problem-statements-content {
    text-align: center;
}

.problem-context {
    font-size: 1.125rem;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.speech-bubbles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.speech-bubble {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.blue-bubble {
    background: #F3E8FF;
    color: #1f2937;
    margin-right: auto;
    margin-left: 0;
}

.blue-bubble::after {
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #F3E8FF;
    bottom: -15px;
    left: 30px;
}

.beige-bubble {
    background: #007bff;
    color: white;
    margin-left: auto;
    margin-right: 0;
}

.beige-bubble::after {
    border-width: 15px 20px 15px 0;
    border-color: transparent #007bff transparent transparent;
    top: -15px;
    right: 30px;
}

.speech-bubble p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: inherit;
}

.speech-bubble strong {
    font-weight: 700;
}

/* Designing Towards Solution Section */
.designing-solution-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.designing-solution-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.designing-solution-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.designing-intro {
    padding: 2rem;
    margin-bottom: 0;
}

.designing-intro .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.designing-intro p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.designing-key-aspects {
    padding: 2rem;
}

.key-aspects-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.key-aspects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-aspects-list li {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.key-aspects-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.25rem;
}

.key-aspects-list li:last-child {
    margin-bottom: 0;
}

/* Redesign Homescreen Section */
.redesign-homescreen-section {
    padding: 4rem 0;
    background: #ffffff;
}

.redesign-homescreen-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.redesign-homescreen-content {
    text-align: left;
}

.redesign-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.redesign-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.redesign-description {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
}

/* Redesign Screens Section */
.redesign-screens-section {
    padding: 4rem 0;
    background: #ffffff;
}

.redesign-screens-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.redesign-screens-content {
    text-align: center;
}

.redesign-screens-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.screens-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.screen-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4px;
    justify-items: center;
    align-items: start;
    position: relative;
}

.screen-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 600px;
}

.redesign-screen-image {
    width: 300px;
    height: 600px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: top center;
    border: 3px solid #e5e7eb;
}

/* Annotation styles */
.annotation {
    position: absolute;
    z-index: 20;
    pointer-events: none;
}

.annotation-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #007bff;
    position: absolute;
}

.annotation-label {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Updated Fellows Profile Section */
.updated-fellows-profile-section {
    padding: 4rem 0;
    background: #ffffff;
}

.updated-fellows-profile-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.updated-fellows-profile-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.updated-fellows-profile-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Two-column layout for fellows profile */
.fellows-profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fellows-profile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fellows-profile-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.fellows-profile-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fellows-profile-image {
    max-width: 70%;
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Annotation Side Styles for Fellows Profile */
.updated-fellows-profile-section .annotation-side {
    position: absolute;
    z-index: 30;
    pointer-events: none;
}

.updated-fellows-profile-section .annotation-arrow {
    width: 0;
    height: 0;
    position: absolute;
    display: block;
}

.updated-fellows-profile-section .annotation-label {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Annotation positioning for fellows profile */
.engage-annotation {
    top: 80px;
    left: -120px;
}

.explore-annotation {
    top: 80px;
    right: -120px;
}

.support-annotation {
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
}

.book-annotation {
    bottom: 80px;
    right: -120px;
}

.engage-annotation .annotation-arrow {
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #007bff;
    z-index: 31;
}

.explore-annotation .annotation-arrow {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #007bff;
    z-index: 31;
}

.support-annotation .annotation-arrow {
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #007bff;
    z-index: 31;
}

.book-annotation .annotation-arrow {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #007bff;
    z-index: 31;
}

/* Mobile responsiveness for fellows profile */
@media (max-width: 768px) {
    .fellows-profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fellows-profile-text {
        order: 1;
    }
    
    .fellows-profile-image-container {
        order: 2;
    }
    
    .fellows-profile-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Hide annotations on mobile */
    .updated-fellows-profile-section .annotation-side {
        display: none !important;
    }
}

/* Waiting Room Section */

/* Testing and Iterating Section */
.testing-iterating-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testing-iterating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.testing-iterating-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.testing-iterating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.testing-text-column .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.testing-text-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.testing-text-content p:last-child {
    margin-bottom: 0;
}

.testing-chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pie-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #1E40AF 0deg 90%,
        #DBEAFE 90% 100%
    );
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-slice {
    display: none;
}

.percentage-label {
    color: white;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.chart-description p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    text-align: center;
    max-width: 400px;
}

/* Onboarding Flow Section */
.onboarding-flow-section {
    padding: 4rem 0;
    background: #ffffff;
}

.onboarding-flow-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.onboarding-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.onboarding-main-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.onboarding-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.onboarding-screens .screen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
}

.onboarding-screen-image {
    width: 250px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.screen-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
}

.user-feedback {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
    transform: translateY(-64px);
}

.feedback-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.feedback-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-icon svg {
    width: 32px;
    height: 32px;
}

.feedback-quote {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
    font-style: italic;
    margin: 0;
    max-width: 300px;
    text-align: center;
}

/* Adding Clear Information Section */
.adding-clear-info-section {
    padding: 4rem 0;
    background: #ffffff;
}

.adding-clear-info-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.clear-info-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.adding-clear-info-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.clear-info-description {
    margin-bottom: 2rem;
}

.clear-info-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    max-width: none;
    width: 100%;
}

.clear-info-grid {
    display: grid;
    grid-template-areas: 
        "fellow-profile . fellow-card";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    align-items: start;
}

.fellow-top-profile-container {
    grid-area: fellow-profile;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 32px !important;
    transform: translateX(32px);
}

.fellow-card-container {
    grid-area: fellow-card;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fellow-top-profile-image, .fellow-card-image {
    height: 400px;
    width: auto;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
    object-fit: contain;
}

/* Annotation Overlay Styles */
.annotation-overlay {
    position: absolute;
    z-index: 30;
    pointer-events: none;
}

.annotation-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #007bff;
    position: absolute;
}

.annotation-label {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Active Fellow Annotation - top right of fellowtopprofile.jpg */
.active-fellow-annotation {
    top: 20px;
    right: -200px;
}

.active-fellow-annotation .annotation-arrow {
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    border-right: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: none;
}

/* Fellow's Profile Section */
.fellows-profile-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.fellows-profile-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.fellows-profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fellows-profile-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fellows-profile-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
}

.fellows-profile-text .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
}

.fellows-profile-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.fellows-profile-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-flow-video {
    max-width: 56.25%;
    height: auto;
    border-radius: 20px;
}

/* Interactive Audio Call Section */
.interactive-audio-call-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.interactive-audio-call-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.interactive-audio-call-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interactive-audio-call-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.interactive-audio-call-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
}

.interactive-audio-call-text .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
}

.interactive-audio-call-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.interactive-audio-call-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-call-flow-video {
    max-width: 56.25%;
    height: auto;
    border-radius: 20px;
}

/* Onboarding Experience Section */
.onboarding-experience-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.onboarding-experience-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.onboarding-experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.onboarding-experience-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.onboarding-experience-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
}

.onboarding-experience-text .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
}

.onboarding-experience-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.onboarding-experience-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.onboarding-flow-video {
    max-width: 56.25%;
    height: auto;
    border-radius: 20px;
}

.prototype-button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    text-align: center;
}

.prototype-button:hover {
    background: #0056b3;
}

/* Future Improvements Section */
.future-improvements-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.future-improvements-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.future-improvements-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.future-improvements-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
}

.improvements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.improvement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.improvement-icon {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
    margin-top: 0.25rem;
}

.improvement-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.improvement-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* My Learnings Section */
.my-learnings-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.my-learnings-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.my-learnings-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.my-learnings-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}

.learnings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.learning-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.learning-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.learning-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.learning-column p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Discovery Section */
.discovery-section {
    padding: 120px 0 80px 0;
    background: #ffffff;
}

.discovery-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.discovery-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.discovery-flow {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    margin-top: 80px;
}

.discovery-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 225px;
}

.discovery-image {
    width: 225px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

/* Adjust herosection2.png to show more top content */
.discovery-screen:nth-child(1) .discovery-image {
    object-position: top center;
}

/* Adjust discovery2.png to show more top content */
.discovery-screen:nth-child(2) .discovery-image {
    object-position: top center;
}

.discovery-annotation {
    position: absolute;
    z-index: 10;
    width: 200px;
}

.annotation-top {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.annotation-bottom {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.annotation-text {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Collaboration Section */
.collaboration-section {
    padding: 80px 0;
    background: #f9fafb;
}

.collaboration-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.collaboration-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.collaboration-flow {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    margin-top: 48px;
}

.collaboration-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 225px;
}

.collaboration-image {
    width: 225px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.collaboration-annotation {
    position: absolute;
    z-index: 10;
    width: 200px;
}

.collaboration-annotation.annotation-top {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.collaboration-annotation.annotation-bottom {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Final Prototype Section */
.final-prototype-section {
    padding: 80px 0;
    background: #1f2937;
    color: #ffffff;
}

.final-prototype-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.final-prototype-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.final-prototype-description {
    font-size: 1.125rem;
    color: #f3f4f6;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-prototype-limitations {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prototype-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.prototype-video-container {
    display: flex;
    justify-content: center;
}

.prototype-video {
    max-width: 50%;
    height: auto;
    border-radius: 16px;
    border: 2px solid #374151;
}

.prototype-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.learnings-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.learnings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learnings-list li {
    font-size: 1rem;
    color: #f3f4f6;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.learnings-list li:last-child {
    margin-bottom: 0;
}

.learnings-list li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.use-prototype-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 16px;
}

.use-prototype-button:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Reflections Section */
.reflections-section {
    padding: 80px 0;
    background: #ffffff;
}

.reflections-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.reflections-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reflections-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reflections-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.reflections-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.reflections-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.reflection-point {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reflection-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.reflection-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Final Design Section */
.final-design-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.final-design-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.final-design-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.final-design-content .section-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
}

.final-design-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.results-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.results-list li:last-child {
    margin-bottom: 0;
}

.results-list li::before {
    content: "•";
    color: #374151;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Style Guide Section */
.style-guide-section {
    padding: 4rem 0;
    background: #ffffff;
}

.style-guide-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.style-guide-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.style-guide-intro {
    max-width: 800px;
    margin-top: -32px;
}

.style-guide-intro p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.style-guide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.style-guide-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Adding new 'Feed' screen Section */
.adding-feed-screen-section {
    padding: 4rem 0;
    background: #ffffff;
}

.adding-feed-screen-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.feed-screen-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feed-screen-text {
    max-width: 600px;
}

.feed-screen-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feed-screen-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feed-screen-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feed-screen-list li {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.feed-screen-list li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feed-screen-mockups {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.feed-mockup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feed-mockup-image {
    width: 400px;
    height: 600px;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: top center;
}

/* Feed Recommendations Annotation */
.feed-recommendations-annotation {
    top: 20px !important;
    right: -200px !important;
    z-index: 100 !important;
}

.feed-recommendations-annotation .annotation-arrow {
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    border-right: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: none;
}

/* Adding Sub-copy Section */
.adding-subcopy-section {
    padding: 4rem 0;
    background: #ffffff;
}

.adding-subcopy-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.subcopy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.adding-subcopy-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.subcopy-description {
    margin-bottom: 2rem;
}

.subcopy-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.subcopy-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcopy-bullets li {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.subcopy-bullets li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.subcopy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px !important;
    align-items: start;
}

.recommended-fellows-container, .follow-fellows-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mockup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 0;
}

.subcopy-mockup-image {
    max-width: 56.25%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Crop curatedfollows.png after continue button and match fellowtopprofile.jpg dimensions exactly */
.follow-fellows-container .subcopy-mockup-image {
    object-fit: cover;
    object-position: top center;
    height: 400px;
    width: 400px;
}

.follow-fellows-container {
    position: relative;
}

/* Follow Fellows Annotation */
.follow-fellows-annotation {
    top: 52px;
    left: -200px;
}

.follow-fellows-annotation .annotation-arrow {
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border-left: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: none;
}

.back-to-top {
    text-align: center;
    margin-top: 3rem;
}

.back-to-top a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.back-to-top a:hover {
    color: #0056b3;
}

/* Waiting Room Section */
.waiting-room-section {
    padding: 4rem 0;
    background: #ffffff;
}

.waiting-room-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.waiting-room-section .section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.waiting-room-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.waiting-room-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    max-width: none;
    width: 100%;
}

/* Redesign 6 and 5 Section */
.redesign6-5-section {
    padding: 4rem 0;
    background: #ffffff;
}

.redesign6-5-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
}

.redesign6-5-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.redesign6-5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: start;
}

.redesign6-container, .redesign5-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redesign6-image, .redesign5-video {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.redesign5-video {
    object-fit: cover;
    filter: contrast(1.1) saturate(1.2);
}

/* Annotation Side Styles for Redesign 6 and 5 */
.redesign6-5-section .annotation-side {
    position: absolute;
    z-index: 30;
    pointer-events: none;
}

.redesign6-5-section .annotation-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #007bff;
    position: absolute;
}

.redesign6-5-section .annotation-label {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Wait Room Annotation - top left */
.wait-room-annotation {
    top: 48px;
    left: -216px;
}

.wait-room-annotation .annotation-arrow {
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border-left: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: none;
}

/* Message Option Annotation - bottom left */
.message-option-annotation {
    top: 476px;
    left: -256px;
}

.message-option-annotation .annotation-arrow {
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border-left: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: none;
}

/* Interactive Call Annotation - center right */
.interactive-call-annotation {
    top: 300px;
    right: -200px;
}

.interactive-call-annotation .annotation-arrow {
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    border-right: 8px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: none;
}



/* Filter option annotation - now on redesign1 */
.filter-annotation {
    top: 16px;
    right: 20px;
}

.filter-annotation .annotation-arrow {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Talk now feature annotation - now on redesign2 */
.talk-now-annotation {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.talk-now-annotation .annotation-arrow {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Fellow cards annotation - cards section of redesign2 */
.fellow-cards-annotation {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fellow-cards-annotation .annotation-arrow {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.filter-overlay {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
}

.filter-overlay-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}







/* Research Methods Section */
.research-methods-section {
    padding: 4rem 0;
    background: #ffffff;
}

.research-methods-section .container {
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.method-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-card-highlighted {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.method-icon svg {
    width: 96px;
    height: 96px;
}

.method-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.method-card-highlighted .method-title {
    color: white;
}

.method-summary {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.method-card-highlighted .method-summary {
    color: rgba(255, 255, 255, 0.8);
}

/* Research Deep Dive Section */
.research-deep-dive-section {
    padding: 4rem 0;
    background: #ffffff;
}

.research-deep-dive-section .container {
    max-width: 1400px;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
}

.research-deep-dive-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.research-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.research-text-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.2;
}

.research-text-content p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
}

.research-text-content strong {
    font-weight: 700;
    color: #000000;
}

.research-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-deep-dive-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.case-study-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.case-study-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.problem-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
}

.solution-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
}

.case-study-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.case-study-section .container {
    max-width: none;
    margin: 0 auto 0 0;
    margin-left: 192px;
    padding: 0 2rem;
    width: auto;
}

.case-study-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: left;
}

.overview-content {
    display: block;
    max-width: none;
    width: 100%;
}

.overview-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: none;
    width: 100%;
}



.overview-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    color: #333;
    border: 1px solid #e5e7eb;
}

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

.feature {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.process-content {
    display: grid;
    gap: 2rem;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.results-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-item h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.back-to-projects {
    text-align: center;
    padding: 2rem 0;
}

.back-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background: #333;
}

/* Make logo clickable */
.logo h1 a {
    color: inherit;
    text-decoration: none;
}

/* Responsive Design for Case Study */
@media (max-width: 768px) {
    .case-study-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
        margin-left: 0 !important;
        max-width: 100% !important;
    }
    
    .hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .case-study-hero-content {
        gap: 2rem;
    }
    
    .case-study-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-content {
        display: block;
    }
    
    .research-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .research-title {
        font-size: 2rem;
    }
    
    .research-subtitle {
        font-size: 1.25rem;
    }
    
    .section-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-subtitle {
        font-size: 1.125rem;
    }
    
    .research-deep-dive-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-left: 0 !important;
        max-width: 100% !important;
    }
    
    .research-text-content .section-title {
        font-size: 2rem;
    }
    
    .research-deep-dive-image {
        max-width: 100%;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-card {
        padding: 1.5rem;
    }
    
    /* Persona Cards Responsive */
    .personas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .persona-card {
        padding: 1.5rem;
    }
    
    .persona-name {
        font-size: 24px !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .testing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testing-item {
        text-align: center;
    }
    
    .speech-bubbles {
        flex-direction: column;
        gap: 2rem;
    }
    
    .speech-bubble {
        margin: 0;
        max-width: 100%;
    }
    
    .designing-solution-content {
        flex-direction: column;
    }
    
    .designing-intro {
        margin-bottom: 2rem;
    }
    
    .redesign-homescreen-content {
        text-align: left;
    }
    
    .screens-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .screen-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .screen-item {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .redesign-screen-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 1/2 !important;
        object-fit: cover !important;
    }
    
    /* Onboarding screens mobile stacking */
    .onboarding-screens {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .onboarding-screens .screen-item {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .onboarding-screen-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 1/2 !important;
        object-fit: cover !important;
    }
    
    /* Additional mobile image stacking for any other screen sections */
    .redesign6-image, 
    .redesign5-video {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 1/2 !important;
        object-fit: cover !important;
        margin: 0 auto !important;
    }
    
    /* Ensure any image containers stack vertically on mobile */
    .image-container,
    .screens-container,
    .redesign-screens-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    /* Feed screen mockups mobile stacking */
    .feed-screen-mockups {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .feed-mockup-container {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .feed-mockup-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        aspect-ratio: 2/3 !important;
        object-fit: cover !important;
    }
    
    /* Redesign 6-5 grid mobile stacking */
    .redesign6-5-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .redesign6-container, 
    .redesign5-container {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .redesign6-image, 
    .redesign5-video {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 1/2 !important;
        object-fit: cover !important;
    }
    
    /* Clear info grid mobile stacking */
    .clear-info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .fellow-top-profile-container {
        grid-area: unset !important;
        margin-left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .fellow-card-container {
        grid-area: unset !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .fellow-top-profile-image, 
    .fellow-card-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        aspect-ratio: 3/4 !important;
        object-fit: contain !important;
    }
    
    /* Subcopy grid mobile stacking */
    .subcopy-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .recommended-fellows-container, 
    .follow-fellows-container {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .subcopy-mockup-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        object-fit: cover !important;
    }
    
    /* Fam Case Study Mobile Responsiveness */
    .fam-hero-section {
        padding: 4rem 0 2rem 0 !important;
        margin-top: 80px !important;
    }
    
    .fam-hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .fam-hero-text {
        order: 2 !important;
    }
    
    .fam-hero-phones {
        order: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .fam-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .fam-hero-phone {
        max-width: 200px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Fam sections mobile adjustments */
    .hackathon-section,
    .problem-focus-section,
    .key-insights-section,
    .design-goals-section,
    .design-solution-section,
    .design-process-section,
    .exploratory-phase-section,
    .define-phase-section,
    .design-phase-section,
    .wireframes-section,
    .profile-setup-section,
    .dinner-invite-section,
    .collaboration-tool-section,
    .final-design-section,
    .discovery-section,
    .collaboration-section,
    .final-prototype-section,
    .reflections-section {
        padding: 3rem 0 !important;
    }
    
    .problem-focus-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .insights-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .insight-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .design-goals-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .process-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .competitive-research-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .research-chart-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .flowchart-image-file {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .profile-design-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .prototype-video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .reflections-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .reflections-left,
    .reflections-right {
        width: 100% !important;
    }
    
    /* VNYL Case Study Mobile Image Sizing */
    .vnyl-case-study .research-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }
    
    .vnyl-case-study .vibe-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .vnyl-case-study .mockup-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .vnyl-case-study .mockup-flow-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .vnyl-case-study .store-mockup-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .vnyl-case-study .education-mockup-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .vnyl-case-study .refinement-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .vnyl-case-study .style-guide-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .vnyl-case-study .hero-image-single {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .vnyl-case-study .method-icon {
        width: 80px !important;
        height: 80px !important;
        object-fit: contain !important;
    }
    
    .vnyl-case-study .card-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    /* VNYL Mobile Layout Adjustments */
    .vnyl-case-study .terminology-fix-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .terminology-left,
    .vnyl-case-study .terminology-center,
    .vnyl-case-study .terminology-right {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .vnyl-case-study .arrow-container {
        margin: 1rem 0 !important;
    }
    
    .vnyl-case-study .refinement-images {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .mockup-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .store-mockup-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .education-mockup-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    /* VNYL Testing Platform Cards Mobile Stacking */
    .vnyl-case-study .testing-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: stretch !important;
    }
    
    .vnyl-case-study .testing-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* VNYL Mockup Sections Mobile Stacking */
    .vnyl-case-study .mockup-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .mockup-item {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .vnyl-case-study .mockup-image-container {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .vnyl-case-study .mockup-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .vnyl-case-study .mockup-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }
    
    .vnyl-case-study .mockup-content-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    
    .vnyl-case-study .mockup-content-item {
        text-align: center !important;
    }
    
    .vnyl-case-study .mockup-flow-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
        overflow-x: visible !important;
    }
    
    .vnyl-case-study .mockup-flow-item {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        flex-shrink: 1 !important;
    }
    
    .vnyl-case-study .store-mockup-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
        overflow-x: visible !important;
    }
    
    .vnyl-case-study .store-mockup-item {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        flex-shrink: 1 !important;
    }
    
    .vnyl-case-study .education-mockup-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
        overflow-x: visible !important;
    }
    
    .vnyl-case-study .education-mockup-item {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        flex-shrink: 1 !important;
    }
    
    /* VNYL Text Content Mobile Stacking */
    .vnyl-case-study .store-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .store-feature {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .vnyl-case-study .store-feature-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .vnyl-case-study .store-feature-list {
        text-align: left !important;
        padding-left: 1rem !important;
    }
    
    .vnyl-case-study .education-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .education-feature {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .vnyl-case-study .education-feature-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .vnyl-case-study .education-feature-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
    
    /* General features grid mobile stacking */
    .vnyl-case-study .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .vnyl-case-study .feature-item {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .vnyl-case-study .feature-card {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    /* GiveDirectly Case Study Mobile Responsiveness */
    .givedirectly-hero-section .container,
    .project-info-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Override inline styles for mobile - highest specificity */
    body .givedirectly-hero-section .container,
    body .project-info-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Additional override for any remaining inline styles */
    .givedirectly-hero-section .container,
    .project-info-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .givedirectly-hero-section {
        padding: 4rem 0 2rem 0 !important;
        margin-top: 80px !important;
    }
    
    .givedirectly-hero-section .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .givedirectly-hero-section .hero-image-single {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 2rem auto !important;
    }
    
    /* GiveDirectly sections mobile adjustments */
    .givedirectly-hero-section,
    .project-info-section,
    .key-takeaways-section,
    .research-section,
    .design-section,
    .solution-section,
    .reflection-section {
        padding: 3rem 0 !important;
    }
    
    .key-takeaways-section {
        padding: 3rem 0 3rem 1rem !important;
    }
    
    .key-takeaways-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* GiveDirectly Hero Section Mobile Stacking */
    .givedirectly-hero-section {
        text-align: center !important;
    }
    
    .givedirectly-hero-section .hero-title {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .givedirectly-hero-section .hero-images-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .givedirectly-hero-section .hero-image-left,
    .givedirectly-hero-section .hero-image-right {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .givedirectly-hero-section .hero-image-single {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
    }
    
    /* GiveDirectly Project Info Mobile Stacking */
    .project-info-section .info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: stretch !important;
    }
    
    .project-info-section .info-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .project-info-section .details-item {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .project-info-section .detail-row {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .project-info-section .info-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        text-align: left !important;
    }
    
    .project-info-section .info-text {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }
    
    /* GiveDirectly Web3 Section Mobile Left Alignment */
    .understanding-web3-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .understanding-web3-content {
        text-align: left !important;
    }
    
    .understanding-web3-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .understanding-web3-description {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .understanding-web3-questions {
        text-align: left !important;
    }
    
    .understanding-web3-questions .question-item {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
        padding-left: 1rem !important;
        position: relative !important;
    }
    
    .understanding-web3-questions .question-item::before {
        content: "•" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        color: #1f2937 !important;
        font-weight: bold !important;
    }
    
    /* GiveDirectly All Sections Mobile - Remove All Left Margins */
    .givedirectly-hero-section,
    .project-info-section,
    .understanding-web3-section,
    .how-web3-section,
    .understanding-users-section,
    .design-solution-section,
    .key-features-section,
    .feedback-reassurance-section,
    .educating-users-section,
    .continuous-education-section,
    .reflection-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .givedirectly-hero-section .container,
    .project-info-section .container,
    .understanding-web3-section .container,
    .how-web3-section .container,
    .understanding-users-section .container,
    .design-solution-section .container,
    .key-features-section .container,
    .feedback-reassurance-section .container,
    .educating-users-section .container,
    .continuous-education-section .container,
    .reflection-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Ensure all content uses full width */
    .givedirectly-hero-section *,
    .project-info-section *,
    .understanding-web3-section *,
    .how-web3-section *,
    .understanding-users-section *,
    .design-solution-section *,
    .key-features-section *,
    .feedback-reassurance-section *,
    .educating-users-section *,
    .continuous-education-section *,
    .reflection-section * {
        max-width: 100% !important;
    }
    
    /* Remove any remaining left margins from all elements */
    .givedirectly-hero-section *,
    .project-info-section *,
    .understanding-web3-section *,
    .how-web3-section *,
    .understanding-users-section *,
    .design-solution-section *,
    .key-features-section *,
    .feedback-reassurance-section *,
    .educating-users-section *,
    .continuous-education-section *,
    .reflection-section * {
        margin-left: 0 !important;
    }
    
    /* GiveDirectly Research Deep Dive Mobile Improvements */
    .research-deep-dive-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .research-deep-dive-content {
        text-align: left !important;
    }
    
    .research-deep-dive-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .research-deep-dive-description {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .research-deep-dive-visual {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 2rem !important;
    }
    
    .survey-icon {
        margin-bottom: 1rem !important;
    }
    
    .response-count {
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #10B981 !important;
    }
    
    /* Quote section improvements for mobile */
    .research-quote {
        text-align: center !important;
        font-style: italic !important;
        font-size: 1rem !important;
        color: #10B981 !important;
        margin-top: 2rem !important;
        padding: 0 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        white-space: normal !important;
        max-width: 100% !important;
        overflow: visible !important;
        line-height: 1.5 !important;
    }
    
    @media (max-width: 480px) {
        .research-quote {
            font-size: 0.9rem !important;
            padding: 0 0.5rem !important;
        }
    }
    
    .research-stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: stretch !important;
    }
    
    .stat-item {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        padding: 1.5rem !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    .stat-number {
        display: block !important;
        font-size: 2.5rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }
    
    .stat-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        color: #4b5563 !important;
        margin: 0 !important;
        text-align: left !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        white-space: normal !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    /* Additional responsive improvements for all screen sizes */
    @media (max-width: 480px) {
        .research-deep-dive-section .container {
            padding: 0 0.75rem !important;
        }
        
        .research-deep-dive-title {
            font-size: 1.75rem !important;
        }
        
        .research-deep-dive-description {
            font-size: 0.95rem !important;
        }
        
        .stat-item {
            padding: 1.25rem !important;
        }
        
        .stat-number {
            font-size: 2.25rem !important;
        }
        
        .stat-description {
            font-size: 0.95rem !important;
            line-height: 1.4 !important;
        }
    }
    
    @media (min-width: 481px) and (max-width: 768px) {
        .research-deep-dive-section .container {
            padding: 0 1.25rem !important;
        }
        
        .stat-item {
            padding: 1.5rem !important;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .research-stats-grid {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1.5rem !important;
        }
        
        .stat-item:nth-child(3),
        .stat-item:nth-child(4) {
            grid-column: span 1 !important;
        }
    }
    
    @media (min-width: 1025px) {
        .research-stats-grid {
            display: grid !important;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 1.5rem !important;
        }
    }
    
    /* GiveDirectly User Personas Mobile Responsive */
    .user-personas-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .user-personas-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .user-personas-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .user-personas-content {
        text-align: left !important;
    }
    
    .user-personas-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.25rem !important;
        color: #1f2937 !important;
    }
    
    .personas-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .persona-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .persona-header {
        margin-bottom: 1rem !important;
    }
    
    .persona-name {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .persona-section {
        margin-bottom: 1rem !important;
        text-align: left !important;
    }
    
    .section-title {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #374151 !important;
        margin: 0 0 0.5rem 0 !important;
        text-align: left !important;
    }
    
    .section-content {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        color: #4b5563 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    
    .section-list {
        margin: 0 !important;
        padding-left: 1.25rem !important;
        text-align: left !important;
    }
    
    .section-list li {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        color: #4b5563 !important;
        margin-bottom: 0.25rem !important;
        text-align: left !important;
    }
    
    .section-list li:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .user-personas-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .user-personas-section .container,
    .user-personas-section .user-personas-content,
    .user-personas-section .user-personas-header,
    .user-personas-section .personas-grid,
    .user-personas-section .persona-card,
    .user-personas-section .persona-header,
    .user-personas-section .persona-section,
    .user-personas-section .section-title,
    .user-personas-section .section-content,
    .user-personas-section .section-list {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .user-personas-section .container {
        padding: 0 1rem !important;
    }
    
    /* GiveDirectly Problem Statement Mobile Responsive */
    .problem-statement-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .problem-statement-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .problem-statement-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .problem-statement-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.25rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .problem-statement-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
        margin-bottom: 1.5rem !important;
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .evaluation-criteria {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .criteria-item {
        background: white !important;
        border-left: 4px solid #10B981 !important;
        border-radius: 8px !important;
        padding: 1rem !important;
        margin: 0 !important;
        text-align: left !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
    
    .criteria-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        margin: 0 !important;
        text-align: left !important;
        line-height: 1.5 !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .problem-statement-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .problem-statement-section .container,
    .problem-statement-section .problem-statement-content,
    .problem-statement-section .problem-statement-header,
    .problem-statement-section .evaluation-criteria,
    .problem-statement-section .criteria-item,
    .problem-statement-section .criteria-title {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .problem-statement-section .container {
        padding: 0 1rem !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .problem-statement-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .problem-statement-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .problem-statement-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1rem !important;
        }
        
        .problem-statement-text {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.25rem !important;
        }
        
        .criteria-item {
            padding: 0.875rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .criteria-title {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
    }
    
    /* GiveDirectly How Might We Mobile Responsive */
    .how-might-we-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .how-might-we-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .how-might-we-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .how-might-we-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .hmw-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hmw-card {
        background: #f0fdf4 !important;
        border-radius: 12px !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        text-align: left !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hmw-number {
        font-size: 2rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .hmw-question {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .hmw-arrow {
        position: absolute !important;
        top: 1.5rem !important;
        right: 1.5rem !important;
        font-size: 1.5rem !important;
        color: #10B981 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .how-might-we-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .how-might-we-section .container,
    .how-might-we-section .how-might-we-content,
    .how-might-we-section .how-might-we-header,
    .how-might-we-section .hmw-cards-grid,
    .how-might-we-section .hmw-card,
    .how-might-we-section .hmw-number,
    .how-might-we-section .hmw-question,
    .how-might-we-section .hmw-arrow {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .how-might-we-section .container {
        padding: 0 1rem !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .how-might-we-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .how-might-we-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .how-might-we-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.25rem !important;
        }
        
        .hmw-cards-grid {
            gap: 0.875rem !important;
        }
        
        .hmw-card {
            padding: 1.25rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .hmw-number {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 0.875rem !important;
        }
        
        .hmw-question {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            line-height: 1.4 !important;
        }
        
        .hmw-arrow {
            top: 1.25rem !important;
            right: 1.25rem !important;
            font-size: 1.25rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
    }
    
    /* GiveDirectly Ideating Features Mobile Responsive */
    .ideating-features-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .ideating-features-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .ideating-features-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .ideating-features-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* GiveDirectly Platform Design Mobile Responsive */
    .wireframe-annotations-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .wireframe-annotations-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .wireframe-annotations-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .wireframe-annotations-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .wireframe-annotations-intro {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
        margin-bottom: 2rem !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .wireframes-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .wireframe-left,
    .wireframe-right {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .wireframe-image {
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .wireframe-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .annotation-left,
    .annotation-right {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .annotation-item {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .annotation-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .annotation-title {
        text-align: left !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        margin-bottom: 0.5rem !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .annotation-description {
        text-align: left !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: #4b5563 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .ideating-features-section *,
    .wireframe-annotations-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .ideating-features-section .container,
    .ideating-features-section .ideating-features-content,
    .ideating-features-section .ideating-features-header,
    .ideating-features-section .ideating-features-title,
    .wireframe-annotations-section .container,
    .wireframe-annotations-section .wireframe-annotations-content,
    .wireframe-annotations-section .wireframe-annotations-header,
    .wireframe-annotations-section .wireframe-annotations-title,
    .wireframe-annotations-section .wireframe-annotations-intro,
    .wireframe-annotations-section .wireframes-container,
    .wireframe-annotations-section .wireframe-left,
    .wireframe-annotations-section .wireframe-right,
    .wireframe-annotations-section .wireframe-image,
    .wireframe-annotations-section .wireframe-img,
    .wireframe-annotations-section .annotation-left,
    .wireframe-annotations-section .annotation-right,
    .wireframe-annotations-section .annotation-item,
    .wireframe-annotations-section .annotation-content,
    .wireframe-annotations-section .annotation-title,
    .wireframe-annotations-section .annotation-description {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .ideating-features-section .container,
    .wireframe-annotations-section .container {
        padding: 0 1rem !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .ideating-features-section .container,
        .wireframe-annotations-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .ideating-features-section *,
        .wireframe-annotations-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .ideating-features-title,
        .wireframe-annotations-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.25rem !important;
        }
        
        .wireframe-annotations-intro {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.5rem !important;
        }
        
        .wireframes-container {
            gap: 1.5rem !important;
        }
        
        .annotation-title {
            font-size: 1rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .annotation-description {
            font-size: 0.9rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
    }
    
    /* GiveDirectly Educating Users Mobile Responsive */
    .educating-users-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .educating-users-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .educating-users-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .educating-users-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .educating-users-intro {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
        margin-bottom: 2rem !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .educating-images-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .educating-image-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .educating-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        object-fit: cover !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .educating-users-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .educating-users-section .container,
    .educating-users-section .educating-users-content,
    .educating-users-section .educating-users-header,
    .educating-users-section .educating-users-title,
    .educating-users-section .educating-users-intro,
    .educating-users-section .educating-images-container,
    .educating-users-section .educating-image-item,
    .educating-users-section .educating-img {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .educating-users-section .container {
        padding: 0 1rem !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .educating-users-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .educating-users-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .educating-users-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 0.875rem !important;
        }
        
        .educating-users-intro {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.5rem !important;
        }
        
        .educating-images-container {
            gap: 1.25rem !important;
        }
        
        .educating-img {
            border-radius: 8px !important;
        }
    }
    
    /* GiveDirectly Trustable Circle Mobile Responsive */
    .testing-improvements-section .container,
    .trustable-circle-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .testing-improvements-section,
    .trustable-circle-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .testing-improvements-content,
    .trustable-circle-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .testing-improvements-title,
    .trustable-circle-title {
        text-align: left !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .trustable-circle-intro {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
        margin-bottom: 2rem !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .trustable-circle-image-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        text-align: center !important;
    }
    
    .trustable-circle-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        object-fit: contain !important;
        /* Increase image size for better visual impact */
        min-height: 300px !important;
        max-height: 500px !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }
    
    .trusted-circle {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Remove all left margins and padding for mobile */
    .testing-improvements-section *,
    .trustable-circle-section * {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Override any inherited margins */
    .testing-improvements-section .container,
    .testing-improvements-section .testing-improvements-content,
    .testing-improvements-section .testing-improvements-header,
    .testing-improvements-section .testing-improvements-title,
    .trustable-circle-section .container,
    .trustable-circle-section .trustable-circle-content,
    .trustable-circle-section .trustable-circle-header,
    .trustable-circle-section .trustable-circle-title,
    .trustable-circle-section .trustable-circle-intro,
    .trustable-circle-section .trustable-circle-image-container,
    .trustable-circle-section .trustable-circle-img,
    .trustable-circle-section .trusted-circle {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Add minimal padding only for readability */
    .testing-improvements-section .container,
    .trustable-circle-section .container {
        padding: 0 1rem !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .testing-improvements-section .container,
        .trustable-circle-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .testing-improvements-section *,
        .trustable-circle-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .testing-improvements-title,
        .trustable-circle-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.25rem !important;
        }
        
        .trustable-circle-intro {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1.5rem !important;
        }
        
        .trustable-circle-img {
            border-radius: 8px !important;
            /* Even larger on small mobile for better visual impact */
            min-height: 250px !important;
            max-height: 400px !important;
            display: inline-block !important;
            vertical-align: middle !important;
        }
    }
    
    /* GiveDirectly Hero Section Mobile Responsive - Simplified */
    .givedirectly-hero-section {
        padding: 2rem 1rem !important;
        text-align: center !important;
    }
    
    .givedirectly-hero-section .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 2rem !important;
        color: #1f2937 !important;
        text-align: center !important;
    }
    
    .hero-images-container {
        display: block !important;
        width: 100% !important;
    }
    
    .hero-image-left,
    .hero-image-right {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }
    
    .hero-image-single {
        width: 90% !important;
        max-width: 350px !important;
        height: auto !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        display: inline-block !important;
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .givedirectly-hero-section {
            padding: 1.5rem 0.75rem !important;
        }
        
        .hero-title {
            font-size: 2rem !important;
            margin-bottom: 1.5rem !important;
        }
        
        .hero-image-single {
            width: 95% !important;
            max-width: 300px !important;
            border-radius: 12px !important;
        }
        
        .hero-image-left,
        .hero-image-right {
            margin-bottom: 1.25rem !important;
        }
    }
    
    /* Tablet and Desktop - Keep original grid layout */
    @media (min-width: 769px) {
        .personas-grid {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 2rem !important;
        }
        
        .persona-card {
            background: #f9fafb !important;
            border: 1px solid #e5e7eb !important;
            border-radius: 12px !important;
            padding: 1.5rem !important;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        }
    }
    
    /* Small mobile adjustments */
    @media (max-width: 480px) {
        .user-personas-section .container {
            padding: 0 0.75rem !important;
            margin-left: 0 !important;
        }
        
        .user-personas-section * {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .user-personas-title {
            font-size: 1.75rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 1rem !important;
        }
        
        .personas-grid {
            gap: 1.25rem !important;
        }
        
        .persona-header {
            margin-bottom: 0.75rem !important;
        }
        
        .persona-name {
            font-size: 1.25rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
        }
        
        .persona-section {
            margin-bottom: 0.75rem !important;
        }
        
        .section-title {
            font-size: 1rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            margin-bottom: 0.375rem !important;
        }
        
        .section-content,
        .section-list li {
            font-size: 0.95rem !important;
            margin-left: 0 !important;
            padding-left: 0 !important;
            line-height: 1.4 !important;
        }
        
        .section-list li {
            margin-bottom: 0.125rem !important;
        }
    }
    
    /* Ultimate override for GiveDirectly inline styles on mobile */
    @media (max-width: 768px) {
        .givedirectly-hero-section .container[style*="margin-left: 192px"],
        .project-info-section .container[style*="margin-left: 192px"] {
            margin-left: 0 !important;
            margin-right: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 1rem !important;
        }
        
        /* Force override any calc() values */
        .givedirectly-hero-section .container[style*="calc(100vw - 384px)"],
        .project-info-section .container[style*="calc(100vw - 384px)"] {
            margin-left: 0 !important;
            margin-right: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 1rem !important;
        }
    }
    
    /* VNYL Case Study Navigation Fix */
    .vnyl-case-study .nav-container {
        position: relative !important;
        z-index: 5 !important;
    }
    
    .vnyl-case-study .logo {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .vnyl-case-study .hamburger-menu {
        z-index: 20 !important;
        position: absolute !important;
    }
    
    /* Skolay Case Study Navigation Fix */
    .skolay-case-study .header {
        position: relative !important;
        z-index: 5 !important;
    }
    
    .skolay-case-study .nav-container {
        position: relative !important;
        z-index: 5 !important;
    }
    
    .skolay-case-study .logo {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .skolay-case-study .logo h1 {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .skolay-case-study .logo a {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .skolay-case-study .hamburger-menu {
        display: flex !important;
        z-index: 9999 !important;
        position: absolute !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: 30px !important;
        height: 30px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
        left: 1rem !important;
        flex-direction: column !important;
        justify-content: space-around !important;
    }
    
    .skolay-case-study .hamburger-line {
        background-color: #333 !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        height: 3px !important;
        transition: all 0.3s ease !important;
        transform-origin: center !important;
    }
    
    /* Skolay Case Study Mobile Navigation - Logo Next to Hamburger */
    .skolay-case-study .nav-container {
        justify-content: flex-start !important;
        align-items: center !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .skolay-case-study .logo {
        margin-left: 3.5rem !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    
    @media (max-width: 480px) {
        .skolay-case-study .logo {
            margin-left: 3rem !important;
            z-index: 10 !important;
        }
        
        .skolay-case-study .hamburger-menu {
            display: flex !important;
            left: 0.5rem !important;
            z-index: 20 !important;
            cursor: pointer !important;
            pointer-events: auto !important;
            background: transparent !important;
            border: none !important;
            padding: 0 !important;
            width: 30px !important;
            height: 30px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .skolay-case-study .hamburger-line {
            background-color: #333 !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
    }
    
    /* Fam Case Study Image Stacking for Mobile */
    .profile-image-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    
    .profile-image-container .profile-design-image {
        max-width: 100% !important;
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .discovery-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
        margin-top: 2rem !important;
    }
    
    .discovery-screen {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .discovery-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 9/16 !important;
        object-fit: cover !important;
    }
    
    .collaboration-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
        margin-top: 2rem !important;
    }
    
    .collaboration-screen {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .collaboration-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 9/16 !important;
        object-fit: cover !important;
    }
    
    /* Convert annotations to captions for mobile */
    .discovery-annotation,
    .collaboration-annotation {
        position: static !important;
        width: 100% !important;
        margin-top: 1rem !important;
        text-align: center !important;
        background: #f8f9fa !important;
        padding: 1rem !important;
        border-radius: 8px !important;
        border: 1px solid #e9ecef !important;
    }
    
    .discovery-annotation .annotation-text,
    .collaboration-annotation .annotation-text {
        font-size: 0.9rem !important;
        color: #495057 !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    
    /* Hide desktop annotation positioning */
    .annotation-top,
    .annotation-bottom {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .filter-overlay {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
    }
    
    .annotations {
        flex-direction: column;
        gap: 2rem;
    }
    
    .annotation-left, .annotation-right {
        width: 100%;
    }
}

/* Books on B Case Study Styles */
.books-on-b-hero-section {
    background: transparent;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.books-on-b-hero-section .container {
    max-width: calc(100vw - 384px);
    margin: 0 auto;
    padding: 0 2rem;
    width: auto;
}

.books-on-b-hero-section .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.books-on-b-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin: 0;
    letter-spacing: -0.02em;
    background: #f8f9fa;
    padding: 2rem 0 calc(2rem + 20%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 20%;
    display: block;
    text-align: left;
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
}

.hero-images-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-left {
    position: relative;
    flex: 0 0 auto;
    transform: translateX(-35%);
}

.hero-image-right {
    position: relative;
    margin-top: 25%;
    flex: 0 0 auto;
}

.hero-img {
    width: 200%;
    height: auto;
    display: block;
}

/* Additional Mobile Responsive Fixes for Skolay Case Study */
@media (max-width: 768px) {
    /* Hide sticky menu on mobile */
    .sticky-menu {
        display: none !important;
    }
    
    /* Remove fixed left margins and adjust ALL containers for mobile */
    .case-study-hero .container,
    .research-design-section .container,
    .project-details-section .container,
    .key-insights-section .container,
    .design-solution-section .container,
    .solution-details-section .container,
    .success-metrics-section .container,
    .research-methods-section .container,
    .research-image-section .container,
    .testing-platform-section .container,
    .principles-header .container,
    .design-principles-section .container:last-child,
    .personalization-section .container,
    .mockup-features-section .container,
    .mockup-flow-section .container,
    .building-store-section .container,
    .store-features-section .container,
    .education-about-section .container,
    .education-header .container,
    .validation-header .container,
    .concept-validation-section .container:last-child,
    .refinement-header .container,
    .refinement-section .container:last-child,
    .style-guide-section .container,
    .design-solution-final-section .container,
    .reflection-future-section .container,
    .research-deep-dive-section .container,
    .vnyl-hero-section .container,
    .my-learnings-section .container,
    .back-to-projects-section .container,
    .research-insights-section .container,
    .project-context-section .container,
    .understanding-web3-section .container,
    .how-web3-section .container,
    .understanding-users-section .container,
    .why-no-donations-section .container,
    .ideating-features-section .container,
    .wireframe-annotations-section .container,
    .feedback-reassurance-section .container,
    .tracking-fund-spending-section .container,
    .educating-users-section .container,
    .testing-improvements-section .container,
    .trustable-circle-section .container,
    .continuous-education-section .container,
    .enhanced-security-section .container,
    .user-identification-section .container,
    .next-steps-section .container,
    .problem-statement-section .container,
    .how-might-we-section .container,
    .user-personas-section .container,
    .research-goals-section .container,
    .fam-hero-section .container,
    .hackathon-section .container,
    .problem-focus-section .container,
    .design-goals-section .container,
    .exploratory-phase-section .container,
    .define-phase-section .container,
    .design-phase-section .container,
    .wireframes-section .container {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
    
    /* Desktop only - Preserve 192px left margin for GiveDirectly case study */
@media (min-width: 769px) {
    .givedirectly-hero-section .container,
    .project-info-section .container {
        max-width: calc(100vw - 384px) !important;
        margin-left: 192px !important;
        margin-right: 192px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }
}
    
    /* Fix specific Skolay case study containers */
    .case-study-hero .container,
    .research-design-section .container,
    .project-details-section .container,
    .key-insights-section .container,
    .design-solution-section .container,
    .solution-details-section .container,
    .success-metrics-section .container,
    .research-methods-section .container,
    .research-image-section .container,
    .testing-platform-section .container,
    .principles-header .container,
    .design-principles-section .container:last-child,
    .personalization-section .container,
    .mockup-features-section .container,
    .mockup-flow-section .container,
    .building-store-section .container,
    .store-features-section .container,
    .education-about-section .container,
    .education-header .container,
    .validation-header .container,
    .concept-validation-section .container:last-child,
    .refinement-header .container,
    .refinement-section .container:last-child,
    .style-guide-section .container,
    .design-solution-final-section .container,
    .reflection-future-section .container,
    .research-deep-dive-section .container {
        max-width: 100% !important;
        margin-left: 0 !important;
        padding: 0 1rem !important;
    }
    
    /* Make all videos fully responsive */
    .section-video,
    .hero-video,
    .solution-video-player,
    .research-video video,
    .testing-video,
    .personalization-video,
    .building-video,
    .education-video,
    .validation-video,
    .refinement-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Ensure all images are responsive */
    .research-image,
    .testing-image,
    .personalization-image,
    .building-image,
    .education-image,
    .refinement-image,
    .style-guide-img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Adjust grid layouts for mobile */
    .details-grid,
    .success-metrics-grid,
    .research-methods-grid,
    .principles-grid,
    .mockup-grid,
    .mockup-flow-grid,
    .store-mockup-grid,
    .validation-feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Adjust flex layouts for mobile */
    .solution-item,
    .testing-content,
    .personalization-content,
    .building-content,
    .education-content,
    .refinement-content {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    /* Adjust text sizes for mobile */
    .solution-header h2,
    .reflection-future-title {
        font-size: 2rem !important;
    }
    
    .solution-content h3,
    .testing-text h3,
    .personalization-text h3,
    .building-text h3,
    .education-text h3,
    .refinement-text h3 {
        font-size: 1.5rem !important;
    }
    
    .solution-content p,
    .testing-text p,
    .personalization-text p,
    .building-text p,
    .education-text p,
    .refinement-text p {
        font-size: 0.875rem !important;
    }
    
    /* Fix specific Skolay case study content alignment */
    .research-content,
    .research-deep-dive-content,
    .insights-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .research-content p {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix any remaining calc() width issues */
    .mockup-flow-image,
    .store-mockup-image,
    .education-mockup-image {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure proper centering on mobile */
    .case-study-hero,
    .research-design-section,
    .project-details-section,
    .key-insights-section,
    .design-solution-section,
    .solution-details-section,
    .success-metrics-section,
    .research-methods-section,
    .research-image-section,
    .testing-platform-section,
    .principles-header,
    .design-principles-section,
    .personalization-section,
    .mockup-features-section,
    .mockup-flow-section,
    .building-store-section,
    .store-features-section,
    .education-about-section,
    .education-header,
    .validation-header,
    .concept-validation-section,
    .refinement-header,
    .refinement-section,
    .style-guide-section,
    .design-solution-final-section,
    .reflection-future-section,
    .research-deep-dive-section {
        text-align: center !important;
    }
    
    /* Fix any remaining left-aligned content */
    .research-content,
    .research-deep-dive-content,
    .insights-content,
    .solution-content,
    .testing-content,
    .personalization-content,
    .building-content,
    .education-content,
    .refinement-content {
        text-align: center !important;
    }
    
    /* Override ALL calc() width calculations on mobile */
    *[style*="width: calc("],
    *[style*="max-width: calc("] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix any remaining margin-left issues */
    *[style*="margin-left: 192px"],
    *[style*="margin-left: 160px"] {
        margin-left: 0 !important;
    }
    
    
    /* Ensure all content uses full width on mobile */
    .container,
    .content,
    .section-content,
    .hero-content,
    .research-content,
    .project-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Fix picture sections horizontal scrolling */
    .hero-image-single,
    .research-image,
    .testing-image,
    .personalization-image,
    .building-image,
    .education-image,
    .refinement-image,
    .style-guide-img,
    .mockup-image,
    .app-screenshot,
    .app-image,
    .hero-img,
    .section-video,
    .hero-video,
    .solution-video-player {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Fix any image containers that might overflow */
    .hero-images-container,
    .image-container,
    .screenshot-container,
    .video-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix grid layouts that might cause overflow */
    .mockup-grid,
    .mockup-flow-grid,
    .store-mockup-grid,
    .education-mockup-grid,
    .details-grid,
    .success-metrics-grid,
    .research-methods-grid,
    .principles-grid,
    .validation-feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix flex layouts that might cause overflow */
    .screens-container,
    .screen-group,
    .solution-item,
    .testing-content,
    .personalization-content,
    .building-content,
    .education-content,
    .refinement-content {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure body and html don't overflow */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Mobile-friendly annotation system */
    .annotation,
    .annotation-side,
    .annotation-overlay,
    .annotation-item {
        position: static !important;
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    /* Show annotations as a list below images on mobile */
    .redesign4-annotations-section .redesign4-image-container,
    .redesign5-annotations-section .redesign5-image-container,
    .fellow-profile-section .fellow-profile-container,
    .feed-recommendations-section .feed-recommendations-container {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    /* Hide original annotations on mobile */
    .redesign4-annotations-section .annotation-side,
    .redesign5-annotations-section .annotation-side,
    .fellow-profile-section .annotation-overlay,
    .feed-recommendations-section .annotation-overlay,
    .wireframe-annotations-section .annotation-item {
        display: none !important;
    }
    
    /* Ensure images are properly sized on mobile */
    .redesign4-image,
    .redesign5-image,
    .fellow-profile-image,
    .feed-recommendations-image,
    .wireframe-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
}


/* ULTIMATE OVERRIDE for wireframes section title */
body .wireframes-section .section-title {
    font-size: 48px !important;
}

/* ULTIMATE OVERRIDE for Final Design section title */
body .final-design-section .final-design-content .section-title {
    font-size: 32px !important;
}

/* ULTIMATE OVERRIDE for design solution section title */
body .design-solution-section .section-title {
    font-size: 48px !important;
}

/* Mobile Responsive for About Me Section */
@media (max-width: 768px) {
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-me-title {
        font-size: 2rem;
    }
    
    .about-me-description {
        font-size: 1rem;
    }
    
    .about-me-section {
        padding: 4rem 0;
    }
    
    .about-me-social-links {
        justify-content: center;
    }
}


/* Comprehensive Mobile Responsive Design for Books on B */
@media (max-width: 768px) {
    /* Mobile containers with proper margins - ALL SECTIONS */
    .books-on-b-hero-section .container,
    .project-info-section .container,
    .overview-section .container,
    .improved-experience-section .container,
    .video-section .container,
    .process-question-section .container,
    .design-process-section .container,
    .understanding-readers-section .container,
    .reader-pain-points-section .container,
    .persona-section .container,
    .journey-map-section .container,
    .design-opportunities-section .container,
    .user-flow-section .container,
    .low-fidelity-sketches-section .container,
    .sketches-title-section .container,
    .sketches-description-section .container,
    .navigation-menu-section .container,
    .mid-fidelity-wireframes-section .container,
    .product-page-section .container,
    .checkout-section .container,
    .interface-usability-testing-section .container,
    .style-guide-section .container,
    .final-solution-section .container,
    .reflections-section .container {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    /* Remove excessive left margins but keep some spacing */
    .books-on-b-case-study * {
        margin-left: 0 !important;
    }
    
    /* Add proper left padding for text content */
    .books-on-b-case-study h1,
    .books-on-b-case-study h2,
    .books-on-b-case-study h3,
    .books-on-b-case-study p,
    .books-on-b-case-study .info-item,
    .books-on-b-case-study .research-text,
    .books-on-b-case-study .design-solution-text,
    .books-on-b-case-study .final-solution-text,
    .books-on-b-case-study .reflection-text {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Hero Section Mobile Responsive */
    .books-on-b-hero-section {
        padding: 4rem 0 2rem !important;
        min-height: auto !important;
        background: transparent !important;
    }
    
    .books-on-b-hero-section .container {
        padding: 0 1.5rem !important;
    }
    
    .books-on-b-hero-section .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    
    .books-on-b-hero-section .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        color: #1f2937 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .books-on-b-hero-section .hero-images-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-left: 24px !important;
        position: static !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .books-on-b-hero-section .hero-image-left,
    .books-on-b-hero-section .hero-image-right {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
        transform: none !important;
        flex: none !important;
    }
    
    .books-on-b-hero-section .hero-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }
    
    /* Project Info Section Mobile Responsive */
    .project-info-section {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .project-info-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .info-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .info-item h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
        color: #1f2937 !important;
    }
    
    .info-item p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
    }
    
    /* Research Section Mobile Responsive */
    .research-section {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .research-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .research-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .research-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .research-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
        color: #1f2937 !important;
    }
    
    .research-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #4b5563 !important;
    }
    
    .research-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .research-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* Design Solution Section Mobile Responsive */
    .design-solution-section {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .design-solution-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .design-solution-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .design-solution-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .design-solution-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
        color: #1f2937 !important;
    }
    
    .design-solution-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #4b5563 !important;
    }
    
    .design-solution-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .design-solution-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* Final Solution Section Mobile Responsive */
    .final-solution-section {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .final-solution-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .final-solution-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .final-solution-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .final-solution-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
        color: #1f2937 !important;
    }
    
    .final-solution-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #4b5563 !important;
    }
    
    .final-solution-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .final-solution-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* Reflection Section Mobile Responsive */
    .reflection-section {
        padding: 2rem 0 !important;
        background: transparent !important;
    }
    
    .reflection-section .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .reflection-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .reflection-text {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .reflection-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
        color: #1f2937 !important;
    }
    
    .reflection-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #4b5563 !important;
    }
    
    /* ALL SECTIONS - Remove backgrounds and ensure vertical stacking */
    .books-on-b-case-study section {
        background: transparent !important;
        padding: 2rem 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Remove inline styles that override mobile */
    .interface-usability-testing-section,
    .style-guide-section,
    .final-solution-section,
    .reflections-section {
        background: transparent !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 2rem 0 !important;
    }
    
    .white-content-section {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    /* All content containers - vertical stacking */
    .books-on-b-case-study .content,
    .books-on-b-case-study .text-content,
    .books-on-b-case-study .image-content,
    .books-on-b-case-study .grid,
    .books-on-b-case-study .flex-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* All images - full width and responsive */
    .books-on-b-case-study img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    /* All text content - left aligned and readable */
    .books-on-b-case-study h1,
    .books-on-b-case-study h2,
    .books-on-b-case-study h3,
    .books-on-b-case-study h4,
    .books-on-b-case-study p,
    .books-on-b-case-study li {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        color: #1f2937 !important;
        line-height: 1.6 !important;
    }
    
    .books-on-b-case-study h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .books-on-b-case-study h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .books-on-b-case-study h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .books-on-b-case-study p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Video responsiveness */
    .books-on-b-case-study video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Remove any fixed positioning or absolute positioning on mobile */
    .books-on-b-case-study .fixed,
    .books-on-b-case-study .absolute {
        position: static !important;
    }
    
    /* Books on B specific mobile overrides - Force images to move right */
    .books-on-b-case-study .hero-images-container {
        margin-left: 24px !important;
        transform: none !important;
        position: static !important;
    }
    
    .books-on-b-case-study .hero-image-left,
    .books-on-b-case-study .hero-image-right {
        margin-left: 0 !important;
        transform: none !important;
        position: static !important;
    }
    
    .books-on-b-case-study .hero-img {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }
    
    /* Persona Section Mobile - Override inline styles and stack vertically */
    .books-on-b-case-study .persona-section {
        background: transparent !important;
        padding: 2rem 0 !important;
    }
    
    .books-on-b-case-study .persona-section .nav-aligned-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .books-on-b-case-study .persona-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .books-on-b-case-study .persona-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        color: #1f2937 !important;
    }
    
    /* Override inline styles for persona layout */
    .books-on-b-case-study .persona-layout[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
        margin-top: 0 !important;
    }
    
    .books-on-b-case-study .persona-left[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .books-on-b-case-study .persona-right[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .books-on-b-case-study .persona-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .books-on-b-case-study .persona-img[style*="width: 100%"] {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }
    
    /* Override inline styles for persona section items - Remove all colored backgrounds and outlines */
    .books-on-b-case-study .persona-section-item[style*="padding: 1.5rem"] {
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        margin-bottom: 1.5rem !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .books-on-b-case-study .persona-section-title[style*="font-size: 1.1rem"] {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.3 !important;
        text-align: left !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
    }
    
    .books-on-b-case-study .persona-list[style*="list-style: none"] {
        list-style: disc !important;
        padding: 0 0 0 1.25rem !important;
        margin: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
    }
    
    .books-on-b-case-study .persona-list li[style*="font-size: 1rem"] {
        font-size: 1rem !important;
        color: #4b5563 !important;
        margin: 0 0 0.75rem 0 !important;
        line-height: 1.5 !important;
        padding-left: 0 !important;
        position: static !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
    }
    
    /* Ensure image is above text and text stretches full width */
    .books-on-b-case-study .persona-layout[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: stretch !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .books-on-b-case-study .persona-left[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        order: 1 !important;
    }
    
    .books-on-b-case-study .persona-right[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        order: 2 !important;
    }
    
    .books-on-b-case-study .persona-img[style*="width: 100%"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }
    
    /* Ultra-specific overrides for Books on B persona section mobile */
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: stretch !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        order: 1 !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right[style*="flex: 1"] {
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        order: 2 !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image .persona-img[style*="width: 100%"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        margin: 0 auto !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item[style*="padding: 1.5rem"] {
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        margin-bottom: 1.5rem !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        width: 100% !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-section-title[style*="font-size: 1.1rem"] {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #1f2937 !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.3 !important;
        text-align: left !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        width: 100% !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-list[style*="list-style: none"] {
        list-style: disc !important;
        padding: 0 0 0 1.25rem !important;
        margin: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        width: 100% !important;
    }
    
    body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-list li[style*="font-size: 1rem"] {
        font-size: 1rem !important;
        color: #4b5563 !important;
        margin: 0 0 0.75rem 0 !important;
        line-height: 1.5 !important;
        padding-left: 0 !important;
        position: static !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        width: 100% !important;
    }
    
    /* DESKTOP: Restore original side-by-side layout for persona section */
    @media (min-width: 769px) {
        body.books-on-b-case-study .persona-section .persona-layout {
            display: flex !important;
            flex-direction: row !important;
            gap: 4rem !important;
            align-items: flex-start !important;
            margin-top: 2rem !important;
            width: 100% !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-left {
            flex: 1 !important;
            display: flex !important;
            justify-content: center !important;
            align-items: flex-start !important;
            width: auto !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-right {
            flex: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 2rem !important;
            width: auto !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-img {
            width: 100% !important;
            max-width: 400px !important;
            height: auto !important;
            border-radius: 12px !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-section-item {
            padding: 1.5rem !important;
            border-radius: 12px !important;
            border-left: 4px solid #8B5CF6 !important;
            margin-bottom: 1rem !important;
            background: white !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-section-title {
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            color: #333 !important;
            margin: 0 0 1rem 0 !important;
            line-height: 1.3 !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-list {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-list li {
            font-size: 1rem !important;
            color: #333 !important;
            margin: 0 0 0.75rem 0 !important;
            line-height: 1.5 !important;
            padding-left: 1.5rem !important;
            position: relative !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-list li::before {
            content: "•" !important;
            color: #8B5CF6 !important;
            font-weight: bold !important;
            position: absolute !important;
            left: 0 !important;
        }
    }
    
    /* FALLBACK: Ensure desktop layout works even without media query */
    body.books-on-b-case-study .persona-section .persona-layout {
        display: flex !important;
        flex-direction: row !important;
        gap: 4rem !important;
        align-items: flex-start !important;
        margin-top: 2rem !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-left {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-right {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-section-item {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        border-left: 4px solid #8B5CF6 !important;
        margin-bottom: 1rem !important;
        background: white !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-section-title {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.3 !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-list li {
        font-size: 1rem !important;
        color: #333 !important;
        margin: 0 0 0.75rem 0 !important;
        line-height: 1.5 !important;
        padding-left: 1.5rem !important;
        position: relative !important;
    }
    
    body.books-on-b-case-study .persona-section .persona-list li::before {
        content: "•" !important;
        color: #8B5CF6 !important;
        font-weight: bold !important;
        position: absolute !important;
        left: 0 !important;
    }
    
    /* ULTRA SPECIFIC: Force desktop layout with maximum specificity */
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout {
        display: flex !important;
        flex-direction: row !important;
        gap: 4rem !important;
        align-items: flex-start !important;
        margin-top: 2rem !important;
        width: 100% !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        width: auto !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: auto !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image .persona-img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        border-left: 4px solid #8B5CF6 !important;
        margin-bottom: 1rem !important;
        background: white !important;
        width: 100% !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-section-title {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.3 !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-list li {
        font-size: 1rem !important;
        color: #333 !important;
        margin: 0 0 0.75rem 0 !important;
        line-height: 1.5 !important;
        padding-left: 1.5rem !important;
        position: relative !important;
    }
    
    html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item .persona-list li::before {
        content: "•" !important;
        color: #8B5CF6 !important;
        font-weight: bold !important;
        position: absolute !important;
        left: 0 !important;
    }
    
    /* MOBILE ONLY: Override inline styles for mobile layout */
    @media (max-width: 768px) {
        /* Force mobile layout with maximum specificity */
        body.books-on-b-case-study .persona-section .persona-layout[style*="display: flex"] {
            display: flex !important;
            flex-direction: column !important;
            gap: 2rem !important;
            align-items: stretch !important;
            margin-top: 0 !important;
            width: 100% !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-left[style*="flex: 1"] {
            flex: none !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            width: 100% !important;
            order: 1 !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-right[style*="flex: 1"] {
            flex: none !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 1.5rem !important;
            width: 100% !important;
            order: 2 !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-img[style*="max-width: 400px"] {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            border-radius: 12px !important;
            margin: 0 auto !important;
        }
        
        body.books-on-b-case-study .persona-section .persona-section-item[style*="padding: 1.5rem"] {
            padding: 0 !important;
            border-radius: 0 !important;
            border: none !important;
            border-left: none !important;
            margin-bottom: 1.5rem !important;
            background: transparent !important;
            box-shadow: none !important;
            outline: none !important;
            width: 100% !important;
        }
        
        /* Ultra-specific mobile overrides */
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout[style*="display: flex"] {
            display: flex !important;
            flex-direction: column !important;
            gap: 2rem !important;
            align-items: stretch !important;
            margin-top: 0 !important;
            width: 100% !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left[style*="flex: 1"] {
            flex: none !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            width: 100% !important;
            order: 1 !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right[style*="flex: 1"] {
            flex: none !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 1.5rem !important;
            width: 100% !important;
            order: 2 !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image .persona-img[style*="max-width: 400px"] {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            border-radius: 12px !important;
            margin: 0 auto !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-right .persona-section-item[style*="padding: 1.5rem"] {
            padding: 0 !important;
            border-radius: 0 !important;
            border: none !important;
            border-left: none !important;
            margin-bottom: 1.5rem !important;
            background: transparent !important;
            box-shadow: none !important;
            outline: none !important;
            width: 100% !important;
        }
        
        /* Hide image on mobile screens only */
        body.books-on-b-case-study .persona-section .persona-left {
            display: none !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left {
            display: none !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left[style*="flex: 1"] {
            display: none !important;
        }
        
        /* Additional mobile image hiding rules */
        .books-on-b-case-study .persona-section .persona-left {
            display: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-image {
            display: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-img {
            display: none !important;
        }
        
        /* Force hide with maximum specificity */
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image {
            display: none !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image .persona-img {
            display: none !important;
        }
        
        html body.books-on-b-case-study .persona-section .nav-aligned-container .persona-content .persona-layout .persona-left .persona-image .persona-img[style*="max-width: 400px"] {
            display: none !important;
        }
        
        /* Hide annotations on mobile for mid-fidelity wireframes section */
        .books-on-b-case-study .mid-fidelity-wireframes-section .annotation-pin,
        .books-on-b-case-study .mid-fidelity-wireframes-section .annotation-box {
            display: none !important;
        }
        
        .books-on-b-case-study .product-page-section .annotation-pin,
        .books-on-b-case-study .product-page-section .annotation-box {
            display: none !important;
        }
        
        .books-on-b-case-study .checkout-section .annotation-pin,
        .books-on-b-case-study .checkout-section .annotation-box {
            display: none !important;
        }
        
        /* Add captions below images on mobile */
        .books-on-b-case-study .mid-fidelity-wireframes-section .homepage-wireframe-container::after {
            content: "1. Animation screen for events" "\A" "2. Quick filters for genres" "\A" "3. Independent publishers" "\A" "4. Children's books category";
            white-space: pre-line;
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #374151;
            line-height: 1.6;
            text-align: left;
        }
        
        .books-on-b-case-study .product-page-section .product-page-container::after {
            content: "1. Book genre shown – easy category context" "\A" "2. Clear pricing and availability" "\A" "3. Author information and bio" "\A" "4. Related books recommendations";
            white-space: pre-line;
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #374151;
            line-height: 1.6;
            text-align: left;
        }
        
        .books-on-b-case-study .checkout-section .checkout-container::after {
            content: "1. Multiple sign-up options – sign in, guest, or quick accounts" "\A" "2. Progress bar – shows users exactly where they are in the process" "\A" "3. Order summary – visible on every screen for clarity" "\A" "4. Streamlined flow – reduced to 5 clicks for faster checkout";
            white-space: pre-line;
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #374151;
            line-height: 1.6;
            text-align: left;
        }
        
        /* Interface Usability Testing - Mobile Stacking */
        .books-on-b-case-study .interface-usability-testing-section .testing-images-container {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin: 2rem 0 !important;
        }
        
        .books-on-b-case-study .interface-usability-testing-section .testing-images-top-row,
        .books-on-b-case-study .interface-usability-testing-section .testing-images-bottom-row {
            display: flex !important;
            flex-direction: column !important;
            gap: 1rem !important;
            margin-bottom: 1rem !important;
        }
        
        .books-on-b-case-study .interface-usability-testing-section .testing-images-container img {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            transform: none !important;
            flex: none !important;
            margin: 0 !important;
        }
        
        /* Ultra-specific overrides for interface usability testing images */
        html body.books-on-b-case-study .interface-usability-testing-section .testing-images-container[style*="padding-left: 192px"] {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin: 2rem 0 !important;
        }
        
        html body.books-on-b-case-study .interface-usability-testing-section .testing-images-top-row[style*="display: flex"] {
            display: flex !important;
            flex-direction: column !important;
            gap: 1rem !important;
            margin-bottom: 1rem !important;
        }
        
        html body.books-on-b-case-study .interface-usability-testing-section .testing-images-bottom-row[style*="display: flex"] {
            display: flex !important;
            flex-direction: column !important;
            gap: 1rem !important;
            margin-bottom: 1rem !important;
        }
        
        html body.books-on-b-case-study .interface-usability-testing-section .testing-images-container img[style*="max-width: calc(40%"] {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            transform: none !important;
            flex: none !important;
            margin: 0 !important;
        }
        
        html body.books-on-b-case-study .interface-usability-testing-section .testing-images-container img[style*="max-width: calc(20%"] {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            transform: none !important;
            flex: none !important;
            margin: 0 !important;
        }
        
        /* Force visibility of all testing images */
        .books-on-b-case-study .interface-usability-testing-section img {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        /* Mobile layout for interface usability testing - override inline styles */
        @media (max-width: 768px) {
            .books-on-b-case-study .testing-images-container[style*="padding-left: 192px"] {
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin: 2rem 0 !important;
            }
            
            .books-on-b-case-study .testing-images-top-row[style*="display: flex"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 1rem !important;
                margin-bottom: 1rem !important;
            }
            
            .books-on-b-case-study .testing-images-bottom-row[style*="display: flex"] {
                display: flex !important;
                flex-direction: column !important;
                gap: 1rem !important;
                margin-bottom: 1rem !important;
            }
            
            .books-on-b-case-study .testing-img[style*="max-width: calc(40%"] {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
                border-radius: 8px !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
                transform: none !important;
                flex: none !important;
            }
            
            .books-on-b-case-study .testing-img[style*="max-width: calc(20%"] {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
                border-radius: 8px !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
                transform: none !important;
                flex: none !important;
            }
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
        }
        
        /* Mobile Menu Overlay when shown */
        .mobile-menu-overlay[style*="display: block"] {
            display: block !important;
        }
        
        /* Skolay-specific mobile menu overlay */
        .skolay-case-study .mobile-menu-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.5) !important;
            z-index: 9999 !important;
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            transition: opacity 0.3s ease !important;
        }
        
        .skolay-case-study .mobile-menu-overlay.show {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 280px;
            height: 100%;
            background: white;
            padding: 2rem 1.5rem;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
        }
        
        .close-line {
            width: 20px;
            height: 2px;
            background: #333;
            margin: 2px 0;
            transform-origin: center;
        }
        
        .close-line:first-child {
            transform: rotate(45deg) translate(1px, 1px);
        }
        
        .close-line:last-child {
            transform: rotate(-45deg) translate(1px, -1px);
        }
        
        .mobile-menu-items {
            list-style: none;
            padding: 0;
            margin: 3rem 0 0 0;
        }
        
        .mobile-menu-items li {
            margin-bottom: 1rem;
        }
        
        .mobile-menu-link {
            display: block;
            padding: 0.75rem 0;
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.2s ease;
        }
        
        .mobile-menu-link:hover {
            color: #8b5cf6;
        }
        
        .mobile-dropdown {
            position: relative;
        }
        
        .mobile-dropdown-menu {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0 1rem;
            display: block !important;
        }
        
        .mobile-dropdown-item {
            display: block;
            padding: 0.5rem 0;
            color: #666;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.2s ease;
        }
        
        .mobile-dropdown-item:hover {
            color: #8b5cf6;
        }
        
        .books-on-b-case-study .persona-section-title {
            font-size: 1.25rem !important;
            font-weight: 700 !important;
            color: #1f2937 !important;
            margin: 0 0 1rem 0 !important;
            line-height: 1.3 !important;
            text-align: left !important;
            background: transparent !important;
            border: none !important;
            outline: none !important;
            width: 100% !important;
        }
        
        .books-on-b-case-study .persona-list {
            list-style: disc !important;
            padding: 0 0 0 1.25rem !important;
            margin: 0 !important;
            background: transparent !important;
            border: none !important;
            outline: none !important;
            width: 100% !important;
        }
        
        .books-on-b-case-study .persona-list li {
            font-size: 1rem !important;
            color: #4b5563 !important;
            margin: 0 0 0.75rem 0 !important;
            line-height: 1.5 !important;
            padding-left: 0 !important;
            position: static !important;
            background: transparent !important;
            border: none !important;
            outline: none !important;
            width: 100% !important;
        }
        
        /* MOBILE ONLY: Remove all borders and backgrounds from persona section */
        .books-on-b-case-study .persona-section {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .nav-aligned-container {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .nav-aligned-content {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-content {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-layout {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-left {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-image {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-img {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-right {
            background: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-section-item {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            border-left: none !important;
            border-right: none !important;
            border-top: none !important;
            border-bottom: none !important;
            outline: none !important;
            box-shadow: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-section-title {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-list {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        .books-on-b-case-study .persona-section .persona-list li {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            outline: none !important;
        }
        
        /* MOBILE ONLY: Remove any remaining colored backgrounds or borders */
        .books-on-b-case-study .persona-section * {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }
        
        /* MOBILE ONLY: Remove far left bullet points for mobile */
        .books-on-b-case-study .persona-section .nav-aligned-container::before,
        .books-on-b-case-study .persona-section .nav-aligned-content::before,
        .books-on-b-case-study .persona-section .persona-content::before,
        .books-on-b-case-study .persona-section .persona-layout::before,
        .books-on-b-case-study .persona-section .persona-left::before,
        .books-on-b-case-study .persona-section .persona-right::before,
        .books-on-b-case-study .persona-section .persona-section-item::before,
        .books-on-b-case-study .persona-section .persona-section-title::before,
        .books-on-b-case-study .persona-section .persona-list::before,
        .books-on-b-case-study .persona-section .persona-list li::before {
            display: none !important;
            content: none !important;
        }
        
        /* MOBILE ONLY: Remove any pseudo-elements that might be creating bullet points */
        .books-on-b-case-study .persona-section *::before,
        .books-on-b-case-study .persona-section *::after {
            display: none !important;
            content: none !important;
            background: none !important;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }
        
        /* MOBILE ONLY: Ensure list items only have regular bullet points, not custom ones */
        .books-on-b-case-study .persona-section .persona-list {
            list-style: disc !important;
            padding-left: 1.25rem !important;
        }
        
        .books-on-b-case-study .persona-section .persona-list li {
            list-style: disc !important;
            padding-left: 0 !important;
            margin-left: 0 !important;
        }
        
        .books-on-b-case-study .persona-section .persona-list li::before {
            display: none !important;
            content: none !important;
        }
    }
    
    /* Force text centering for Books on B mobile */
    .books-on-b-case-study .hero-title {
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
        display: block !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
    }
    
    /* Also target the hero content container */
    .books-on-b-case-study .hero-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Target the container as well */
    .books-on-b-case-study .books-on-b-hero-section .container {
        text-align: center !important;
    }
    
    /* Ultra-specific override for Books on B hero title */
    body.books-on-b-case-study .books-on-b-hero-section .hero-content h1.hero-title {
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
        display: block !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
        clear: both !important;
    }
    
    /* Ensure navigation bar is visible and properly positioned for Books on B */
    .books-on-b-case-study .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: white !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }
    
    .books-on-b-case-study .nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem !important;
    }
    
    .books-on-b-case-study .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }
    
    .books-on-b-case-study .hamburger-menu {
        left: 1rem !important;
        z-index: 20 !important;
        position: absolute !important;
    }
    
    .books-on-b-case-study .logo {
        margin-left: 3.5rem !important;
        z-index: 10 !important;
    }
    
    /* Add top padding to main content to account for fixed header */
    .books-on-b-case-study main {
        padding-top: 80px !important;
    }
    
    /* Hide sticky menu on mobile */
    .sticky-menu {
        display: none !important;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    /* Smaller margins for very small screens - ALL SECTIONS */
    .books-on-b-hero-section .container,
    .project-info-section .container,
    .overview-section .container,
    .improved-experience-section .container,
    .video-section .container,
    .process-question-section .container,
    .design-process-section .container,
    .understanding-readers-section .container,
    .reader-pain-points-section .container,
    .persona-section .container,
    .journey-map-section .container,
    .design-opportunities-section .container,
    .user-flow-section .container,
    .low-fidelity-sketches-section .container,
    .sketches-title-section .container,
    .sketches-description-section .container,
    .navigation-menu-section .container,
    .mid-fidelity-wireframes-section .container,
    .product-page-section .container,
    .checkout-section .container,
    .interface-usability-testing-section .container,
    .style-guide-section .container,
    .final-solution-section .container,
    .reflections-section .container {
        padding: 0 1rem !important;
    }
    
    .books-on-b-hero-section .hero-title {
        font-size: 2rem !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .books-on-b-hero-section .hero-images-container {
        margin-left: 24px !important;
    }
    
    /* Small mobile hamburger and logo positioning */
    .books-on-b-case-study .hamburger-menu {
        left: 0.5rem !important;
        z-index: 20 !important;
    }
    
    .books-on-b-case-study .logo {
        margin-left: 3.5rem !important;
        z-index: 10 !important;
    }
    
    .books-on-b-case-study .logo h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-image-left,
    .hero-image-right {
        max-width: 350px !important;
    }
    
    .info-item h3 {
        font-size: 1.125rem !important;
    }
    
    .info-item p {
        font-size: 0.95rem !important;
    }
    
    .research-text h2,
    .design-solution-text h2,
    .final-solution-text h2,
    .reflection-text h2 {
        font-size: 1.75rem !important;
    }
    
    .research-text p,
    .design-solution-text p,
    .final-solution-text p,
    .reflection-text p {
        font-size: 0.95rem !important;
    }
}

/* Global Left Alignment System 
   
   Usage for new sections:
   1. Container: Use .nav-aligned-container or apply its styles to section .container
   2. Content: Use .nav-aligned-content class or apply its padding-left
   3. Titles: Use .nav-aligned-title class or apply its padding-left + text-align
   
   All content will align perfectly with "Daania Rao" in the navigation bar.
*/

.nav-aligned-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-aligned-content {
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
}

.nav-aligned-title {
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
    text-align: left;
}

/* Responsive alignment for mobile */
@media (max-width: 768px) {
    .nav-aligned-content,
    .nav-aligned-title {
        padding-left: 1.5rem;
    }
}

/* Project Info Section */
.project-info-section {
    padding: 4rem 0 2rem;
    background: white;
}

.project-info-section .container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.project-info-section .project-info-grid {
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.info-item {
    text-align: left;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.info-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.decorative-line {
    width: 100vw;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Overview Section */
.overview-section {
    padding: 4rem 0;
    background: white;
}

.overview-section .container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.overview-title {
    font-size: 4rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
    text-align: left;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
}

.overview-section-item {
    text-align: left;
}

.overview-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    display: inline;
    margin-right: 0.5rem;
}

.overview-body-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: inline;
}

.context-header {
    margin-bottom: 0.5rem;
}

.context-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.context-item {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.context-item::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Improved Experience Section */
.improved-experience-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.improved-experience-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding-left: calc((100vw - 1200px) / 2 + 2rem);
}

.improved-experience-left {
    flex: 0 0 auto;
    max-width: 400px;
}

.improved-experience-title {
    font-size: 1.32rem;
    font-weight: 480;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.improved-experience-right {
    flex: 1;
    max-width: 600px;
}

.improved-experience-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.improved-experience-text:last-child {
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: white;
}

.video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.main-flow-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Process Question Section */
.process-question-section {
    padding: 6rem 0;
    background: #6b6b6b;
}

.process-question-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.process-question-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin: 0;
    max-width: 900px;
}

/* Design Process Section */
.design-process-section {
    padding: 4rem 0;
    background: white;
}

.design-process-section .section-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: left;
}

.design-process-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.design-process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    white-space: nowrap;
}

.design-process-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0 0 3rem 0;
    white-space: nowrap;
}

.design-process-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
    min-height: 400px;
}

.double-diamond-img {
    width: 70%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Reader Pain Points Section */
.reader-pain-points-section {
    padding: 4rem 0;
    background: white;
}

.reader-pain-points-content {
    max-width: none;
    width: 100%;
}

.reader-pain-points-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.reader-pain-points-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0 0 3rem 0;
    max-width: 800px;
}

/* Original Website Images Grid */
.original-website-images {
    width: calc(100% - 192px);
    margin-top: 2rem;
    margin-right: 192px;
}

.image-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.image-row.first-row {
    gap: 2rem; /* Reset to original gap */
}

.image-row.first-row .image-right-small {
    transform: translateX(-25%); /* Move right image further left to align with image below */
}

.image-row:last-child {
    margin-bottom: 0;
}

.image-left-large {
    flex: 2; /* Takes up 2/3 of the space */
}

.image-right-small {
    flex: 1; /* Takes up 1/3 of the space */
}

.image-left-small {
    flex: 1; /* Takes up 1/3 of the space */
}

.image-right-large {
    flex: 2; /* Takes up 2/3 of the space */
}

.original-website-img {
    width: 80%;
    height: auto;
    display: block;
}

/* Make originalwebsite3.jpg taller to match originalwebsite4.jpg height */
.image-left-small .original-website-img {
    width: 90.72%; /* Increased by additional 5% from 86.4% to 90.72% */
    height: auto;
    object-fit: cover; /* Maintain aspect ratio while filling height */
}

/* Hover Textbox Styles */
.image-container {
    position: relative;
    display: inline-block;
}

.hover-textbox {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #8B5CF6; /* Purple background */
    color: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease, visibility 600ms ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.image-container:hover .hover-textbox {
    opacity: 1;
    visibility: visible;
}

/* Positioning variations for different textboxes */
.textbox-right {
    top: 1rem;
    left: auto;
    right: 1rem;
}

.textbox-top-right {
    top: 1rem;
    left: auto;
    right: 1rem;
}

.hover-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.2;
}

.hover-description {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: white;
    line-height: 1.4;
}

/* Understanding Readers Problem Section */
.understanding-readers-section {
    padding: 4rem 0;
    background: white;
}

.understanding-readers-content {
    max-width: none;
    width: 100%;
}

.understanding-readers-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.key-insights-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.insight-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    flex-shrink: 0;
    line-height: 1.2;
}

.insight-content {
    flex: 1;
}

.insight-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.insight-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.insight-quote {
    font-size: 1rem;
    font-weight: 400;
    color: #8B5CF6;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

/* Responsive Design for Project Info and Overview */
@media (max-width: 768px) {
    .project-info-section .container,
    .overview-section .container {
        max-width: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .project-info-section .project-info-grid {
        padding-left: 1.5rem;
    }
    
    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .overview-title {
        font-size: 2.5rem;
        padding-left: 1.5rem;
    }
    
    .overview-content {
        padding-left: 1.5rem;
    }
    
    .improved-experience-content {
        flex-direction: column;
        gap: 2rem;
        padding-left: 1.5rem;
    }
    
    .improved-experience-left {
        max-width: none;
    }
    
    .video-content {
        padding: 0 1.5rem;
    }
    
    .process-question-content {
        padding: 0 1.5rem;
    }
    
    .process-question-title {
        font-size: 2rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
        .reader-pain-points-title {
        font-size: 1.75rem;
        margin: 0 0 1.5rem 0;
    }

    .reader-pain-points-text {
        font-size: 0.95rem;
    }

    .original-website-images {
        width: 100%;
        margin-right: 0;
    }

    .image-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-row.first-row {
        gap: 2rem; /* Reset to original gap on mobile */
    }

    .image-row.first-row .image-right-small {
        transform: none; /* Remove transform on mobile */
    }

    .image-left-large,
    .image-right-small,
    .image-left-small,
    .image-right-large {
        flex: none;
    }

    .original-website-img {
        width: 100%;
    }

    .image-left-small .original-website-img {
        width: 100%; /* Reset to normal width on mobile */
    }



    .hover-textbox {
        max-width: 200px;
        padding: 0.75rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    .textbox-right,
    .textbox-top-right {
        top: 0.5rem;
        right: 0.5rem;
    }

    .persona-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .persona-img {
        max-width: 300px;
    }

    .persona-title {
        font-size: 1.75rem;
        margin: 0 0 2rem 0;
    }











    .hover-title {
        font-size: 0.9rem;
        margin: 0 0 0.4rem 0;
    }

    .hover-description {
        font-size: 0.8rem;
    }

/* Persona Section - Updated 2024 */
.persona-section {
    padding: 4rem 0;
    background: white;
}

.persona-content {
    max-width: none;
    width: 100%;
}

.persona-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.persona-layout {
    display: flex !important;
    flex-direction: row !important;
    gap: 4rem !important;
    align-items: flex-start !important;
    margin-top: 2rem !important;
    border: 3px solid red !important;
}

.persona-left {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex: 1 !important;
    border: 2px solid blue !important;
    background-color: lightblue !important;
}

.persona-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.persona-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.persona-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    flex: 1 !important;
    border: 2px solid green !important;
    background-color: lightgreen !important;
}

.persona-section-item {
    background: #f8f9fa !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    border-left: 4px solid #8B5CF6 !important;
    border: 2px solid orange !important;
    margin-bottom: 1rem !important;
}

.persona-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.persona-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-list li {
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.persona-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

    .persona-list li:last-child {
        margin-bottom: 0;
    }

    /* Journey Map Section */
    .journey-map-section {
        padding: 4rem 0;
        background: white;
    }

    .journey-map-content {
        max-width: none;
        width: 100%;
    }

    .journey-map-text {
        font-size: 1.1rem;
        color: #333;
        margin: 0 0 2rem 0;
        line-height: 1.6;
        max-width: 800px;
    }

    .journey-map-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        text-align: center;
        width: 100%;
    }

    .journey-map-img {
        width: 100%;
        max-width: 1000px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        display: block;
    }

    /* Design Opportunities Section */
    .design-opportunities-section {
        padding: 4rem 0;
        background: #f5f5f5;
    }

    .design-opportunities-content {
        max-width: none;
        width: 100%;
    }

    .design-opportunities-title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 3rem 0;
        line-height: 1.2;
    }

    .design-opportunities-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .design-opportunities-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .design-opportunities-intro {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin: 0;
    }

    .design-opportunities-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .design-opportunity-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 500px;
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .card-number {
        background: #8B5CF6;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .card-content {
        flex: 1;
    }

    .card-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        margin: 0 0 0.75rem 0;
        line-height: 1.3;
    }

    .card-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

    /* Responsive styles for design opportunities */
    @media (max-width: 768px) {
        .design-opportunities-section {
            padding: 2rem 0;
        }

        .design-opportunities-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .design-opportunities-title {
            font-size: 1.75rem;
            margin: 0 0 2rem 0;
        }

        .design-opportunity-card {
            padding: 1.5rem;
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .design-opportunities-section {
            padding: 1.5rem 0;
        }

        .design-opportunities-title {
            font-size: 1.5rem;
            margin: 0 0 1.5rem 0;
        }

        .design-opportunity-card {
            padding: 1rem;
            gap: 1rem;
        }

        .card-number {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
    }

    /* User Flow Section */
    .user-flow-section {
        padding: 4rem 0;
        background: white;
    }

    .user-flow-content {
        max-width: none;
        width: 100%;
    }

    .user-flow-title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 1rem 0;
        line-height: 1.2;
    }

    .user-flow-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin: 0 0 2rem 0;
        line-height: 1.5;
    }

    .user-flow-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .user-flow-img {
        width: 50%;
        max-width: 600px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Responsive styles for user flow */
    @media (max-width: 768px) {
        .user-flow-section {
            padding: 2rem 0;
        }

        .user-flow-title {
            font-size: 1.75rem;
            margin: 0 0 0.75rem 0;
        }

        .user-flow-subtitle {
            font-size: 1rem;
            margin: 0 0 1.5rem 0;
        }

        .user-flow-img {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .user-flow-section {
            padding: 1.5rem 0;
        }

        .user-flow-title {
            font-size: 1.5rem;
            margin: 0 0 0.5rem 0;
        }

        .user-flow-subtitle {
            font-size: 0.95rem;
            margin: 0 0 1rem 0;
        }
    }

    /* Low-Fidelity Sketches Section */
    .low-fidelity-sketches-section {
        width: 100%;
    }

    .sketches-title-section {
        background: #f5f5f5;
        padding: 3rem 0 2rem 0;
        width: 100%;
    }

    .sketches-title-content {
        max-width: none;
        width: 100%;
    }

    .sketches-title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 1.5rem 0;
        line-height: 1.2;
    }

    .section-divider {
        height: 2px;
        background: #ddd;
        width: 100%;
        margin: 0;
    }

    .sketches-description-section {
        background: white;
        padding: 2rem 0 3rem 0;
        width: 100%;
    }

    .sketches-description-content {
        max-width: none;
        width: 100%;
    }

    .sketches-description {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin: 0 0 2rem 0;
        max-width: 800px;
    }

    /* Homepage Development Image */
    .homepage-development-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .homepage-dev-img {
        width: 50%;
        max-width: 600px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Annotations */
    .annotation {
        position: absolute;
        z-index: 10;
    }

    .annotation-textbox {
        background: #8B5CF6;
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        max-width: 220px;
        border: 2px solid white;
    }

    .annotation-text {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        color: white;
        text-align: center;
    }

    /* Annotation Positioning - Overlaying on numbered areas */
    .annotation-1 {
        top: 15%;
        left: 20%;
    }

    .annotation-2 {
        top: 40%;
        right: 15%;
    }

    .annotation-3 {
        bottom: 20%;
        left: 20%;
    }

    /* Responsive styles for low-fidelity sketches */
    @media (max-width: 768px) {
        .sketches-title-section {
            padding: 2rem 0 1.5rem 0;
        }

        .sketches-title {
            font-size: 1.75rem;
            margin: 0 0 1rem 0;
        }

        .sketches-description-section {
            padding: 1.5rem 0 2rem 0;
        }

        .sketches-description {
            font-size: 1rem;
        }

        .homepage-dev-img {
            width: 85%;
            max-width: 600px;
        }

        .annotation-textbox {
            max-width: 180px;
            padding: 0.5rem 0.75rem;
        }

        .annotation-text {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .sketches-title-section {
            padding: 1.5rem 0 1rem 0;
        }

        .sketches-title {
            font-size: 1.5rem;
            margin: 0 0 0.75rem 0;
        }

        .sketches-description-section {
            padding: 1rem 0 1.5rem 0;
        }

        .sketches-description {
            font-size: 0.95rem;
        }
    }

    /* Updating Navigation Menu Section */
    .navigation-menu-section {
        padding: 4rem 0;
        background: white;
    }

    .navigation-menu-content {
        max-width: none;
        width: 100%;
    }

    .navigation-menu-title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 2rem 0;
        line-height: 1.2;
    }

    .navigation-menu-description {
        margin-bottom: 3rem;
    }

    .navigation-menu-description p {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin: 0 0 1.5rem 0;
    }

    .navigation-menu-description ul {
        margin: 0 0 1.5rem 0;
        padding-left: 2rem;
    }

    .navigation-menu-description li {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin: 0 0 0.75rem 0;
    }

    .navigation-menu-description strong {
        font-weight: 700;
        color: #8B5CF6;
    }

    /* Navigation Images */
    .navigation-images {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .navigation-image-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navigation-img {
        width: calc(50% - 96px);
        max-width: 400px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .image-caption {
        font-size: 0.9rem;
        color: #666;
        margin: 0.5rem 0 0 0;
        font-style: italic;
        text-align: center;
    }

    /* Responsive styles for navigation menu */
    @media (max-width: 768px) {
        .navigation-menu-section {
            padding: 2rem 0;
        }

        .navigation-menu-title {
            font-size: 1.75rem;
            margin: 0 0 1.5rem 0;
        }

        .navigation-menu-description p,
        .navigation-menu-description li {
            font-size: 1rem;
        }

        .navigation-img {
            width: 100%;
            max-width: 600px;
        }
    }

    @media (max-width: 480px) {
        .navigation-menu-section {
            padding: 1.5rem 0;
        }

        .navigation-menu-title {
            font-size: 1.5rem;
            margin: 0 0 1rem 0;
        }

        .navigation-menu-description p,
        .navigation-menu-description li {
            font-size: 0.95rem;
        }

        .navigation-img {
            max-width: 100%;
        }
    }

    /* Mid-fidelity Wireframes Section */
    .mid-fidelity-wireframes-section {
        padding: 4rem 0;
        background: white;
    }

    .mid-fidelity-wireframes-content {
        max-width: none;
        width: 100%;
    }

    .mid-fidelity-wireframes-title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 2rem 0;
        line-height: 1.2;
    }

    .mid-fidelity-wireframes-description {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin: 0;
        max-width: 900px;
        white-space: nowrap;
    }

    /* Responsive styles for mid-fidelity wireframes */
    @media (max-width: 768px) {
        .mid-fidelity-wireframes-section {
            padding: 2rem 0;
        }

        .mid-fidelity-wireframes-title {
            font-size: 1.75rem;
            margin: 0 0 1.5rem 0;
        }

        .mid-fidelity-wireframes-description {
            font-size: 1rem;
            white-space: normal;
        }
    }

    @media (max-width: 480px) {
        .mid-fidelity-wireframes-section {
            padding: 1.5rem 0;
        }

        .mid-fidelity-wireframes-title {
            font-size: 1.5rem;
            margin: 0 0 1rem 0;
        }

        .mid-fidelity-wireframes-description {
            font-size: 0.95rem;
        }
    }

    /* Responsive styles for journey map */
    @media (max-width: 768px) {
        .journey-map-section {
            padding: 2rem 0;
        }

        .journey-map-text {
            font-size: 1rem;
            margin: 0 0 1.5rem 0;
        }

        .journey-map-img {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .journey-map-section {
            padding: 1.5rem 0;
        }

        .journey-map-text {
            font-size: 0.95rem;
            margin: 0 0 1rem 0;
        }
    }







    .understanding-readers-title {
        font-size: 1.75rem;
    }

    .key-insights-subtitle {
        font-size: 1.25rem;
    }
    
    .design-process-content {
        padding: 0 1.5rem;
    }
    
    .design-process-title,
    .design-process-text {
        white-space: normal;
    }
    
    .design-process-image {
        width: 100%;
        margin: 2rem auto;
        padding: 1.5rem 0;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .project-info-grid {
        gap: 1.5rem;
    }
    
    .overview-title {
        font-size: 2rem;
    }
    
    .info-title {
        font-size: 1.25rem;
    }

    .reader-pain-points-title {
        font-size: 1.5rem;
        margin: 0 0 1rem 0;
    }

    .reader-pain-points-text {
        font-size: 0.9rem;
    }

    .image-row {
        gap: 1rem;
    }

    .persona-section-item {
        padding: 1.25rem;
    }

    .persona-section-title {
        font-size: 1rem;
    }

    .persona-list li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }






    
    .info-description {
        font-size: 1rem;
    }
    
    .overview-label {
        font-size: 1rem;
    }
    
    .overview-body-text {
        font-size: 0.9rem;
    }
    
    .process-question-title {
        font-size: 1.8rem;
    }
    
    .design-process-image {
        margin: 1.5rem auto;
        padding: 1rem 0;
        min-height: 250px;
    }
}


