:root {
    --bg-color: #C2DCDA;
    --second-bg-color: #e0f2ed;
    --text-color: #000000;
    --main-color: #5CB305;
    --secondary-color: #3B7502;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    min-height: 100vh;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    font-size: 25px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.navbar a {
    display: inline-block;
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
}

.lang-switches {
    display: flex;
    gap: 10px;
}

.lang-btn {
    text-decoration: none;
    padding: 8px 12px;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    color: var(--text-color);
    transition: 0.3s;
    font-size: 14px;
}

.lang-btn:hover {
    background: var(--second-bg-color);
    color: var(--main-color);
}

#menu-icon {
    font-size: 36px;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 120px;
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(92, 179, 5, 0.5);
    color: var(--secondary-color);
}

.hero h2 {
    font-size: 3.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.help-section {
    background: var(--second-bg-color);
    margin: 40px 0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

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

.help-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--main-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.help-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-card i {
    font-size: 1.8rem;
    color: var(--main-color);
}

.help-card p {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--main-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.steps-list {
    counter-reset: step-counter;
}

.expand-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(92, 179, 5, 0.4);
}

/* .steps-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 20px;
}

.steps-content.expanded {
    max-height: 1000px;
} */

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    margin-top: 60px;
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background: var(--main-color);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 25px var(--main-color);
}

/* Responsive */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 20px 3%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 3%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 20px;
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .help-section {
        padding: 20px;
    }
}
