    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: #000;
            background-color: #ffffff;
            padding: 40px;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
        }


/* Dark mode toggle button */
.dark-mode-toggle {
   float: right;
            padding: 14px 40px;
            background: none;
            border: none;
            cursor: pointer;
            color: inherit;
            font-size: 16px;
}

/* Dark mode classes */
body.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-mode .navbar {
    background-color: #1a1a1a;
}

.dark-mode .navbar a {
    color: #ffffff;
}

.dark-mode hr {
    border-color: #ffffff;
}

.dark-mode a {
    color: #ff6b52;
}

.dark-mode a:hover {
    color: #4a4a4a;
}

.dark-mode .stats-grid, 
.dark-mode .bottomwrap, 
.dark-mode .quote-box, 
.dark-mode .comparison-container, 
.dark-mode .feature-showcase {
    border-color: #ffffff;
}

.dark-mode .tags p, 
.dark-mode .column p, 
.dark-mode .event-description p, 
.dark-mode p {
    color: #a0a0a0;
}

.dark-mode p3 {
    color: #ffffff;
}

.dark-mode .column h3 {
    color: #a0a0a0;
}

.dark-mode .bottomwrap a {
    color: #ffffff;
}

/* Default light mode styles */
.navbar {
    background-color: #fff;
}

.navbar a {
    color: #000;
}

a {
    color: #EE4B2B;
}

a:hover {
    color: lightgray;
}

hr {
    border-color: #000;
}

.stats-grid, .bottomwrap, .quote-box, .comparison-container, .feature-showcase {
    border-color: #000;
}

.tags p, .column p, .event-description p, p {
    color: black;
}

p3 {
    color: #000;
}

.column h3 {
    color: dimgrey;
}

.bottomwrap a {
    color: #000;
}

/* Dark mode overrides */
.dark-mode .navbar {
    background-color: #1a1a1a;
}

.dark-mode .navbar a {
    color: #ffffff;
}

.dark-mode a {
    color: #ff6b52;
}

.dark-mode a:hover {
    color: #4a4a4a;
}

.dark-mode hr {
    border-color: #ffffff;
}

.dark-mode .stats-grid, 
.dark-mode .bottomwrap, 
.dark-mode .quote-box, 
.dark-mode .comparison-container, 
.dark-mode .feature-showcase {
    border-color: #ffffff;
}

.dark-mode .tags p, 
.dark-mode .column p, 
.dark-mode .event-description p, 
.dark-mode p {
    color: #a0a0a0;
}

.dark-mode p3 {
    color: #ffffff;
}

.dark-mode .column h3 {
    color: #a0a0a0;
}

.dark-mode .bottomwrap a {
    color: #ffffff;
}
        /* Navigation */

        nav{
              margin-bottom: 12%;
              color: #000;
        }

/* SVG dark mode compatibility */
.svg-text {
    fill: #000000; /* Default text color for light mode */
}

.dark-mode .svg-text {
    fill: #ffffff; /* Text color for dark mode */
}

/* You might also want to add these for other SVG elements */
.dark-mode .process-svg path[stroke="#E5E5E5"] {
    stroke: #555555; /* Darker lines for dark mode */
}


/* Dark mode overrides for stats grid */
.dark-mode .stats-grid {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.dark-mode .stat-box {
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dark-mode .stat-box:nth-child(4n) {
    border-right: none;
}




        .navbar {
  overflow: hidden;
 background-color: #fff; 
  position: fixed; /* Set the navbar to fixed position */
  z-index: 100;
  top: 0; /* Position the navbar at the top of the page */
  left: 0;
  width: 100%; /* Full width */
  column-span: 100%;

}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  width: 10%;
  text-align: center;
  padding: 14px 40px;
  padding-left: 30px;
  font-family: "dm-sans", sans-serif;
  text-decoration: none;
  color: #000; /* Add this to make links black by default */
}

p {
            max-width: 100%;
            font-size: 1rem;
            line-height: 1.5;
            
        }

b {
            max-width: 100%;
            font-size: 1rem;
            line-height: 1.5;
            margin-top: 20px;
            margin-bottom: 20px;
            font-weight: 700;
            display: inline-block; 

        }

        b1 {
            max-width: 100%;
            font-size: 1rem;
            line-height: 1.5;
  
            font-weight: 700;
            display: inline-block; 

        }

i{
             max-width: 100%;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 20px;
            font-style: italic;
            display: inline-block; 

}

ul {
            font-size: 1rem
            line-height: 1.5;
            margin-bottom: 20px;
            padding-left: 20px;
        }

a{
color: black;
  font-family: DM Sans, monospace;
font-style: normal;
font-weight: 400;
}

  a:hover{
    color: #EE4B2B;

}
/* And make sure this selector applies specifically to navbar links */
.navbar a:hover {
  color: #EE4B2B; /* This is the red color on hover */
}
  

        /* Main content grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .title-section {
            grid-column: 1 / 3;
            margin-bottom: 40px;
        }

        .subtitle-section {
            grid-column: 3 / 6;
            margin-bottom: 40px;
        }

        .title {
            font-size: 6rem;
            line-height: 1;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 3rem;
            line-height: 1.3;
            font-weight: 400;
        }

        .details {
            grid-column: 1 / 2;
            font-size: 1rem;
            line-height: 1.35;
            padding-right: 20px;
            font-weight: 500;
            color: #696969;
        }

        .details div {
            margin-bottom: 12px;
        }

        .project-info {
            grid-column: 3 / 6;
            font-size: 1rem;
            line-height: 1.6;
        }

        .project-info p {
            margin-bottom: 20px;
        }



.img-section {
    width: 100%;
    max-width: 1432px; /* Original SVG width */
    margin: 0 auto;
    overflow: hidden;
}

.img-section svg {
    display: block;
    width: 100%;
    height: auto;
}
       

        .content-section {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin: 40px 0;
            margin-top: 6%;
        }

        .content-title {
            grid-column: 1 / 2;
            font-size: 1rem;
            font-weight: 400;
        }

        .content-details {
            grid-column: 3 / 6;
        }

        .content-details .big-text {
            font-size: 2.25rem;
            line-height: 1.3;
            margin-bottom: 20px;
            font-weight: 300;

        }

         .content-details .medium-text {
            font-size: 1.5rem;
            line-height: 1.3;
            margin-bottom: 20px;
            font-weight: 700;

        }

        .user-persona {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin: 40px 0;
        }

        .persona-title {
            grid-column: 1 / 2;
            font-size: 1rem;
            font-weight: 400;
        }

        .persona-card {
            grid-column: 3 / 6;
            width: 100%;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
        }

        .persona-card img {
            width: 100%;
            height: auto;
        }

        .view-button {
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            font-size: 16px;
            color: #555;
        }

.svg-container{
 margin-top: 0;
    padding-top: 0;
    height: auto;
    max-height: 400px; 
}

/* Stats grid at bottom */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed from 5 to 4 columns */
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 40px;
}

.stat-box {
    padding: 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-box:nth-child(4n) { /* Update this selector for 4 columns */
    border-right: none;
}

.large-number {
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
   font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.quote-container {
    height: 200px; /* Can sdjust this value based on longest quote */
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}


i {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    display: block; /* Changed from inline-block */
    flex-grow: 1; /* This will make all quote containers take up the same space */
}

.stat-box p {
    margin-top: auto; /* This will push the paragraph to align with others */
}



        /* Responsive design */
        @media (max-width: 1200px) {
            .title {
                font-size: 72px;
            }
            
            .subtitle {
                font-size: 36px;
            }
               .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns on medium screens */
    }
    
    .stat-box:nth-child(2n) {
        border-right: none;
    }
    
    .stat-box:nth-child(4n) {
        border-right: 1px solid rgba(0,0,0,0.1); /* Reset this */
    }
        }

/* Dark mode for medium screens */
    .dark-mode .stat-box:nth-child(4n) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

        .comparison-container {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.image-half {
    flex: 1;
    position: relative;
}

.comparison-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.comparison-image:hover {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
}

.feature-showcase {
    display: flex;
    margin-bottom: 40px;
    gap: 30px;
}

.feature-image {
    flex: 1;
}

.feature-text {
    flex: 1.5;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}



.five-column-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-areas: 
        "title title"
        "sidebar main";
    gap: 40px;
    margin: 40px 0 60px 0;
}

.grid-title {
    grid-area: title;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
}

.grid-sidebar {
    grid-area: sidebar;
    padding-right: 20px;
}

.sidebar-content {
    position: sticky;
    top: 40px;
}

.sidebar-content h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-family: "DM Sans", sans-serif;
}

.sidebar-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.grid-main {
    grid-area: main;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.comparison-container {
    display: flex;
    margin-top: 20px;
    gap: 15px;
}

.image-half {
    flex: 1;
    position: relative;
}

.comparison-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.comparison-image:hover {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
}

.feature-showcase {
    display: flex;
    margin-bottom: 40px;
    gap: 30px;
}

.feature-image {
    flex: 1;
}

.feature-text {
    flex: 1.5;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.quote-box {
    border-left: 4px solid #618EFF;
    padding-left: 20px;
    margin: 30px 0;
}

.quote-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.quote-author {
    color: #666;
    font-size: 14px;
}

/* Content container styles */
.content-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--background-color);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.control-button {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.control-button:hover {
    background: #e0e0e0;
}

.control-button.active {
    background: #618EFF;
    color: white;
    border-color: #618EFF;
}

.fullscreen-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    padding: 8px 16px;
    color: #333;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
}

.fullscreen-button:hover {
    background: #e0e0e0;
}

.fullscreen-button .exit-text {
    display: none;
}

.fullscreen-button .enter-text {
    display: inline;
}

.fullscreen .fullscreen-button .exit-text {
    display: inline;
}

.fullscreen .fullscreen-button .enter-text {
    display: none;
}

/* Fullscreen Image Viewer */
.fullscreen-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.fullscreen-viewer-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-fullscreen-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 2px solid white;
}

.close-fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.1);
}


.bottomwrap{
      display: grid;
    grid-template-columns: 4fr 1fr;
    grid-template-areas: 
        "empty"
        "bw";
    gap: 40px;
    margin: 40px 0 0px 0;

}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .grid-main {
        grid-template-columns: 1fr;
    }

    .bottomwrap{
                grid-template-columns: 1fr;

    }
}

@media (max-width: 768px) {
    .five-column-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "sidebar"
            "main";
    }
    
    .grid-sidebar {
        padding-right: 0;
    }
    
    .sidebar-content {
        position: static;
    }


.quote-box {
    border-left: 4px solid #618EFF;
    padding-left: 20px;
    margin: 30px 0;
}

.quote-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.quote-author {
    color: #666;
    font-size: 14px;
}

/* Content container styles */
.content-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--background-color);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.control-button {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.control-button:hover {
    background: #e0e0e0;
}

.control-button.active {
    background: #618EFF;
    color: white;
    border-color: #618EFF;
}

.fullscreen-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    padding: 8px 16px;
    color: #333;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
}

.fullscreen-button:hover {
    background: #e0e0e0;
}

.fullscreen-button .exit-text {
    display: none;
}

.fullscreen-button .enter-text {
    display: inline;
}

.fullscreen .fullscreen-button .exit-text {
    display: inline;
}

.fullscreen .fullscreen-button .enter-text {
    display: none;
}

/* Fullscreen Image Viewer */
.fullscreen-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.fullscreen-viewer-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-fullscreen-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 2px solid white;
}

.close-fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.1);
}



        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
            }
            
            .title-section, 
            .subtitle-section, 
            .details, 
            .project-info, 
            .content-title, 
            .content-details,
            .user-persona {
                display: block;
            }

             .img-section {
        margin: 20px -20px; /* Negative margin can help the SVG extend to the edge on mobile */
        width: calc(100% + 40px);
    }
            
            .title-section, 
            .subtitle-section, 
            .details, 
            .project-info, 
            .content-title, 
            .content-details,
            .persona-title,
            .persona-card {
                grid-column: 1 / -1;
            }
            
            .persona-title {
                margin-bottom: 20px;
            }
            
            .title {
                font-size: 48px;
            }
            
            .subtitle {
                font-size: 24px;
            }
            
            .content-details .big-text {
                font-size: 24px;
            }
             .stats-grid {
        grid-template-columns: 1fr; /* Change to 1 column on very small screens */
    }
    
    .stat-box {
        border-right: none !important; /* Remove all right borders */
    }
        }
    </style>