.about-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
}

.about-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(74, 144, 226, 0.03));
    z-index: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.about-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    position: relative;
    z-index: 1;
}

p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.join-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    border: none;
    cursor: pointer;
}

.join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, #5d4bd1, #3a7bd5);
}

.quote-box {
    background: #f9f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 0.8rem;
    font-size: 3rem;
    color: rgba(108, 92, 231, 0.2);
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-style: italic;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .about-section {
        padding: 1.8rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}