/*
Theme Name: PZU Renata Machura Częstochowa
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066CC;
    --deep-blue: #003D82;
    --light-blue: #E6F2FF;
    --trust-green: #00A859;
    --warm-gray: #F8F9FA;
    --text-dark: #1A2332;
    --text-gray: #5A6B7D;
    --border-light: #E1E8ED;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 130, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 61, 130, 0.16);
}

body[data-theme="dark"] {
    --primary-blue: #4A9EFF;
    --deep-blue: #1A4D8F;
    --light-blue: #0A2540;
    --warm-gray: #0F1419;
    --text-dark: #E8ECF0;
    --text-gray: #A0AEC0;
    --border-light: #1E2A38;
    --white: #0A0E14;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 120px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .site-header {
    background: rgba(10, 14, 20, 0.95);
}

.header-top {
    background: var(--deep-blue);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info a,
.contact-info span {
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info a:hover, .utility-links a:hover {
    color: var(--white);
}

.working-hours {
    color: var(--text-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.working-hours span:first-child {
    font-size: 14px;
}

body[data-theme="dark"] .working-hours {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
    color: var(--text-gray);
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
}

.site-title a {
    color: var(--deep-blue);
}

.site-description {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--text-dark);
    background: rgba(26, 35, 50, 0.1);
    transform: translateY(-1px);
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: var(--text-dark);
    font-weight: 700;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--warm-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
}

.theme-toggle:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #E6F2FF 0%, #FFFFFF 50%, #E6F7F0 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #0A2540 0%, #0A0E14 50%, #0A2520 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '🛡️';
    position: absolute;
    bottom: 10%;
    right: 8%;
    font-size: 180px;
    opacity: 0.15;
    filter: grayscale(0.3) brightness(1.2);
}

body[data-theme="dark"] .hero-section::after {
    opacity: 0.25;
    filter: grayscale(0.2) brightness(1.5);
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--deep-blue);
    margin-bottom: 24px;
}

.hero-content h1 .highlight {
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.24);
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.32);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
}

.trust-indicators {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.trust-item .icon {
    font-size: 24px;
}

.services-section {
    padding: 40px 0;
    background: var(--white);
}

body[data-theme="dark"] .services-section {
    background: var(--warm-gray);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

body[data-theme="dark"] .service-card {
    background: var(--white);
    border-color: var(--border-light);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-card .btn {
    font-size: 15px;
    padding: 12px 24px;
}

.about-section {
    padding: 40px 0;
    background: var(--warm-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    margin: 40px 0;
    display: grid;
    gap: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--trust-green);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🛡️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    opacity: 0.12;
    filter: grayscale(0.5) brightness(1.3);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--light-blue);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-section .hero-buttons {
    justify-content: center;
}

.site-footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #001a3d 100%);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 20px !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.post-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.post-thumbnail {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--warm-gray);
}

.post-content {
    padding: 32px;
}

.post-meta {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 12px;
}

.post-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.post-title a {
    color: var(--deep-blue);
}

.post-title a:hover {
    color: var(--primary-blue);
}

.post-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.single-post-wrapper {
    padding-top: 120px;
}

.post-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

body[data-theme="dark"] .post-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--white) 100%);
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-category-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 24px;
}

.post-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.meta-separator {
    opacity: 0.5;
}

.post-content-wrapper {
    padding: 80px 0;
    background: var(--white);
}

body[data-theme="dark"] .post-content-wrapper {
    background: var(--warm-gray);
}

.post-main-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-featured-image {
    margin-bottom: 48px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 48px 0 24px;
    line-height: 1.3;
}

.post-content-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 36px 0 20px;
}

.post-content-text p {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.post-content-text ul,
.post-content-text ol {
    margin: 24px 0;
    padding-left: 32px;
}

.post-content-text li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-dark);
}

.post-content-text strong {
    font-weight: 700;
    color: var(--deep-blue);
}

.post-content-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.post-content-text a:hover {
    color: var(--deep-blue);
}

.post-tags {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tags .tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.post-tags a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.post-cta-box {
    margin: 64px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.post-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.post-cta-box p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.post-cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.post-cta-box .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.post-cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.post-navigation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 64px 0;
}

.post-nav-item {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s;
}

body[data-theme="dark"] .post-nav-item {
    background: var(--surface);
}

.post-nav-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
}

.post-nav-item .nav-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.post-nav-item .nav-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.4;
}

.related-posts-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid var(--border-light);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-top {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        gap: 12px;
        font-size: 12px;
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .post-navigation-box {
        grid-template-columns: 1fr;
    }
    
    .post-nav-next {
        text-align: left;
    }
    
    .post-cta-box {
        padding: 32px 24px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .single-post-wrapper {
        padding-top: 100px;
    }
    
    .contact-page-wrapper {
        padding-top: 100px;
    }
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex-shrink: 0;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-text {
    flex: 1;
}

.footer-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.footer-description {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 16px;
    max-width: 450px;
    margin: 0;
}

.trust-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 280px;
}

.trust-badge:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-color: rgba(255,255,255,0.3);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.trust-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-text {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.footer-column h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -40px -40px -40px;
    padding: 30px 40px 40px 40px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-bottom-content p:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        height: 50px;
        align-self: center;
    }
    
    .footer-title {
        font-size: 24px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .trust-badge {
        min-width: auto;
        padding: 24px;
    }
    
    .trust-icon {
        font-size: 40px;
    }
    
    .footer-bottom {
        margin: 0 -20px -20px -20px;
        padding: 20px;
    }
    
    .site-footer {
        padding: 80px 0 40px;
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

body[data-theme="dark"] .main-navigation a {
    color: var(--text-dark);
}

body[data-theme="dark"] .main-navigation a:hover,
body[data-theme="dark"] .main-navigation a:focus {
    color: var(--text-dark);
    background: rgba(232, 236, 240, 0.1);
}

body[data-theme="dark"] .main-navigation .current-menu-item a,
body[data-theme="dark"] .main-navigation .current_page_item a {
    color: var(--text-dark);
    font-weight: 700;
}

.error-404-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-gray);
}

.error-404-wrapper h1 {
    color: var(--text-dark);
    font-weight: 800;
}

.error-404-wrapper p {
    color: var(--text-gray);
    line-height: 1.6;
}

.error-404-wrapper ul li a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.error-404-wrapper ul li a:hover {
    color: var(--deep-blue);
}

body[data-theme="dark"] .error-404-wrapper {
    background: var(--warm-gray);
}

body[data-theme="dark"] .error-404-wrapper h1 {
    color: var(--text-dark);
}

body[data-theme="dark"] .error-404-wrapper p {
    color: var(--text-gray);
}

body[data-theme="dark"] .error-404-wrapper ul li a {
    color: var(--primary-blue);
}

body[data-theme="dark"] .error-404-wrapper ul li a:hover {
    color: var(--primary-blue);
}

.consent-checkbox {
    margin: 24px 0;
    padding: 16px;
    background: var(--light-blue);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}




.info-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.info-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.info-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.info-slide {
    min-width: 100%;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--trust-green));
}

.info-slide.active {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.slide-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.info-slide h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.info-slide p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.slide-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-cta:hover {
    background: linear-gradient(135deg, var(--deep-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.slide-cta:active {
    transform: translateY(0);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.nav-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

body[data-theme="dark"] .info-slide {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    border-color: var(--border-light);
}

body[data-theme="dark"] .info-slide h4 {
    color: var(--deep-blue);
}

body[data-theme="dark"] .info-slide p {
    color: var(--text-gray);
}

body[data-theme="dark"] .nav-btn {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

body[data-theme="dark"] .nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .info-slide {
        padding: 20px 16px;
    }
    
    .slide-icon {
        font-size: 40px;
    }
    
    .info-slide h4 {
        font-size: 18px;
    }
    
    .info-slide p {
        font-size: 14px;
    }
    
    .slide-features {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .slide-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .info-slide {
        padding: 24px 16px;
    }
    
    .slider-nav {
        gap: 15px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.consent-checkbox {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-blue), rgba(0, 102, 204, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.consent-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--trust-green));
}

