/* style/no-hu.css */

/* Variables */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Deep Red */
    --dark-text-color: #333333; /* Dark gray for light backgrounds */
    --light-text-color: #FFFFFF; /* White for dark backgrounds */
    --background-light: #F8F8F8;
    --background-dark: #222222;
    --border-color: #E0E0E0;
    --card-bg: #FFFFFF;
    --button-hover-bg: #CCAA00; /* Darker gold for hover */
    --red-hover-bg: #6B0000; /* Darker red for hover */
}

.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-no-hu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Section Styling */
.page-no-hu section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-no-hu section:nth-of-type(even) {
    background-color: #f0f0f0; /* Slightly different background for alternating sections */
}

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
    color: var(--secondary-color); /* Deep Red for headings */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-no-hu h1 {
    font-size: 3em;
    color: var(--light-text-color); /* H1 in hero on dark background */
}

.page-no-hu h2 {
    font-size: 2.5em;
}

.page-no-hu h3 {
    font-size: 1.8em;
    color: var(--dark-text-color); /* Default H3 */
}

.page-no-hu p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-no-hu a {
    color: var(--secondary-color); /* Deep Red for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-no-hu a:hover {
    color: var(--primary-color); /* Gold on hover */
}

.page-no-hu .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color); /* Gold button */
    color: var(--dark-text-color); /* Dark text on gold */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-no-hu .cta-button:hover {
    background: var(--button-hover-bg); /* Darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-no-hu .btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color); /* Deep Red button */
    color: var(--light-text-color); /* White text on red */
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}