/* About Us Page Specific Styles */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-content {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.about-content h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #3498db;
    padding-bottom: 20px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro p {
    font-size: 1.1em;
    color: hwb(0 1% 99%);
    text-align: justify;
    margin-bottom: 0;
}

.emphasis-number {
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1em;
}

.about-core {
    margin: 40px 0;
}

.about-core h2 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.core-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.principle-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.principle-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.principle-icon {
    font-size: 1.2em;
}

.emphasis-people {
    color: #3498db;
}

.principle-people {
    border-left-color: #3498db;
}

.emphasis-process {
    color: #9b59b6;
}

.principle-process {
    border-left-color: #9b59b6;
}

.emphasis-purpose {
    color: #27ae60;
}

.principle-purpose {
    border-left-color: #27ae60;
}

.principle-item p {
    font-size: 1.05em;
    color: #444;
    text-align: justify;
    margin: 0;
    line-height: 1.8;
}

.principle-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.about-movement {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-radius: 10px;
    border-left: 5px solid #27ae60;
    text-align: center;
}

.movement-statement {
    font-size: 1.2em;
    color: #2c3e50;
    margin: 0;
    line-height: 1.9;
}

.emphasis-movement {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1em;
}

.emphasis-way-of-life {
    color: #27ae60;
    font-weight: 700;
    font-style: italic;
}

.emphasis-consistency {
    color: #9b59b6;
    font-weight: 700;
    font-size: 1.1em;
}

.emphasis-people-phrase {
    color: #3498db;
    font-weight: 700;
}

.change-constant-statement {
    margin-top: 20px;
    font-size: 1.05em;
    color: #2c3e50;
    text-align: center;
    font-weight: 500;
}

.emphasis-change-constant {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2em;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding: 20px 15px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .about-content h1 {
        font-size: 2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .about-core h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    
    .about-intro p {
        font-size: 1em;
        text-align: left;
    }
    
    .core-principles {
        gap: 25px;
    }
    
    .principle-item {
        padding: 25px 20px;
    }
    
    .principle-title {
        font-size: 1.5em;
    }
    
    .principle-item p {
        font-size: 1em;
    }
    
    .about-movement {
        padding: 25px 20px;
        margin-top: 35px;
    }
    
    .movement-statement {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 25px 15px;
    }
    
    .about-content h1 {
        font-size: 1.75em;
    }
    
    .about-core h2 {
        font-size: 1.4em;
    }
    
    .principle-title {
        font-size: 1.3em;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .about-movement {
        padding: 20px 15px;
    }
    
    .movement-statement {
        font-size: 1em;
    }
}
