/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
:root { --color-primary: #0277BD; --color-primary-light: #E1F5FE; --color-accent: #F9A825; --color-dark: #01579B; --color-text: #1C1C1C; --color-bg-alt: #F0F7FF; --font-main: 'Poppins', 'Arial', sans-serif; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-main); color: var(--color-text); background: #fff; display: flex; flex-direction: column; min-height: 100vh; font-size: 1rem; line-height: 1.7; } main { flex: 1; display: flex; flex-direction: column; } a { color: inherit; text-decoration: none; } img { max-width: 100%; height: auto; display: block; } .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; } .btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 6px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; border: none; } .btn-primary { background: var(--color-primary); color: #fff; } .btn-primary:hover { background: var(--color-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(2,119,189,0.25); } .btn-accent { background: var(--color-accent); color: #1C1C1C; } .btn-accent:hover { background: #e69100; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(249,168,37,0.3); } .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: transparent; transition: background 0.3s, box-shadow 0.3s; } .site-header.scrolled { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.09); } .header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; } .logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; transition: color 0.3s; } .site-header.scrolled .logo { color: var(--color-primary); } .main-nav { display: flex; align-items: center; gap: 1.5rem; } .main-nav a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.92); transition: color 0.2s; } .main-nav a:hover { color: var(--color-accent); } .site-header.scrolled .main-nav a { color: var(--color-text); } .site-header.scrolled .main-nav a:hover { color: var(--color-primary); } .btn-nav { background: var(--color-accent); color: #1C1C1C !important; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 700; transition: background 0.2s, transform 0.15s !important; } .btn-nav:hover { background: #e69100 !important; transform: translateY(-1px); } .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; } .burger span { display: block; width: 24px; height: 2px; background: #fff; transition: background 0.3s; border-radius: 2px; } .site-header.scrolled .burger span { background: var(--color-text); } .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--color-dark); margin-bottom: 0.5rem; } .section-sub { font-size: 1rem; color: #555; margin-bottom: 2.5rem; } .hero { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%); min-height: 48vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 1.5rem 3rem; position: relative; overflow: hidden; } .hero-deco { position: absolute; top: -40px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; } .hero-deco2 { position: absolute; bottom: -60px; left: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(249,168,37,0.08); pointer-events: none; } .hero-content { position: relative; z-index: 2; max-width: 680px; } .hero-tagline { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem; } .hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; } .hero-cta { margin-bottom: 2rem; } .hero-mini-form { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 1.25rem 1.5rem; max-width: 460px; margin: 0 auto; } .hero-mini-form p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0.75rem; font-weight: 600; } .hero-mini-form .form-row { display: flex; gap: 0.5rem; flex-wrap: wrap; } .hero-mini-form input { flex: 1; min-width: 130px; padding: 0.6rem 1rem; border: none; border-radius: 6px; font-size: 0.9rem; font-family: var(--font-main); } .hero-mini-form button { padding: 0.6rem 1.25rem; background: var(--color-accent); color: #1C1C1C; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; font-family: var(--font-main); white-space: nowrap; transition: background 0.2s; } .hero-mini-form button:hover { background: #e69100; } #about { padding: 3.5rem 0; background: var(--color-bg-alt); position: relative; } .about-header { text-align: center; margin-bottom: 2rem; } .about-timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 820px; margin: 0 auto; } .timeline-step { flex: 1; text-align: center; position: relative; padding: 0 1rem; } .timeline-step:not(:last-child)::after { content: ''; position: absolute; top: 26px; right: -1px; width: calc(100% - 52px - 0px); left: calc(52px + 0px); height: 2px; background: var(--color-primary-light); } .timeline-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 4px 14px rgba(2,119,189,0.25); } .timeline-text { font-size: 0.9rem; color: #444; line-height: 1.5; } .timeline-label { font-weight: 700; color: var(--color-dark); display: block; margin-bottom: 0.25rem; font-size: 0.95rem; } #articles { padding: 4rem 0; background: #fff; } #articles .section-title { text-align: center; } #articles .section-sub { text-align: center; } .cards-minimal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; } .article-card { border: 1px solid #e0edf6; border-radius: 12px; padding: 1.75rem 1.5rem; transition: box-shadow 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(2,119,189,0.06); display: flex; flex-direction: column; } .article-card:hover { box-shadow: 0 8px 28px rgba(2,119,189,0.14); transform: translateY(-3px); } .card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); background: var(--color-primary-light); padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.9rem; } .card-title { font-size: 1.2rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.7rem; line-height: 1.35; } .card-teaser { font-size: 0.93rem; color: #555; margin-bottom: 1.25rem; flex: 1; line-height: 1.6; } .card-link { display: inline-block; font-size: 0.9rem; font-weight: 700; color: var(--color-primary); border: 2px solid var(--color-primary); padding: 0.5rem 1.25rem; border-radius: 6px; transition: background 0.2s, color 0.2s; margin-top: auto; } .card-link:hover { background: var(--color-primary); color: #fff; } .article-card-featured { border-color: var(--color-primary); } #stats { background: var(--color-dark); padding: 2.5rem 0; } .stats-strip { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; } .stat-item { text-align: center; padding: 0.75rem 2.5rem; color: #fff; } .stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.18); } .stat-number { font-size: 2rem; font-weight: 900; color: var(--color-accent); display: block; line-height: 1; } .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; } .has-bg-image { background-size: cover; background-position: center; position: relative; } .bg-overlay { position: absolute; inset: 0; background: rgba(1,87,155,0.72); z-index: 0; } .has-bg-image > .container, .has-bg-image > * { position: relative; z-index: 1; } .pre-footer-newsletter { background: var(--color-primary-light); padding: 3rem 0; text-align: center; } .pre-footer-newsletter h2 { font-size: 1.5rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.5rem; } .pre-footer-newsletter p { color: #555; margin-bottom: 1.5rem; font-size: 0.95rem; } .newsletter-form-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; } .newsletter-form-row input { flex: 1; min-width: 160px; padding: 0.75rem 1.1rem; border: 1px solid #c5d8e8; border-radius: 6px; font-size: 0.95rem; font-family: var(--font-main); } .newsletter-form-row button { padding: 0.75rem 1.5rem; background: var(--color-primary); color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; font-family: var(--font-main); transition: background 0.2s; } .newsletter-form-row button:hover { background: var(--color-dark); } .site-footer { background: var(--color-dark); color: rgba(255,255,255,0.85); padding: 2.5rem 1.5rem 1.5rem; text-align: center; } .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; } .footer-logo a { font-size: 1.6rem; font-weight: 900; color: #fff; } .footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; } .footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s; } .footer-nav a:hover { color: var(--color-accent); } .footer-separator { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin: 0.25rem 0; } .footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.5); max-width: 640px; line-height: 1.6; } .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.5); } .page-disclaimer { background: var(--color-bg-alt); border-left: 4px solid var(--color-primary-light); padding: 1rem 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; font-size: 0.85rem; color: #666; } .article-banner { padding: 5.5rem 0 2rem; background: #fff; } .article-banner-breadcrumb { font-size: 0.82rem; color: #888; margin-bottom: 1rem; } .article-banner-breadcrumb a { color: var(--color-primary); text-decoration: underline; } .article-banner h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: var(--color-dark); line-height: 1.25; margin-bottom: 0.75rem; } .article-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: #888; align-items: center; margin-bottom: 0.5rem; } .article-meta .article-tag { background: var(--color-primary-light); color: var(--color-primary); padding: 0.2rem 0.7rem; border-radius: 20px; font-weight: 700; font-size: 0.78rem; } .article-top-image { margin: 1.5rem auto 2rem; text-align: center; } .article-top-image img { width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 10px; } .article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; } article { min-width: 0; } article h2 { font-size: 1.35rem; font-weight: 800; color: var(--color-dark); margin: 2rem 0 0.75rem; } article p { margin-bottom: 1.1rem; line-height: 1.8; } article ul, article ol { margin: 0.75rem 0 1.1rem 1.5rem; } article li { margin-bottom: 0.4rem; line-height: 1.7; } .tip-block { margin: 2rem 0; padding: 1rem 2rem; position: relative; } .tip-block::before { content: '“'; font-size: 4.5rem; line-height: 0.8; color: var(--color-primary); display: block; margin-bottom: 0.5rem; font-family: Georgia, serif; } .tip-block p { font-style: italic; font-size: 1.05rem; color: var(--color-dark); margin: 0; } .article-aside { position: sticky; top: 90px; height: fit-content; } .aside-toc { background: var(--color-bg-alt); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; } .aside-toc h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-primary); margin-bottom: 0.75rem; } .aside-toc ul { list-style: none; padding: 0; } .aside-toc li { margin-bottom: 0.4rem; } .aside-toc a { font-size: 0.88rem; color: #555; text-decoration: none; transition: color 0.2s; border-bottom: 1px solid transparent; } .aside-toc a:hover { color: var(--color-primary); } .aside-about { background: var(--color-primary); color: #fff; border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; } .aside-about h3 { font-size: 0.9rem; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; } .aside-about p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; } .aside-about a { font-size: 0.85rem; color: var(--color-accent); font-weight: 700; text-decoration: underline; } .aside-tags { background: #fff; border: 1px solid #e0edf6; border-radius: 10px; padding: 1.25rem; } .aside-tags h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-primary); margin-bottom: 0.75rem; } .tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; } .tag-pill { font-size: 0.8rem; background: var(--color-primary-light); color: var(--color-primary); padding: 0.25rem 0.75rem; border-radius: 20px; font-weight: 600; } .related-articles { margin: 2.5rem 0; } .related-articles h2 { font-size: 1.15rem; font-weight: 800; color: var(--color-dark); margin-bottom: 1.25rem; } .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } .related-card { border: 1px solid #e0edf6; border-radius: 10px; padding: 1.25rem; transition: box-shadow 0.2s, transform 0.2s; } .related-card:hover { box-shadow: 0 6px 20px rgba(2,119,189,0.12); transform: translateY(-2px); } .related-card .card-tag { font-size: 0.7rem; } .related-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.5rem; line-height: 1.35; } .related-card p { font-size: 0.85rem; color: #666; margin-bottom: 0.75rem; } .related-card a { font-size: 0.85rem; color: var(--color-primary); font-weight: 700; text-decoration: underline; } .newsletter-cta { background: linear-gradient(135deg, var(--color-primary-light), #fff); border: 1px solid #c5d8e8; border-radius: 12px; padding: 2rem; margin: 2rem 0; text-align: center; } .newsletter-cta h3 { font-size: 1.2rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.4rem; } .newsletter-cta p { font-size: 0.9rem; color: #555; margin-bottom: 1.25rem; } .newsletter-cta .newsletter-form-row { max-width: 440px; } .article-disclaimer { background: var(--color-bg-alt); border-left: 4px solid #c5d8e8; padding: 1rem 1.5rem; margin-top: 2rem; border-radius: 0 8px 8px 0; font-size: 0.83rem; color: #777; line-height: 1.7; } .success-page { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; } .success-icon { width: 72px; height: 72px; background: var(--color-primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; } .success-icon svg { width: 36px; height: 36px; } .success-page h1 { font-size: 2rem; font-weight: 900; color: var(--color-dark); margin-bottom: 0.75rem; } .success-page p { font-size: 1rem; color: #555; max-width: 440px; margin: 0 auto 2rem; } .page-404 { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5rem 1.5rem; } .num-404 { font-size: clamp(5rem, 15vw, 9rem); font-weight: 900; color: var(--color-primary-light); line-height: 1; margin-bottom: 0.5rem; } .page-404 h1 { font-size: 1.8rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.75rem; } .page-404 p { color: #666; max-width: 400px; margin: 0 auto 2rem; } .page-404-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .policy-page { padding: 6rem 0 4rem; } .policy-content { max-width: 720px; margin: 0 auto; font-family: Georgia, serif; font-size: 1rem; line-height: 1.9; } .policy-content h1 { font-family: var(--font-main); font-size: 2rem; font-weight: 900; color: var(--color-dark); margin-bottom: 0.5rem; } .policy-meta { font-size: 0.85rem; color: #888; margin-bottom: 2.5rem; font-family: var(--font-main); } .policy-content h2 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 800; color: var(--color-dark); margin: 2rem 0 0.75rem; } .policy-content p { margin-bottom: 1rem; } .policy-content ul { margin: 0.75rem 0 1rem 1.5rem; } .policy-content li { margin-bottom: 0.4rem; } .policy-content a { color: var(--color-primary); text-decoration: underline; } .policy-layout { display: grid; grid-template-columns: 1fr 240px; gap: 3rem; max-width: 1000px; margin: 0 auto; padding: 6rem 1.5rem 4rem; } .policy-sidebar { position: sticky; top: 90px; height: fit-content; } .policy-sidebar-nav { background: var(--color-bg-alt); border-radius: 10px; padding: 1.25rem; } .policy-sidebar-nav h3 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); margin-bottom: 0.75rem; } .policy-sidebar-nav ul { list-style: none; padding: 0; } .policy-sidebar-nav li { margin-bottom: 0.4rem; } .policy-sidebar-nav a { font-size: 0.88rem; color: #555; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s; } .policy-sidebar-nav a:hover { color: var(--color-primary); } .policy-main h1 { font-size: 1.9rem; font-weight: 900; color: var(--color-dark); margin-bottom: 0.5rem; font-family: var(--font-main); } .policy-main { font-family: Georgia, serif; font-size: 1rem; line-height: 1.9; } .policy-main h2 { font-family: var(--font-main); font-size: 1.15rem; font-weight: 800; color: var(--color-dark); margin: 2rem 0 0.75rem; } .policy-main p, .policy-main li { margin-bottom: 0.9rem; } .policy-main ul { margin-left: 1.5rem; } .policy-main a { color: var(--color-primary); text-decoration: underline; } .policy-block { padding: 2rem 0; border-bottom: 1px solid #e0edf6; } .policy-block:last-child { border-bottom: none; } .policy-block-num { font-size: 2.5rem; font-weight: 900; color: var(--color-primary-light); line-height: 1; margin-bottom: 0.25rem; font-family: var(--font-main); } .policy-block h2 { font-family: var(--font-main); font-size: 1.15rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.75rem; } .cookies-hero { background: var(--color-primary); padding: 5.5rem 0 2.5rem; text-align: center; } .cookies-hero h1 { font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; } .cookies-hero p { color: rgba(255,255,255,0.82); font-size: 1rem; } .cookies-blocks { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 4rem; font-family: Georgia, serif; line-height: 1.9; } .cookie-block-num { font-size: 2.5rem; font-weight: 900; color: var(--color-primary-light); line-height: 1; margin-bottom: 0.2rem; font-family: var(--font-main); } .cookie-block { padding: 1.75rem 0; border-bottom: 1px solid #e0edf6; } .cookie-block:last-child { border-bottom: none; } .cookie-block h2 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.6rem; } .cookie-block p { margin-bottom: 0.75rem; font-size: 0.97rem; color: #444; } .cookie-block a { color: var(--color-primary); text-decoration: underline; } .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-dark); color: #fff; padding: 1rem 1.5rem; z-index: 1000; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.88rem; } .cookie-banner p { color: rgba(255,255,255,0.88); margin: 0; } .cookie-banner a { color: var(--color-accent); text-decoration: underline; } .cookie-banner button { padding: 0.5rem 1.25rem; border: none; border-radius: 5px; cursor: pointer; font-weight: 700; font-family: var(--font-main); } .cookie-accept { background: var(--color-accent); color: #1C1C1C; } .cookie-close { background: rgba(255,255,255,0.15); color: #fff; } @media (max-width: 900px) { .cards-minimal-grid { grid-template-columns: 1fr; } .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } .related-grid { grid-template-columns: 1fr; } .policy-layout { grid-template-columns: 1fr; } .policy-sidebar { position: static; } .about-timeline { flex-direction: column; align-items: center; } .timeline-step:not(:last-child)::after { display: none; } .stats-strip { flex-direction: column; } .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); } } @media (max-width: 640px) { .burger { display: flex; } .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1.25rem 1.5rem; gap: 1rem; box-shadow: 0 4px 16px rgba(0,0,0,0.1); z-index: 199; } .main-nav.open { display: flex; } .main-nav a { color: var(--color-text) !important; } .hero-mini-form .form-row { flex-direction: column; } .newsletter-form-row { flex-direction: column; align-items: stretch; } }