.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #ffffff;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Bowlby One SC', sans-serif;
    color: #fcd535;
}

.hero-section .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-icons {
    font-size: 2.5rem;
    color: #fcd535;
}
.hero-icons img{
    width: 80%;
    margin-top: 30px;
}

.hero-section img{
    width: 80%;
    margin-top: 30px;
}
.roadmap-section img{
    width: 100%;
}
.hero-icons i {
    margin: 0 1rem;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #fcd535;
    margin-bottom: 1rem;
}

.target-section {
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: center;
}

.target-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.target-content i {
    font-size: 3rem;
    color: #fcd535;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.features-section h2 {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.feature-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-card i {
    font-size: 2rem;
    color: #fcd535;
    margin-bottom: 1rem;
}

.token-section {
    margin-bottom: 3rem;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.token-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
}

.token-card i {
    font-size: 2rem;
    color: #fcd535;
    margin-bottom: 1rem;
}

.roadmap-section {
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partners-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.partners-row img {
    width: calc(33.33% - 1.33rem);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partners-row img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .partners-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partners-row img {
        width: 100%;
    }

    .partners-row img:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
    }
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 2rem;
    position: relative;
    border-left: 3px solid #fcd535;
    margin-bottom: 2rem;
}

.timeline-content {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    color: #fcd535;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style-type: none;
    padding: 0;
}

.timeline-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: "•";
    color: #fcd535;
    position: absolute;
    left: 0;
}

h2 {
    text-align: center;
    color: #fcd535;
    margin-bottom: 2rem;
    font-family: 'Bowlby One SC', sans-serif;
}

@media (max-width: 768px) {
    .about-content {
        padding: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .subtitle {
        font-size: 1.2rem;
    }

    .info-section,
    .features-section,
    .token-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding: 1rem;
    }
}