.history-header {
    text-align: center;
    margin-bottom: 20px;
}

.history-header h1 {
    font-size: 2.5rem;
    color: #5a2d7a;
    margin-bottom: 15px;
}

.divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, #8d5ba4, transparent);
    margin: 0 auto 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    font-style: italic;
}

.section-header {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
    position: relative;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-right: 15px;
}

.highlight {
    background: linear-gradient(transparent 60%, rgba(141, 91, 164, 0.3) 40%);
}

.mystic-icon {
    font-size: 1.5rem;
    color: #8d5ba4;
}

.content-block {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #8d5ba4, #5a2d7a);
}

.float-left {
    float: left;
    width: 250px;
    margin-right: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.emphasize {
    color: #5a2d7a;
    font-weight: 500;
}

.mystic-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-left: 3px solid #8d5ba4;
    padding-left: 20px;
    margin: 30px 0;
    clear: both;
}

.quote-author {
    display: block;
    text-align: right;
    font-style: normal;
    font-size: 0.9rem;
    color: #8d5ba4;
    margin-top: 10px;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #8d5ba4, #5a2d7a);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8d5ba4;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #8d5ba4;
}

.timeline-date {
    font-weight: bold;
    color: #8d5ba4;
    margin-bottom: 10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: #5a2d7a;
    margin-bottom: 10px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.philosophy-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.philosophy-card h3 {
    color: #5a2d7a;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .float-left {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
}