/* About Page Styles */

.about-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.about-header h1 {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-header .subtitle {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-header .tagline {
    color: #40b4e0;
    font-size: 1.1rem;
    font-style: italic;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section h2 {
    background: linear-gradient(90deg, #fd192a 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #40b4e0;
    padding-bottom: 0.5rem;
}

.about-section p {
    color: #1f2937;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.meaning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.meaning-card {
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #40b4e0;
    text-align: center;
}

.meaning-card h3 {
    color: #fd192a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.meaning-card p {
    color: #1f2937;
    font-size: 1rem;
}

.logo-section {
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #fd192a;
    margin-top: 1.5rem;
}

.logo-section h3 {
    color: #fd192a;
    margin-bottom: 1rem;
}

.logo-section ul {
    list-style: none;
    padding: 0;
}

.logo-section li {
    color: #1f2937;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.logo-section li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #40b4e0;
    font-weight: bold;
}

.functions-list {
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #40b4e0;
    margin-top: 1.5rem;
}

.functions-list h3 {
    color: #40b4e0;
    margin-bottom: 1rem;
}

.functions-list ul {
    list-style: none;
    padding: 0;
}

.functions-list li {
    color: #1f2937;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.functions-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffb700;
    font-weight: bold;
}
