:root {
    --primary-color: #3D5A5C;
    --secondary-color: #484D51;
    --accent-color: #FFAA00;
    --text-light: #ffffff;
    --text-muted: #808080;
    --success-green: #59B124;
}

body {
    font-family: 'Tahoma', sans-serif;
    background-color: #f8f9fa;
    color: var(--secondary-color);
}

.navbar {
    background-color: #000;
}

.navbar-brand img {
    height: 140px;
    /* Doubled size as requested */
    max-height: 180px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
    border-bottom: 5px solid var(--accent-color);
}

.card {
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.card-title {
    color: var(--success-green);
}

footer {
    background-color: #000;
    color: var(--text-muted);
    padding: 2rem 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Translation Links Styling */
.translate-links a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    border: 1px solid var(--success-green);
    color: var(--success-green);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: transparent;
}

.translate-links a:hover {
    background-color: var(--success-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #e69900;
    color: #fff;
}

.section-title {
    color: var(--success-green);
    border-bottom: 2px solid var(--success-green);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Informational Links styling */
.info-link {
    color: var(--success-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.info-link::after {
    content: ' →';
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-link:hover::after {
    transform: translateX(4px);
}