/* Container & Variables */
.fx-about-wrapper {
    --theme-color: #D50000;
    --bg-body: #f7f7f7;
    --bg-card: #ffffff;
    --text-main: #212529;
    --text-second: #071339;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    
    font-family: inherit;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-body);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.fx-about-wrapper * {
    box-sizing: border-box;
}

/* Hero Section */
.fx-about-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
}

.fx-about-hero-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(213,0,0,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.fx-about-title {
    position: relative;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-second);
    margin-top: 0;
    margin-bottom: 10px;
    z-index: 1;
}

.fx-about-brand {
    color: var(--theme-color);
}

.fx-about-subtitle {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
    z-index: 1;
}

/* Grid Layout */
.fx-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Custom Cards */
.fx-about-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fx-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.fx-about-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.fx-about-card h2 {
    font-size: 1.25rem;
    color: var(--text-second);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.fx-about-card p {
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}

/* Card Variations */
.fx-about-highlight {
    border: 2px solid var(--theme-color);
    background: rgba(213, 0, 0, 0.02);
}

.fx-about-highlight h2 {
    color: var(--theme-color);
}

.fx-about-dark {
    background: var(--text-second);
    color: #fff;
    border: none;
}

.fx-about-dark h2 {
    color: #fff;
}

.fx-about-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Section */
.fx-about-quote {
    grid-column: 1 / -1; /* Spans full width */
    background: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(213, 0, 0, 0.2);
}

.fx-about-quote p {
    margin: 0;
}
