/* ==============================
   Self-hosted fonts (Open Sans + Poppins)
   Pliki: /fonts/*.woff2 — pobrać z google-webfonts-helper
   ============================== */

/* Open Sans — body text */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/open-sans-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/open-sans-700.woff2') format('woff2');
}

/* Poppins — nagłówki h1-h6 i logo */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/poppins-700.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #006238;
    --primary-accent: #cfbe19;
    --text-dark: #1f2732;
    --text-light: #5a6b7a;
    --bg-light: #f5f6f7;
    --white: #ffffff;
    --border-light: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

html, body {
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

p, h1, h2, h3, h4, blockquote, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-accent);
}

/* Header & Navigation */
header {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--white);
    border-bottom-color: var(--primary-accent);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-accent);
    font-weight: 700;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: color 0.3s;
}

.header-phone:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .header-container {
        padding: 4px 15px 2px;
        height: auto;
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 0;
    }

    .logo {
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
    }

    .logo img {
        height: 26px;
    }

    .hamburger {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .header-phone {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        font-size: 14px;
        padding: 2px 0 0;
        margin: 0;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
        margin-top: 52px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    nav li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav.active {
        max-height: 500px;
        padding: 10px 0;
    }

    nav a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004620 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-accent);
    color: #1a1a1a;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #e5d730;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207,190,25,0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: var(--primary-accent);
    display: block;
    margin: 15px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-dark);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Attorney Section */
.attorney {
    padding: 80px 20px;
    background-color: var(--white);
}

.attorney-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.attorney-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.attorney-text h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.attorney-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.expertise-list {
    margin-top: 30px;
}

.expertise-list h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 16px;
}

.expertise-list ul {
    list-style: none;
}

.expertise-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .attorney {
        padding: 60px 20px;
    }

    .attorney-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-accent);
}

.contact-cities {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.contact-cities h4 {
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-cities p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .map-container {
        height: 280px;
    }
}

/* RODO Section */
.rodo {
    padding: 80px 20px;
    background-color: var(--white);
}

.rodo-content {
    max-width: 900px;
    margin: 0 auto;
}

.rodo-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.rodo-content p,
.rodo-content ul {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.rodo-content ul {
    list-style-position: inside;
    margin-left: 20px;
}

.rodo-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .rodo {
        padding: 60px 20px;
    }

    .rodo-content h3 {
        font-size: 18px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 20px;
    text-align: left;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-call a {
    color: var(--primary-dark);
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 768px) {
    .floating-call {
        display: flex;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-call a {
        font-size: 24px;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: min(280px, 100%);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: var(--primary-dark);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #004e2d;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.cookie-btn-reject:hover {
    background: var(--bg-light);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.cookie-btn-settings:hover {
    background: var(--bg-light);
}

.cookie-details {
    display: none;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
}

.cookie-details.show {
    display: block;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-dark);
}

.cookie-option label {
    cursor: pointer;
}

.cookie-option .cookie-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 28px;
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        text-align: center;
    }
}

/* Comprehensive Mobile Fixes */
@media (max-width: 768px) {
    .section-container {
        padding: 0 5px;
    }

    .service-card {
        padding: 20px;
    }

    .review-card-static {
        padding: 20px !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .about, .services, .attorney, .rodo {
        padding: 40px 12px;
    }

    .contact-item h4 {
        font-size: 12px;
    }

    .footer-content {
        padding: 0 5px;
    }

    footer {
        padding: 30px 12px 15px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-title {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-accent);
    font-family: 'Poppins', sans-serif;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 40px 18px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq {
        padding: 50px 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px 35px 15px 0;
    }

    .faq-category-title {
        font-size: 18px;
    }
}

/* ==============================
   Dropdown "Usługi" w nawigacji
   ============================== */

nav .has-dropdown {
    position: relative;
}

nav .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

nav .has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
    opacity: 0.7;
    transition: transform 0.2s;
}

nav .has-dropdown.open > a::after {
    transform: rotate(180deg);
}

nav .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 260px;
    background: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 101;
}

nav .has-dropdown:hover .dropdown-menu,
nav .has-dropdown.open .dropdown-menu,
nav .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav .dropdown-menu li {
    display: block;
    padding: 0;
    border: none;
}

nav .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

nav .dropdown-menu a:hover,
nav .dropdown-menu a:focus {
    background: var(--bg-light);
    color: var(--primary-dark);
    border: none;
}

/* Mobile: dropdown zamienia się w accordion */
@media (max-width: 768px) {
    nav .has-dropdown > a::after {
        margin-left: auto;
    }

    nav .has-dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav .has-dropdown.open .dropdown-menu {
        max-height: 800px;
        padding: 8px 0;
    }

    nav .dropdown-menu a {
        color: rgba(255,255,255,0.9);
        font-size: 14px;
        padding: 10px 20px 10px 35px;
    }

    nav .dropdown-menu a:hover,
    nav .dropdown-menu a:focus {
        background: rgba(255,255,255,0.05);
        color: var(--white);
    }

    nav.active {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ==============================
   Rozszerzona stopka (lista usług)
   ============================== */

footer .footer-services-list {
    columns: 2;
    column-gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .footer-services-list li {
    padding: 3px 0;
    break-inside: avoid;
}

@media (max-width: 480px) {
    footer .footer-services-list {
        columns: 1;
    }
}

/* ==============================
   Teasery usług na stronie głównej (skrócony home)
   ============================== */

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.2s, color 0.2s;
}

.service-card .service-link::after {
    content: '→';
    transition: transform 0.2s;
}

.service-card:hover .service-link {
    color: var(--primary-accent);
}

.service-card:hover .service-link::after {
    transform: translateX(3px);
}

/* ==============================
   Breadcrumbs (ścieżka nawigacyjna)
   ============================== */

.breadcrumbs {
    background: var(--bg-light);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--border-light);
}

.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==============================
   Sekcja "Zobacz również" na podstronach
   ============================== */

.see-also {
    background: var(--bg-light);
    padding: 60px 20px;
}

.see-also-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.see-also-card {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-accent);
    transition: transform 0.2s, box-shadow 0.2s;
}

.see-also-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.see-also-card h3 {
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.see-also-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==============================
   CTA box (na podstronach)
   ============================== */

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004620 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.cta-box h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-primary {
    margin: 5px;
}
