* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #18181b;
    color: #efeff1;
}

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

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

.hero-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.guide-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guide-card {
    background-color: #24242b;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.guide-card h2 {
    color: #9147ff;
    margin-bottom: 1rem;
}

.content {
    display: none;
    margin-top: 1rem;
}

.content.active {
    display: block;
}

.content ul {
    list-style-position: inside;
    line-height: 1.6;
}

.resources {
    background-color: #24242b;
    padding: 2rem;
    border-radius: 10px;
}

.resources h2 {
    color: #9147ff;
    margin-bottom: 1rem;
}

.resources ul {
    list-style: none;
}

.resources a {
    color: #efeff1;
    text-decoration: none;
    line-height: 2;
}

.resources a:hover {
    color: #9147ff;
}

