/* Specific styles for the About page */

.about-balduran {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.6;
    color: #444;
}

.about-balduran h3 {
    font-size: 2.5rem;
    color: #121314;
    margin-bottom: 1.5rem;
    border-left: 5px solid #121314;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.manifesto-intro {
    font-size: 1.2rem;
    color: #121314;
    margin-bottom: 2rem;
}

/* Turns the bulleted list into a clean grid of cards */
.balduran-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.balduran-values li {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.balduran-values li:hover {
    transform: translateY(-3px); /* Subtle lift effect on hover */
    border-color: #121314;
}

.balduran-values strong {
    display: block;
    margin-bottom: 10px;
    color: #121314;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlights the final mission statement */
.trust-statement {
    margin-top: 40px;
    padding: 30px;
    background-color: #f1f1f1;
    border-radius: 12px;
    color: #121314;
    font-size: 1.1rem;
    border-left: 5px solid #121314;
}

/* Origin Stamp */
.origin-stamp {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #121314;
    color: #f8f9fa;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.origin-stamp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(18, 19, 20, 0.15);
}

/* SVG Flag specific styling */
.origin-stamp .flag {
    width: 22px;        /* Sets a strict width for the SVG */
    height: auto;       /* Keeps the flag proportions correct */
    margin-right: 12px; /* Spaces it out from the text */
    border-radius: 2px; /* Gives the flag very slightly softened corners */
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .about-balduran h3 {
        font-size: 1.8rem;
    }
    .about-balduran {
        padding: 40px 15px;
    }
    .trust-statement {
        padding: 20px;
        font-size: 1rem;
    }
    .origin-stamp {
        width: 100%;
        justify-content: center;
    }
}