/* Base Resets & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #000;
}

#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-bg.jpeg');
    
    background-size: cover;
    background-position: center center;
    
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    height: 100vh; 
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    color: #ffffff;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
}

#hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Projects Section (Grid Layout) */
#projects {
    padding: 60px 10%;
}

#projects h2 {
    text-align: center;
    margin-bottom: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

.card h3 {
    padding: 20px 20px 5px 20px;
}

.card p {
    padding: 0 20px 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Contact Section */
#contact {
    background-color: #f0f0f0;
    text-align: center;
    padding: 60px 20px;
}

#contact h2 {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #888;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}
/* Projects Page Specific Styles */
#projects-page {
    padding: 80px 10%;
    text-align: center;
}

#projects-page h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

nav a.active {
    color: #000;
    border-bottom: 2px solid #222;
    padding-bottom: 4px;
}
/* Logo Link Styling */
.logo a {
    text-decoration: none; 
    color: #333;           
    transition: color 0.3s;
}

.logo a:hover {
    color: #000;           
}
/* Case Study Layout Styles */
.case-study-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #000;
}

.project-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.project-meta {
    color: #777;
    margin-bottom: 10px;
    font-size: 0.95rem;
}


.project-hero-image img {
    width: 150%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
    background-color: #ddd;
}

.project-hero-image {
    display: flex;
    justify-content: center; 
    align-items: center;     
    margin-bottom: 50px;
	margin-top: 50px;
    width: 100%;
}

.project-hero-image1 img {
    width: 100%;
    max-height: 1100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
	margin-top: 50px;
    background-color: #ddd;
}

.project-hero-image1 {
    display: flex;
    justify-content: center; 
    align-items: center;     
    margin-bottom: 50px;     
    width: 100%;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-block h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 5px;
}

.linebreak h3 {
	text-decoration-line: underline;
	text-decoration-color: solid #eaeaea;
	text-underline-offset: 5px;
    
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Custom class for narrative/story text */
.tabbed-text {
    text-indent: 35px;
}

/* Side-by-Side Image Row Container in project*/
.image-comparison-row {
    display: flex;
    gap: 20px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;     
}

/* Individual Image Columns */
.image-column {
    flex: 1;              
    text-align: center;   
}

.image-column img {
    width: 100%;          
    height: 400px;       
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
}

.image-comparison-row1 {
    display: flex;
    gap: 20px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;     
}

/* Individual Image Columns */
.image-column1 {
    flex: 1;              
    text-align: center;   
}

.image-column1 img {
    width: 100%;          
    height: 420px;       
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); 
}

.image-comparison-row2 {
    display: flex;
    gap: 10px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;     
}

/* Individual Image Columns */
.image-column2 {
    flex: 1;              
    text-align: center;   
}

.image-column2 img {
    width: 100%;          
    aspect-ratio: 5 / 4;       
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	
}

.image-comparison-row3 {
    display: flex;
    gap: 10px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;     
}

/* Individual Image Columns */
.image-column3 {
    flex: 1;              
    text-align: center;   
}

.image-column3 img {
    width: 100%;          
    aspect-ratio: 4 / 5;       
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	
}

/* Captions underneath */
.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-indent: 0 !important; 
}

/* Responsive adjustment for phone screens */
@media (max-width: 600px) {
    .image-comparison-row {
        flex-direction: column;
    }
    .image-column img {
        height: auto; 
    }
}

/* Three Column Row Wrapper */
.image-three-column-row {
    display: flex;
    gap: 15px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;    
}


.triple-column {
    flex: 1;              
    text-align: center;   
}

.triple-column img {
    width: 100%;          
    height: 200px;        
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.04); 
}

.triple-caption {
    font-size: 0.88rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    text-indent: 0 !important; 
}

@media (max-width: 768px) {
    .image-three-column-row {
        flex-direction: column; 
        gap: 25px;              
    }
    .triple-column img {
        height: auto;           
        max-height: 400px;
    }
}

/* Single Centered Image Wrapper */
.image-single-container {
    max-width: 900px;     
    margin: 40px auto;    
    width: 100%;         
    text-align: center; 
}

.image-single-container img {
    width: 100%;        
    height: auto;        
    max-height: 800px;   
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
}

/* Caption underneath */
.single-caption {
    font-size: 0.88rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    text-indent: 0 !important;
	text-align: center;
}

/* Website Image Container */
.image-single-container2 {
    max-width: 900px;     
    margin: 40px auto;    
    width: 100%;         
    text-align: center; 
}

.image-single-container2 img {
    width: 100%;        
    height: auto;        
    max-height: 1600px;   
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
}

/* Website Image Container Long */
.image-single-container3 {
    max-width: 900px;     
    margin: 40px auto;    
    width: 100%;         
    text-align: center; 
}

.image-single-container3 img {
    width: 100%;        
    height: auto;        
    max-height: 2500px;   
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
}

/* Website Image Container Extra Long */
.image-single-container4 {
    max-width: 900px;     
    margin: 40px auto;    
    width: 100%;         
    text-align: center; 
}

.image-single-container4 img {
    width: 100%;        
    height: auto;        
    max-height: 3000px;   
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
}

.image-three-column-row2 {
    display: flex;
    gap: 15px;            
    width: 100%;
    margin: 40px auto;    
    max-width: 900px;    
}


.triple-column2 {
    flex: 1;              
    text-align: center;   
}

.triple-column2 img {
    width: 100%;          
    height: 270px;        
    object-fit: cover;    
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.04); 
}

/* Captions underneath */
.triple-caption2 {
    font-size: 0.88rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    text-indent: 0 !important; 
}

/* Responsive view for mobile screens */
@media (max-width: 768px) {
    .image-three-column-row2 {
        flex-direction: column; 
        gap: 25px;              
    }
    .triple-column2 img {
        height: auto;           
        max-height: 700px;
    }
}

/* 5-Image Grid Wrapper */
.project-five-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    width: 100%;
    margin: 40px auto;
    max-width: 900px;
}

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

.grid-item.wide-item {
    grid-column: span 2; 
    max-width: 100%; 
    margin: 0 auto;
}

.grid-item img {
    width: 100%;
    height: 300px;     
    object-fit: cover;   
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
}

.grid-item.wide-item img {
    height: 400px; 
}

/* Caption underneath 5 image grid */
.grid-caption {
    font-size: 0.88rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    text-indent: 0 !important; 
}

/* Mobile Responsiveness for 5 image grid */
@media (max-width: 768px) {
    .project-five-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .grid-item.wide-item {
        grid-column: span 1; 
    }
    
    .grid-item img, .grid-item.wide-item img {
        height: auto;
        max-height: 350px;
    }
}

/*Prevents overscroll on links*/
h3 {
    scroll-margin-top: 100px;
}
h2 {
    scroll-margin-top: 100px;
}
h4 {
    scroll-margin-top: 100px;
}

/*Fixes link coloring*/
a {
    color: #666;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

video {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* Grid for Facebook posts */

.facebook-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: start;
    margin-top: 2rem;
}

.facebook-post {
    width: 100%;
    display: flex;
    justify-content: center;
}

.facebook-post iframe {
    width: 100%;
    max-width: 500px;
    border: none;
}

@media (max-width: 900px) {
    .facebook-post-grid {
        grid-template-columns: 1fr;
    }
}

/* Facebook Reels Grid */

.reels-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.reel {
    display: flex;
    justify-content: center;
}

.reel iframe {
    width: 267px;
    height: 591px;
    border: none;
}

@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }

    .reel {
        justify-content: center;
    }
}
.center {
	justify-content: center;
	display: flex;
	width: 100%;
}

/* Social Media Links */
.social-links-container {
    display: flex;
    justify-content: center; 
    gap: 30px;              
    margin: 30px auto;
    width: 100%;
}
.social-link {
    display: inline-flex;
    align-items: center;    
    gap: 10px;              
    text-decoration: none;
    color: #555;            
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;
}

.social-icon {
    width: 24px;            
    height: 24px;           
    object-fit: contain;    
}

.social-link:hover {
    color: #000;            
    transform: translateY(-2px); 
}

@media (max-width: 480px) {
    .social-links-container {
        gap: 15px; 
        margin: 20px auto;
        flex-wrap: wrap; 
        padding: 0 15px;
    }

    .social-link {
        font-size: 0.9rem; 
        gap: 8px; 
    }

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

/* PDF Preview */
.pdf-preview-container {
    max-width: 850px;       
    margin: 40px auto;      
    padding: 0 20px;
}

.pdf-preview-container embed,
.pdf-preview-container iframe {
    border: 1px solid #e0e0e0;
    border-radius: 6px;     
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pdf-fallback {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    text-indent: 0 !important; 
}

.pdf-fallback a {
    color: #222;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .pdf-preview-container embed,
    .pdf-preview-container iframe {
        display: none;
    }
    
    .pdf-fallback {
        padding: 30px;
        background-color: #f9f9f9;
        border: 1px dashed #ddd;
        border-radius: 6px;
    }
}

/* 4-Product Image Grid */
.product-four-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px; 
    width: 100%;
    margin: 40px auto;
    max-width: 900px; 
}

.product-card {
    text-align: center;
    background-color: #fff;
    padding: 10px;
}

.product-card img {
    width: 100%;
    height: 400px;   
    object-fit: cover;   
    border-radius: 6px;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-top: 12px;
    text-indent: 0 !important; 
}

@media (max-width: 650px) {
    .product-four-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .product-card img {
        height: auto;
        max-height: 500px;
    }
}

/* Video Container Kickstarter */
.video-embed-container {
    max-width: 850px;  
    width: 100%;
    margin: 40px auto; 
    padding: 0 20px;
}

.video-embed-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;   
    border-radius: 6px;     
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   ABOUT ME PAGE STYLES 
   ========================================== */

#about-me-section {
    padding: 80px 10%;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;    /* Vertically aligns the center of the image and text */
    gap: 50px;              /* Adds clean space between the photo and text column */
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Column (Photo) */
.about-image {
    flex: 1;
    max-width: 400px;       /* Prevents your photo from getting too massive */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;     /* Matches your uniform rounded corner style */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); /* Soft premium shadow */
    object-fit: cover;
}

/* Right Column (Bio Text) */
.about-text {
    flex: 1.2;              /* Gives the text slightly more space than the image */
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Skills/Toolkit Section */
.skills-section {
    margin: 25px 0;
}

.skills-section h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.skills-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Splits your skills into a clean 2-column grid */
    gap: 12px;
    padding-left: 0;
}

.skills-list li {
    font-size: 0.95rem;
    color: #666;
    position: relative;
    padding-left: 18px;
}

/* Custom modern square bullet point */
.skills-list li::before {
    content: "■";
    color: #333;
    font-size: 0.65rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Call to Action Button */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s, transform 0
}

.gif-portfolio-section {
    padding: 40px 10%;
    width: 100%;
}

.gif-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual GIF Container */
.gif-item {
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.gif-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* The GIF itself */
.portfolio-gif {
    width: 100%;
    height: auto;
    display: block; 
    object-fit: cover;
}

@media (max-width: 768px) {
    .gif-container {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 10px;
    }
}

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

.video-container video {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================
   30-IMAGE GALLERY GRID
   ========================================== */

.gallery-section {
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    aspect-ratio: 1 / 1; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 30px 15px;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Clickable images */
.grid-item {
    cursor: pointer;
}
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(4px); 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ccc;
}

/* ==========================================
   Mando Image (NO CROPPING)
   ========================================== */

.feature-showcase-section {
    padding: 40px 5%;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain; 
    border-radius: 4px;
    display: block;
    cursor: pointer; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .feature-showcase-section {
        padding: 20px 10px;
    }
    
    .feature-card {
        padding: 10px;
    }
}

/* ==========================================
   DOWNLOAD RESUME BUTTON
   ========================================== */

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #222222;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    cursor: pointer;
	justify-content: center;
}

.download-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.btn-download:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-download:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .btn-download {
        padding: 10px 18px;
        font-size: 0.88rem;
        gap: 8px;
    }
    
    .download-icon {
        width: 16px;
        height: 16px;
    }
}

.btn-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    margin: 30px 0; 
}