/* Default: Dark Mode */
:root {
    --text-color: #f0f0f0;
    --card-background-color: #333;
    --card-border: 1px solid #444;
}

/* Light Mode */
.light-mode {
    --text-color: #222;
    --card-background-color: #f9f9f9;
    --card-border: 1px solid #ccc;
}

/* About Page Container */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

/* About Card Style */
.about-card {
    background-color: var(--card-background-color);
    border: var(--card-border);
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    color: var(--text-color);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

/* Section Titles */
.about-title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 10px;
}
