:root {
    --color-primary: #002395;
    --color-secondary: #ED2939;
    --color-accent: #1a4d8f;
    --color-dark: #0d1b2a;
    --color-dark-lighter: #1b2838;
    --color-text: #2c3e50;
    --color-text-light: #6b7c8a;
    --color-background: #f8f9fa;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Crimson Pro', Georgia, serif;
    --font-heading: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    color: #fff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    max-width: 600px;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--color-secondary);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #c41e2a;
}

.cookie-btn.reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.cookie-btn.reject:hover {
    border-color: #fff;
}

.cookie-btn.customize {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.cookie-btn.customize:hover {
    background: rgba(255,255,255,0.2);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--color-primary);
    color: #fff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--color-surface);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
    padding: 4px 10px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
    flex-grow: 1;
}

.mobile-nav-link {
    padding: 16px 20px;
    font-size: 16px;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--color-primary);
    color: #fff;
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-light);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,35,149,0.85) 0%, rgba(13,27,42,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 120px 40px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content h1 .highlight {
    color: var(--color-secondary);
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--color-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-primary:hover {
    background: #c41e2a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: #fff;
    color: #fff;
}

.intro-section {
    padding: 100px 40px;
    background: var(--color-surface);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.intro-text h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
}

.visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.visual-caption span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
}

.visual-caption p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

.features-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--color-background) 0%, #e8ecf1 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.feature-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}

.feature-link:hover::after {
    transform: translateX(4px);
}

.experience-section {
    padding: 100px 40px;
    background: var(--color-dark);
    color: #fff;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    margin-bottom: 60px;
}

.experience-header .section-label {
    color: var(--color-secondary);
}

.experience-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: #fff;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.experience-timeline {
    position: relative;
    padding-left: 60px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.timeline-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.timeline-date {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.experience-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tip-box {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tip-box h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.tip-box ul {
    list-style: none;
}

.tip-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.tip-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.quote-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.quote-box blockquote {
    font-family: var(--font-accent);
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 16px;
}

.quote-box cite {
    font-style: normal;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.tips-section {
    padding: 100px 40px;
    background: var(--color-surface);
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-header {
    text-align: center;
    margin-bottom: 60px;
}

.tips-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    position: relative;
    padding: 40px 30px 30px;
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.15;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.resources-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #e8ecf1 0%, var(--color-background) 100%);
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-header {
    text-align: center;
    margin-bottom: 60px;
}

.resources-header h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 16px;
}

.resources-header p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    color: var(--color-text);
}

.resource-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 35, 149, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.resource-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.resource-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 14px;
    color: var(--color-text-light);
    flex-grow: 1;
}

.resource-link-text {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    padding: 18px 40px;
    background: #fff;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: scale(1.05);
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.cta-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.cta-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.main-footer {
    background: var(--color-dark);
    color: #fff;
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
}

.footer-brand .logo-sub {
    font-family: var(--font-accent);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-email {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-update {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-update span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-bottom .copyright {
    color: rgba(255,255,255,0.3);
}

.page-header {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: #fff;
    text-align: center;
}

.page-header .section-label {
    color: var(--color-secondary);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-bottom: 16px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.content-section {
    padding: 80px 40px;
    background: var(--color-surface);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin: 48px 0 20px;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h3 {
    font-size: 24px;
    margin: 36px 0 16px;
}

.content-container p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    margin: 20px 0 20px 24px;
}

.content-container li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-image {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: auto;
}

.content-image figcaption {
    padding: 16px 20px;
    background: var(--color-background);
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
}

.info-box {
    padding: 24px 30px;
    background: rgba(0, 35, 149, 0.06);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.info-box.warning {
    background: rgba(237, 41, 57, 0.06);
    border-left-color: var(--color-secondary);
}

.info-box h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.info-box.warning h4 {
    color: var(--color-secondary);
}

.info-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.step-list {
    counter-reset: step;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.step-list li {
    position: relative;
    padding: 24px 24px 24px 80px;
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    counter-increment: step;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.article-nav a {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    background: var(--color-background);
    border-radius: var(--radius-md);
    transition: var(--transition);
    max-width: 48%;
}

.article-nav a:hover {
    background: var(--color-primary);
    color: #fff;
}

.article-nav a span:first-child {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.article-nav a span:last-child {
    font-weight: 600;
}

.contact-form-section {
    padding: 60px 40px;
    background: var(--color-background);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 35, 149, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.contact-method h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.privacy-content {
    padding: 60px 40px;
    background: var(--color-surface);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.privacy-container h2:first-child {
    margin-top: 0;
}

.privacy-container p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.privacy-container ul {
    margin: 16px 0 16px 24px;
}

.privacy-container li {
    margin-bottom: 8px;
}

.last-updated {
    padding: 20px 24px;
    background: var(--color-background);
    border-radius: var(--radius-md);
    margin-top: 40px;
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 14px 20px;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .intro-section,
    .features-section,
    .experience-section,
    .tips-section,
    .resources-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .intro-text h2,
    .experience-header h2,
    .tips-header h2,
    .resources-header h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 60px 20px 30px;
    }
    
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .content-section {
        padding: 50px 20px;
    }
    
    .article-nav {
        flex-direction: column;
    }
    
    .article-nav a {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 11px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .visual-image {
        height: 300px;
    }
    
    .step-list li {
        padding-left: 20px;
        padding-top: 60px;
    }
    
    .step-list li::before {
        left: 20px;
        top: 16px;
    }
}