:root {
    --bat-yellow: #FFD700;
    --bat-accent: #e89924;
    --bat-black: #121212;
    --bat-dark-gray: #1E1E1E;
    --card-bg: #262626;
    --text-on-yellow: #000000;
    --text-on-black: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bat-black);
    color: var(--text-on-black);
    line-height: 1.6;
}

h1, h2, h3 { text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

header {
    background-color: var(--bat-black);
    padding: 15px 0;
    border-bottom: 2px solid var(--bat-yellow);
    position: sticky; top: 0; z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    color: var(--bat-yellow);
    font-weight: bold;
    text-decoration: none;
    flex: 1;
}

.social-links {
    position: absolute;        
    left: 50%;                
    transform: translateX(-50%); 
    
    
    white-space: nowrap; 
    text-align: center;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-links a:hover { color: var(--bat-yellow); }

.separator { margin: 0 10px; color: var(--bat-yellow); }

.nav-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}
.nav-link:hover { color: var(--bat-yellow); }

.btn-cta {
    background-color: var(--bat-yellow);
    color: var(--text-on-yellow);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.2s;
    display: inline-block;
}
.btn-cta:hover { transform: scale(1.05); background-color: #e6c200; }

.hero {
    background-color: var(--bat-yellow);
    color: var(--text-on-yellow);
    min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 50px 20px;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.hero-content p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 30px; font-weight: 500; }

.hero-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    display: inline-block;
}

.btn-hero {
    background: black; color: white; padding: 15px 30px;
    text-decoration: none; font-weight: bold; border-radius: 5px; font-size: 1.2rem;
    display: inline-block;
}

.about { padding: 80px 0; background-color: var(--bat-dark-gray); }
.about h2 { color: var(--bat-yellow); font-size: 2.5rem; margin-bottom: 40px; text-align: center; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bat-black); padding: 30px;
    border: 1px solid var(--bat-yellow); border-radius: 8px;
}
.feature-card h3 { color: var(--bat-yellow); margin-bottom: 15px; }

.problem { padding: 80px 0; background-color: var(--bat-black); text-align: center; }
.problem h2 { color: #fff; margin-bottom: 30px; }
.problem-text { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: #ccc; }
.highlight { color: var(--bat-yellow); font-weight: bold; }

.join { 
    background-color: var(--bat-yellow); 
    color: var(--text-on-yellow); 
    padding: 80px 0;
    scroll-margin-top: 70px;
}
.join-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.join-text { flex: 1 1 500px; margin-right: 40px; }
.join-text h2 { font-size: 3rem; margin-bottom: 20px; border-left: 10px solid var(--bat-black); padding-left: 20px; }
.sub-heading { font-size: 1.2rem; margin-bottom: 20px; }

.activities-list { list-style: none; margin-top: 20px; }
.activities-list li { margin-bottom: 15px; font-size: 1.2rem; display: flex; align-items: center; }
.activities-list li::before { content: "✔"; margin-right: 10px; font-weight: bold; }

.join-action {
    flex: 1 1 300px; background: var(--bat-black); padding: 40px;
    text-align: center; color: var(--text-on-black); border-radius: 8px; margin-top: 20px;
}
.join-action h3 { color: var(--bat-yellow); margin-bottom: 15px; }
.btn-submit {
    width: 100%; padding: 15px; background: var(--bat-yellow); border: none;
    font-weight: bold; font-size: 1.1rem; cursor: pointer; color: black; margin-top: 15px;
    transition: background-color 0.2s;
}
.btn-submit:hover {
    background-color: #e6c200;
}

.small-text { margin-top: 15px; font-size: 0.9rem; color: #ccc; }

.gallery-header {
    padding: 20px 0 10px;
    text-align: center;
    background-color: transparent;
}

.gallery-header h1 {
    color: var(--bat-yellow);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.gallery-header p {
    margin-bottom: 10px;
    margin-top: 0;
    color: #ccc;
}

.gallery-section { padding: 10px 0 50px; }

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

#map { 
    height: 500px; 
    width: 100%; 
    border-radius: 12px;
    border: 1px solid var(--bat-accent);
    margin-bottom: 15px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.photo-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bat-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 153, 36, 0.2);
    cursor: pointer;
}

.gallery-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-info {
    padding: 20px;
    background-color: var(--card-bg);
    color: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-district {
    font-size: 0.8rem;
    color: var(--bat-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-date {
    font-size: 0.85rem;
    color: #aaaaaa;
    font-family: monospace;
}

.card-street {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word; 
}

footer { background-color: var(--bat-black); color: #777; text-align: center; padding: 40px 0; border-top: 1px solid #333; }

.donate-btn {
    position: fixed;
    top: 90px;        
    right: 20px;       
    z-index: 900;
    
    background-color: var(--bat-black); 
    color: var(--bat-yellow);           
    border: 2px solid var(--bat-yellow); 

    padding: 10px 20px;
    border-radius: 30px;
    
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donate-btn:hover {
    transform: scale(1.05);
    color: #fff;
    border-color: #39ff14; 
    box-shadow: 0 0 20px #39ff14, inset 0 0 5px #39ff14; 
}
.donate-bton {
    position: fixed;
    top: 90px;        
    right: 20px;       
    z-index: 900;
    
    background-color: var(--bat-black); 
    color: var(--bat-yellow);           
    border: 2px solid var(--bat-yellow); 

    padding: 10px 20px;
    border-radius: 30px;
    
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donate-bton:hover {
    transform: scale(1.05);
    color: #fff;
    border-color: #39ff14; 
    box-shadow: 0 0 20px #39ff14, inset 0 0 5px #39ff14; 
}
.lang-switch {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px; height: 60px;
    background-color: var(--bat-yellow);
    color: black;
    border-radius: 50%;
    border: 2px solid black;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    font-weight: 900; font-size: 1.25rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    transition: transform 0.2s;
}

.lang-switch:hover {
    transform: scale(1.1);
    background-color: #e6c200;
    cursor: pointer;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex; 
    animation: fadeIn 0.3s ease-in-out;
}

.modal-box {
    background-color: #1f2235; 
    width: 100%;
    max-width: 700px;
    max-height: 90vh; 
    overflow-y: auto; 
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    text-align: left; 
}

.modal-close-btn {
    position: sticky;
    top: 15px;
    float: right;
    margin-right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.modal-close-btn:hover {
    background: var(--bat-accent);
    color: #fff;
}

.modal-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.modal-content-text {
    padding: 30px;
    color: #e0e0e0;
}

.modal-content-text h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.modal-content-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-content-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-content-text li {
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);} 
    to {opacity: 1; transform: scale(1);}
}

@media (max-width: 768px) {
    .donate-btn {
        top: 125px;         
        right: 15px;    
        bottom: auto;
        left: auto;
        padding: 6px 12px;  
        font-size: 0.75rem;  
        z-index: 999;
    }

    .nav-flex { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center;
    }
    
    .logo { display: none; }

    .social-links, .nav-right {
        flex: auto;
        width: 100%;
        justify-content: center;
    }

    .nav-right { margin-top: 10px; }
    .nav-link { margin-right: 15px; }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-logo { width: 150px; }

    .join-container { flex-direction: column; }
    .join-text h2 { font-size: 2rem; }
   
    .join {
        scroll-margin-top: 75px;
    }

    .join-text { 
        margin-right: 0; 
        margin-bottom: 0;
        padding-bottom: 0;
        max-height: 400px;
    }

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

    .join-action {
        margin-top: 10px; 
        width: 100%;
    }

    .gallery-header h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }

    .lang-switch {
        width: 50px; height: 50px;
        bottom: 15px; left: 15px;
        font-size: 0.65rem;
    }
}

@media (max-width: 1000px) {
 
    .nav-flex {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        gap: 15px;              
        padding-bottom: 10px;
    }


    .logo {
        display: block; 
        text-align: center;
        flex: auto;
        width: 100%;
        margin-bottom: 5px;
    }

    
    .social-links {
        position: static;       
        transform: none;       
        margin: 0 auto;        
        width: auto;          
    }


    .nav-right {
        width: 100%;
        justify-content: center; 
        display: flex;
        flex-wrap: wrap;       
        gap: 20px;            
        text-align: center;
    }

    .nav-link {
        margin-right: 0;      
    }

 
    .donate-btn {
        top: 200px;             
        right: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
        z-index: 900;
    }
    
   
    .hero-content h1 { font-size: 2.8rem; }
    
    .join-container { flex-direction: column; }
    .join-text { margin-right: 0; }
    
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(45%, 1fr)); }
}

@media (max-width: 600px) {
   
    .gallery-grid { grid-template-columns: 1fr; }
    
    .hero-content h1 { font-size: 2rem; }
}

#socialModal .modal-content {
    background-color: var(--card-bg);
    border: 2px solid var(--bat-yellow);

    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
  
    max-width: 350px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease-out;
}

#socialModal h3 {
    color: var(--bat-yellow);
   
    margin-bottom: 8px;
    font-size: 1.5rem;
}

#socialModal p {
    color: #e0e0e0;
 
    margin-bottom: 25px;
    font-size: 1rem;
}

#socialModal .close-btn {
    position: absolute;

    top: 8px;
    right: 12px;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

#socialModal .close-btn:hover {
    color: var(--bat-yellow);
}

.modal-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
  
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    overflow: hidden; 
}

.social-circle img {

    width: 100%;
    height: 100%;
   
    object-fit: cover;
    display: block;
}

.social-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}


.partners-section {
    padding: 40px 0 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
}

.partners-section {
    padding: 40px 0 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
}

.partners-section h2 {
    color: var(--bat-yellow);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--bat-accent);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: var(--bat-yellow);
    box-shadow: 0 5px 20px rgba(232, 153, 36, 0.15);
}

.partner-logo-link {
    flex: 0 0 auto;
    margin-right: 25px;
    text-decoration: none;
    display: block;
}

.partner-logo {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #ddd;
}

.partner-logo:hover {
    transform: scale(1.02);
    border-color: var(--bat-yellow);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-info {
    flex: 1;
    color: #e0e0e0;
}

.partner-info h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.partner-title-link {
    color: var(--bat-yellow);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    transition: color 0.2s;
}

.partner-title-link:hover {
    color: #fff;
    text-decoration: underline;
}

.partner-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #cccccc;
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .partner-logo-link {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .partner-logo {
        width: 140px;
        height: 140px;
    }
}

.list-divider {
    text-align: center;
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--bat-yellow); 
    text-transform: uppercase;
    margin-top: 60px;  
    margin-bottom: 30px; 
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.list-divider::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;  
    background-color: var(--bat-accent);
    margin: 15px auto 0; 
    border-radius: 2px;
}

@media (max-width: 768px) {
    .list-divider {
        font-size: 2rem;
        margin-top: 40px;
    }
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--bat-yellow) var(--bat-black);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bat-black);
}

::-webkit-scrollbar-thumb {
    background-color: var(--bat-yellow);
    border-radius: 10px;
    border: 3px solid var(--bat-black);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--bat-accent);
}



.left-maps-nav {
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 890;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.map-pill-btn {
    background-color: var(--bat-black);
    border: 2px solid var(--bat-yellow);
    border-radius: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
    max-width: 160px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    min-width: 24px;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--bat-yellow);
    fill: none;
    transition: stroke 0.3s;
}

.btn-text {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    color: #fff;
    transition: color 0.3s;
}

.map-pill-btn:hover {
    transform: translateY(-2px);
    background-color: var(--bat-yellow);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.map-pill-btn:hover .icon-box svg {
    stroke: var(--bat-black);
}

.map-pill-btn:hover .btn-text {
    color: var(--bat-black);
}

@media (max-width: 1000px) {
    .left-maps-nav {
        top: 200px;
    }
      .donate-bton {
    position: fixed;
    bottom: 20px;       
    right: 20px;        
    left: auto;         
    z-index: 1000;      
    background-color: var(--bat-black); 
    color: var(--bat-yellow);           
    border: 2px solid var(--bat-yellow); 
	top: auto;
    padding: 10px 20px;
    border-radius: 30px;
    
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;    
    
    
}
}

@media (max-width: 768px) {
    .donate-bton {
    position: fixed;
    bottom: 20px;       
    right: 20px;        
    left: auto;         
    z-index: 1000;      
    background-color: var(--bat-black); 
    color: var(--bat-yellow);           
    border: 2px solid var(--bat-yellow); 
	top: auto;
    padding: 10px 20px;
    border-radius: 30px;
    
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;    
    
    
}
    .left-maps-nav {
        flex-direction: column;
        top: 200px;
        left: 10px;
        gap: 10px;
    }

    .map-pill-btn {
        padding: 8px 14px;
        border-radius: 25px;
        border-width: 1px;
        background-color: var(--bat-black);
    }

    .icon-box svg {
        width: 22px;
        height: 22px;
    }
    
    .icon-box {
        margin-right: 8px;
        min-width: 22px;
    }

    .btn-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}
@media (max-width: 380px) {
      .donate-bton {
    position: fixed;
    bottom: 20px;       
    right: 20px;        
    left: auto;         
    z-index: 1000;      
    background-color: var(--bat-black); 
    color: var(--bat-yellow);           
    border: 2px solid var(--bat-yellow); 
	top: auto;
    padding: 10px 20px;
    border-radius: 30px;
    
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;  
    
    
}
    .left-maps-nav {
        flex-direction: column;
        gap: 5px;
        top: 120px;
    }
    
    .map-pill-btn {
        width: fit-content;
    }
}

/* =========================================
   СТИЛІ ДЛЯ СТОРІНКИ "ПРО НАС" (about.html)
   ========================================= */

/* Використовуємо фірмові кольори через змінні */
.page-about main {
    padding-top: 100px;
    background-color: var(--bat-black);
    color: var(--bat-yellow);
}

.section-heading {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--bat-yellow);
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--bat-yellow);
    line-height: 1.6;
    opacity: 0.9;
}

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

/* Секція "Як ми працюємо" */
.how-we-work {
    padding: 60px 0;
    background-color: var(--bat-black);
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bat-yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); 
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--bat-yellow);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bat-yellow);
    opacity: 0.85; 
}

.step-image {
    flex: 1;
    width: 100%;
}

/* Стиль для реальних фото (Як ми працюємо) */
.step-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Темна тінь для глибини */
    border: 1px solid var(--bat-accent);
    object-fit: cover;
}

/* Секція "Історія команди" */
.team-history {
    background-color: var(--bat-dark-gray); /* Для контрасту з основним чорним */
    color: var(--bat-yellow);
    padding: 80px 0;
    border-top: 1px solid var(--bat-accent); /* Акцентна лінія */
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--bat-yellow);
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--bat-yellow);
    opacity: 0.85;
}

.history-text strong {
    color: var(--bat-yellow);
    opacity: 1;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}

.history-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Стилі для фотографій в історії */
.history-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--bat-accent);
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 992px) {
    .process-step, .process-step.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .history-text {
        text-align: center;
    }
}

/* =========================================
   КНОПКА "ДОВІДНИК"
   ========================================= */
.guide-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--bat-yellow);
    color: var(--bat-black);
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid black;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px; /* Відступ між іконкою та текстом */
}

.guide-btn:hover {
    transform: scale(1.05);
    background-color: #e6c200;
    cursor: pointer;
}

/* Адаптивність для мобільних екранів (лише зменшення розміру) */
@media (max-width: 768px) {
    .guide-btn {
        bottom: 15px; 
        right: 15px; 
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}