@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Serif:wght@400;500;600;700&display=swap');

/* Belgian Government Official Style - Enhanced */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0b2f5b; /* Belgian blue (official) */
    --primary-dark: #081f3d;
    --primary-light: #164a86;
    --secondary-color: #c9a227; /* Gold accent */
    --secondary-dark: #b08b1f;
    --text-color: #1f2933;
    --muted-text: #52606d;
    --bg-color: #ffffff;
    --bg-alt: #f6f8fb;
    --light-gray: #f0f3f7;
    --medium-gray: #e1e7ef;
    --border-color: #d5dbe3;
    --hover-color: #0d3b73;
    --shadow-light: rgba(8, 15, 30, 0.06);
    --shadow-medium: rgba(8, 15, 30, 0.12);
    --shadow-dark: rgba(8, 15, 30, 0.18);
    --font-sans: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'IBM Plex Serif', 'Times New Roman', serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background:
        radial-gradient(circle at 12% 8%, rgba(11, 47, 91, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 45%);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    letter-spacing: 0.2px;
}

a {
    color: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 70%);
    color: white;
    padding: 28px 0 22px;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 6px 18px var(--shadow-medium);
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-section h1 {
    font-size: 1.85em;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.6px;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    background: rgba(255, 255, 255, 0.08);
}

.language-switcher a:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.language-switcher a.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-light);
    position: relative;
}

.page-awareness .main-nav {
    display: none;
}

.page-awareness .logo-section {
    display: none;
}

.page-awareness .header-top {
    justify-content: flex-end;
}

.page-awareness .language-switcher {
    margin-left: auto;
}
.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.nav-tabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-tabs li {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.nav-tabs li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.nav-tabs a {
    display: block;
    padding: 16px 22px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.nav-tabs a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 47, 91, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-tabs a:hover {
    background-color: var(--bg-alt);
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-tabs a:hover::before {
    opacity: 1;
}

.nav-tabs a.active {
    background: #ffffff;
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    box-shadow: inset 0 -2px 6px rgba(201, 162, 39, 0.2);
    font-weight: 700;
}

/* Main Content */
main {
    flex: 1;
    padding: 56px 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(240, 243, 247, 0.5) 100%);
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(11, 47, 91, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes fade-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    background: #ffffff;
    padding: 36px 38px;
    border-radius: 10px;
    box-shadow: 0 6px 18px var(--shadow-light);
    margin-bottom: 26px;
    border: 1px solid rgba(11, 47, 91, 0.08);
    position: relative;
    overflow: hidden;
    animation: fade-rise 520ms ease both;
}

.content-section:nth-of-type(2) {
    animation-delay: 60ms;
}

.content-section:nth-of-type(3) {
    animation-delay: 120ms;
}

.content-section:nth-of-type(4) {
    animation-delay: 180ms;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-light) 100%);
}

.content-section:hover {
    box-shadow: 0 10px 26px var(--shadow-medium);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2.05em;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.content-section p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--muted-text);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 28px 0;
    margin-top: auto;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -4px 14px var(--shadow-medium);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

footer p {
    margin: 0;
    font-size: 0.95em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 3px;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: underline;
    transform: translateY(-1px);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-logo {
        width: 60px;
        height: auto;
    }
    
    .logo-section h1 {
        font-size: 1.5em;
        text-align: center;
    }

    .page-awareness .language-switcher {
        align-self: flex-end;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tabs li {
        flex: none;
        width: 100%;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.5em;
    }
}

/* Official Badge Style */
.official-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85em;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(8, 15, 30, 0.12);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(8, 31, 61, 0.18);
}

.official-badge:hover {
    box-shadow: 0 4px 12px rgba(8, 15, 30, 0.18);
}

/* Info Boxes */
.info-box {
    background: var(--bg-alt);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 3px 10px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-light) 100%);
}

.info-box p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.info-box p:not(:last-child) {
    margin-bottom: 10px;
}

/* Legislative Document Styles */
.legislative-document .law-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 6px 18px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.legislative-document .law-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
}

.legislative-document .law-title h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.legislative-document .law-subtitle {
    font-size: 1.2em;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.legislative-document .law-section {
    margin-bottom: 40px;
}

.legislative-document .law-section h4 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    padding: 15px;
    background: var(--bg-alt);
    border-left: 6px solid var(--primary-color);
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 8px var(--shadow-light);
    position: relative;
}

.legislative-document .law-section h4::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-light) 100%);
}

.legislative-document .law-article {
    margin-bottom: 30px;
    padding: 25px;
    border-left: 4px solid var(--border-color);
    background: #ffffff;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.legislative-document .law-article:hover {
    box-shadow: 0 6px 16px var(--shadow-medium);
    border-left-color: var(--primary-color);
}

.legislative-document .law-article h5 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.03);
}

.legislative-document p {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legislative-document ul,
.legislative-document ol {
    margin-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legislative-document li {
    margin-bottom: 10px;
}

.legislative-document strong {
    color: var(--primary-color);
    font-weight: bold;
}

.legislative-document sup {
    font-size: 0.8em;
}

/* Minister's Message - Journalistic Style */
.minister-message {
    max-width: 980px;
    margin: 0 auto;
}

.minister-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 4px solid transparent;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%) bottom/100% 4px no-repeat;
}

.minister-header h2 {
    font-size: 2em;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
    border-bottom: none;
}

.minister-article {
    font-family: var(--font-sans);
}

.article-header {
    text-align: center;
    margin-bottom: 22px;
    padding: 0 0 14px;
    background: transparent;
    border-left: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.article-header::before {
    content: none;
}

.article-main-title {
    font-size: 1.85em;
    line-height: 1.35;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-sans);
}

.article-subtitle {
    font-size: 1.05em;
    color: var(--muted-text);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.article-lead {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 22px;
    padding: 0 0 0 16px;
    background: transparent;
    border-left: 3px solid var(--primary-color);
    border-radius: 0;
    font-weight: 400;
    box-shadow: none;
    position: relative;
}

.article-lead::before {
    content: none;
}

.article-lead p {
    margin: 0;
    text-align: justify;
}

.article-section {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    background: none;
}

.article-section:last-child {
    border-bottom: none;
    background: none;
}

.article-section h4 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.35;
    font-family: var(--font-sans);
    position: relative;
    padding-left: 0;
}

.article-section h4:before {
    content: none;
}

.article-section p {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
    text-align: justify;
}

.article-list {
    list-style: disc;
    margin: 16px 0 18px;
    padding-left: 22px;
}

.article-list li {
    font-size: 1.02em;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 8px;
    padding: 0;
    position: static;
    background: none;
    border-radius: 0;
    transition: none;
}

.article-list li:hover {
    background: none;
    padding-left: 0;
}

.article-list li:before {
    content: none;
}

.conclusion-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    border-left: none;
    box-shadow: none;
    position: relative;
}

.conclusion-section::before {
    content: none;
}

.conclusion-section h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 12px;
    text-shadow: none;
}

.conclusion-section p {
    font-weight: 500;
}

/* Responsive adjustments for minister's message */
@media (max-width: 768px) {
    .article-main-title {
        font-size: 1.8em;
    }
    
    .article-subtitle {
        font-size: 1.2em;
    }
    
    .article-lead {
        font-size: 1.1em;
        padding: 20px;
    }
    
    .article-section h4 {
        font-size: 1.5em;
        padding-left: 15px;
    }
    
    .article-section p {
        font-size: 1.05em;
    }
    
    .article-list li {
        font-size: 1.05em;
        padding-left: 30px;
    }
    
    .minister-header h2 {
        font-size: 1.8em;
    }
}

/* Form button styles */
.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    box-shadow: 0 4px 10px var(--shadow-dark) !important;
}

/* Progress Bar Styles */
.progress-bar-container {
    --progress-circle-size: 40px;
    --progress-padding-y: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: var(--progress-padding-y) 0;
    position: relative;
}

.progress-bar-container::before {
    content: '';
    position: absolute;
    top: calc(var(--progress-padding-y) + (var(--progress-circle-size) / 2));
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 4px;
    background-color: var(--medium-gray);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.progress-step-circle {
    width: var(--progress-circle-size);
    height: var(--progress-circle-size);
    border-radius: 50%;
    background-color: var(--medium-gray);
    color: var(--muted-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 3px solid var(--border-color);
}

.progress-step.active .progress-step-circle {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-medium);
}

.progress-step.completed .progress-step-circle {
    background-color: #1f7a3b;
    color: white;
    border-color: #1f7a3b;
}

.progress-step-label {
    font-size: 0.85rem;
    text-align: center;
    color: var(--muted-text);
    max-width: 120px;
    line-height: 1.3;
}

.progress-step.active .progress-step-label {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-step.completed .progress-step-label {
    color: #1f7a3b;
}

@media (max-width: 600px) {
    .progress-bar-container {
        --progress-circle-size: 32px;
    }

    .progress-bar-container::before {
        left: calc(100% / 6);
        right: calc(100% / 6);
    }
    
    .progress-step-circle {
        font-size: 0.85rem;
    }
    
    .progress-step-label {
        font-size: 0.75rem;
        max-width: 80px;
    }
}

/* Awareness Page Styles - Distinct Design */
.awareness-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.awareness-header {
    text-align: center;
    padding: 50px 30px 30px;
    background: linear-gradient(135deg, #eaf1f8 0%, #dbe7f2 100%);
    border-radius: 12px 12px 0 0;
    border: none;
    box-shadow: none;
}

.awareness-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.awareness-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    border: none;
    font-weight: 700;
    text-shadow: none;
}

.awareness-content {
    background: #ffffff;
    padding: 40px;
    padding-bottom: 50px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 18px var(--shadow-light);
}

.awareness-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.simulation-info {
    text-align: center;
}

.large-text {
    font-size: 1.3em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.campaign-info {
    font-size: 1.1em;
    color: var(--muted-text);
    line-height: 1.7;
}

.data-safety {
    background: linear-gradient(135deg, #f2f6fb 0%, #e6eef7 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #2a7b45;
    box-shadow: 0 2px 8px rgba(8, 15, 30, 0.08);
}

.data-safety h2 {
    color: #1f5e34;
    font-size: 1.6em;
    margin-bottom: 25px;
    border: none;
    padding: 0;
    text-shadow: none;
}

.data-safety h2::after {
    display: none;
}

.safety-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: var(--text-color);
    padding: 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.safety-item svg {
    flex-shrink: 0;
}

.why-section h2,
.tips-section h2 {
    color: var(--primary-color);
    font-size: 1.7em;
    margin-bottom: 20px;
    border: none;
    padding: 0;
    text-shadow: none;
}

.why-section h2::after,
.tips-section h2::after {
    display: none;
}

.why-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #faf4e3 0%, #fff9ec 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tips-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tips-list li::before {
    content: '🔒';
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 1.3em;
}

.learn-more {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.4em;
    font-weight: 600;
    padding: 35px;
    background: #eaf1f8;
    border-radius: 12px;
    border: 1px solid var(--primary-light);
    margin-top: 20px;
    margin-bottom: 0;
}

.learn-more p {
    margin: 0;
    line-height: 1.6;
}

.learn-more a {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: underline;
}

.awareness-actions {
    text-align: center;
    padding-top: 30px;
}

.btn-home {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--shadow-medium);
}

/* Responsive adjustments for awareness page */
@media (max-width: 768px) {
    .page-awareness .main-nav {
        display: none;
    }

    .page-awareness .awareness-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        text-align: left;
    }

    .page-awareness .awareness-icon svg {
        width: 56px;
        height: 56px;
    }

    .page-awareness .awareness-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .page-awareness .large-text {
        font-size: 1em;
    }

    .awareness-header {
        padding: 30px 20px 20px;
    }
    
    .awareness-title {
        font-size: 1.8em;
    }
    
    .awareness-content {
        padding: 25px 20px;
    }
    
    .large-text {
        font-size: 1.15em;
    }
    
    .data-safety {
        padding: 20px;
    }
    
    .safety-item {
        font-size: 1em;
    }
    
    .tips-list li {
        padding-left: 40px;
        font-size: 1em;
    }
    
    .btn-home {
        padding: 12px 30px;
        font-size: 1em;
    }
}
