/* ===========================================
   ZMIENNE CSS I RESETOWANIE
   =========================================== */
:root {
    /* Polish flag colors */
    --polish-red: #9B2335;
    --polish-white: #FFFFFF;
    
    /* Irish colors */
    --irish-green: #1E7F5C;
    --irish-white: #FFFFFF;
    
    /* Accent and background colors */
    --accent-blue: #176E4A;
    --bg-cream: #FFFAF0;
    --text-dark: #333333;
    --text-medium: #555555;
    
    /* Font families */
    --heading-font: 'Lato', sans-serif;
    --body-font: 'Noto Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px;
}

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

a {
    text-decoration: none;
    color: var(--irish-green);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-blue);
}

a:focus, button:focus, [role="button"]:focus {
    outline: none;
}

/* Copyable Email */
.copyable-email {
    color: var(--irish-green);
    cursor: pointer;
    position: relative;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s;
    display: inline-block;
}

.copyable-email:hover {
    background-color: rgba(30, 127, 92, 0.1);
    color: var(--accent-blue);
}

.email-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: var(--text-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background-color 0.3s;
    z-index: 99999;
}

.copyable-email:hover .email-tooltip {
    opacity: 1;
}

.email-tooltip.show {
    opacity: 1;
    background-color: var(--irish-green);
}

.copyable-email.copied .email-tooltip {
    background-color: var(--irish-green);
    opacity: 1;
}

.copyable-email.copied {
    background-color: rgba(30, 127, 92, 0.15);
}

/* ===========================================
   TYPOGRAFIA
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    color: white;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 20px;
}

/* ===========================================
   KONTENER I TŁO
   =========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Backgrounds with subtle stamp patterns */
.bg-subtle-pattern {
    position: relative;
    overflow: hidden;
}

.bg-subtle-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill-opacity='0.03'%3E%3Cpath fill='%239B2335' d='M50,0 C77.6,0 100,22.4 100,50 C100,77.6 77.6,100 50,100 C22.4,100 0,77.6 0,50 C0,22.4 22.4,0 50,0 Z M50,10 C27.9,10 10,27.9 10,50 C10,72.1 27.9,90 50,90 C72.1,90 90,72.1 90,50 C90,27.9 72.1,10 50,10 Z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: -1;
}

.bg-subtle-pattern.green::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill-opacity='0.03'%3E%3Cpath fill='%231E7F5C' d='M50,0 C77.6,0 100,22.4 100,50 C100,77.6 77.6,100 50,100 C22.4,100 0,77.6 0,50 C0,22.4 22.4,0 50,0 Z M50,10 C27.9,10 10,27.9 10,50 C10,72.1 27.9,90 50,90 C72.1,90 90,72.1 90,50 C90,27.9 72.1,10 50,10 Z'/%3E%3C/svg%3E");
}

/* ===========================================
   PRZYCISKI
   =========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill-opacity='0.1'%3E%3Cpath fill='%23FFFFFF' d='M20,0 L80,0 L100,20 L100,80 L80,100 L20,100 L0,80 L0,20 Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 0.2;
}

.btn-primary {
    background-color: var(--polish-red);
    color: white;
    box-shadow: 0 4px 10px rgba(155, 35, 53, 0.3);
}

.btn-primary:hover {
    background-color: #801c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(155, 35, 53, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
   background-color: rgba(255, 255, 255, 0.1);
   transform: translateY(-2px);
   color: var(--polish-red);
}

/* ===========================================
   HEADER I NAWIGACJA
   =========================================== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 900;
}

.logo-text a {
    text-decoration: none;
}

.logo-text .stamp {
    color: var(--irish-green);
}

.logo-text .elek {
    color: var(--polish-red);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--irish-green);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--irish-green);
}

nav ul li a.active {
    color: var(--polish-red);
}

nav ul li a.active::after {
    width: 100%;
    background-color: var(--polish-red);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 30px;
    cursor: pointer;
    position: relative;
}

.lang-switch-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    min-width: 80px;
    display: none;
    flex-direction: column;
    z-index: 10;
}

.lang-switch-options.active {
    display: flex;
}

.lang-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.lang-option.pl {
    color: var(--polish-red);
    font-weight: 700;
}

.lang-option.en {
    color: var(--irish-green);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    background: linear-gradient(rgba(155, 35, 53, 0.8), rgba(30, 127, 92, 0.8)), #1a1a1a;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero .container {
    max-width: 1280px;
}

.hero h1 {
    margin-bottom: 10px;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===========================================
   PAGE TITLE (dla podstron: cennik, kontakt, itp)
   =========================================== */
.page-title {
    background: linear-gradient(rgba(155, 35, 53, 0.8), rgba(30, 127, 92, 0.8)), #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===========================================
   PROCESS SECTION
   =========================================== */
.process {
    padding: 60px 0;
    background-color: #f9f6f2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--polish-red);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--polish-red), var(--irish-green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-medium);
    max-width: 700px;
    margin: 15px auto 0;
}

.process-content p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px; /* ORYGINALNA SZEROKOŚĆ */
    margin: 40px auto 0;
    flex-wrap: nowrap; /* Zawsze poziomo na dużych ekranach */
}

.process-step-horizontal {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    flex: 1 1 0; /* Równe szerokości */
    min-width: 250px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-top 0.3s;
    border-top: 4px solid transparent;
    margin: 10px;
    max-width: 320px; /* ORYGINALNA SZEROKOŚĆ */
    min-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-top: 25px;
}

.process-step-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top-color: var(--irish-green);
}


.process-arrow {
    color: var(--irish-green);
    font-size: 2rem;
    margin: 0 10px;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-icon {
    text-align: center;
    font-size: 2.5rem;
    color: var(--irish-green);
    margin-bottom: 15px;
    margin-top: 0px;
}

.process-step-horizontal .process-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step-horizontal h3 {
    color: var(--polish-red);
    margin-bottom: 20px;
    text-align: center;
}

.process-step-horizontal .process-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ===========================================
   ACCEPT SECTION
   =========================================== */
.accept {
    padding: 40px 0 60px;
    background-color: #f8f8f8;
}

.accept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.accept-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.accept-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.accept-image .btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.accept-image .btn:hover {
    transform: translate(-50%, -2px);
}

.accept-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--polish-red);
    margin-bottom: 25px;
}

.accept-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

/* Larger font for section content */
.accept-content p,
.locations-content p,
.process-content p,
.service-content p,
.benefit p {
    font-size: 18px;
    line-height: 1.7;
}

/* ===========================================
   BENEFITS SECTION
   =========================================== */
.benefits-section {
    padding: 60px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; /* 2 wiersze */
    gap: 30px;
    margin-top: 30px;
}

.benefits-column {
    display: contents; /* Usuwa wrapper, dzieci idą bezpośrednio do grid */
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid var(--irish-green);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--irish-green);
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-card h3 {
    color: var(--polish-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.benefit-card h3 .benefit-icon {
    margin-bottom: 0;
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services {
    padding: 60px 0;
}

.services-tabs-container {
    margin-top: 40px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.service-tab {
    background-color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 15px 25px;
    cursor: pointer;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tab i {
    font-size: 1.5rem;
    color: var(--irish-green);
}

.service-tab span {
    padding: 0 5px;
}

.service-tab:hover:not(.active) {
    background-color: #f5f5f5;
}

.service-tab.active {
    color: var(--polish-red);
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.service-tab-content {
    display: none;
    background-color: white;
    padding: 30px;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-tab-content.active {
    display: block;
}

.service-tab-text {
    padding: 20px;
}

.service-tab-text h3 {
    color: var(--polish-red);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-tab-text p {
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--irish-green);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.service-link::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.service-link:hover::after {
    margin-left: 10px;
}

/* ===========================================
   LOCATIONS SECTION
   =========================================== */
.locations {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.locations-content h2 {
    color: var(--polish-red);
    margin-bottom: 25px;
}

.locations-content p {
    margin-bottom: 20px;
}

.locations-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

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

.locations-map .btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.locations-map .btn:hover {
    transform: translate(-50%, -2px);
}

.all-locations {
    padding: 40px 0;
    background-color: white;
}

.all-locations h3 {
    text-align: center;
    color: var(--irish-green);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.location-tag {
    background-color: var(--polish-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.location-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill-opacity='0.1'%3E%3Cpath fill='%23FFFFFF' d='M10,0 C15.5,0 20,4.5 20,10 C20,15.5 15.5,20 10,20 C4.5,20 0,15.5 0,10 C0,4.5 4.5,0 10,0 Z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: repeat;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.location-tag:hover {
    background-color: var(--irish-green);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-tag:hover::before {
    opacity: 1;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 15px;
}

.footer-column p a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-column p a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--irish-green);
}

.footer-links {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -15px;
    color: #555;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* ===========================================
   COOKIE POPUP - SIMPLIFIED
   =========================================== */
/* ===========================================
   COOKIE BANNER - DYSKRETNY PASEK U DOŁU
   =========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--irish-green);
    display: block !important;
    visibility: visible !important;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-banner-icon {
    font-size: 2rem;
    color: var(--irish-green);
    flex-shrink: 0;
}

.cookie-banner-message {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-message strong {
    color: var(--polish-red);
    font-weight: 700;
}

.cookie-banner-link {
    color: var(--irish-green);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.cookie-banner-link:hover {
    color: var(--accent-blue);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: var(--body-font);
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.cookie-banner-btn.primary {
    background-color: var(--polish-red);
    color: white;
    box-shadow: 0 3px 8px rgba(155, 35, 53, 0.3);
}

.cookie-banner-btn.primary:hover {
    background-color: #801c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(155, 35, 53, 0.4);
}

.cookie-banner-btn.secondary {
    background-color: transparent;
    color: var(--irish-green);
    border: 2px solid var(--irish-green);
}

.cookie-banner-btn.secondary:hover {
    background-color: var(--irish-green);
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-banner-icon {
        font-size: 1.5rem;
    }
    
    .cookie-banner-message {
        font-size: 0.9rem;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-banner-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ===========================================
   RESPONSYWNOŚĆ
   =========================================== */

/* Tablet i mniejsze (992px) */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto; /* Jeden wiersz */
    }
    
    .service-tab-content {
        grid-template-columns: 1fr;
    }
    
    .service-tab-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .accept-grid, .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .accept-image, .locations-map {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobilne (768px) */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        width: 100%;
        display: none;
        margin-top: 20px;
        transition: all 0.3s ease;
    }
    
    nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active {
        color: #9b2335;
    }
    
    .services-tabs {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    
    .service-tab {
        width: 100%;
        justify-content: flex-start;
        border-radius: 4px;
        padding: 12px 15px;
    }
}

/* Process steps - pionowo tylko na małych ekranach (900px i mniej) */
@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .process-step-horizontal {
        width: 90%;
        max-width: 600px;
        margin: 15px 0;
        min-height: auto;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Mobilne (768px) - pozostałe style */
@media (max-width: 768px) {
    
    .service-tab-content {
        border-radius: 4px;
        margin-top: 10px;
    }
    
    .service-tab-text {
        padding: 15px;
    }

    .cookie-popup-container {
        max-width: 90%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Bardzo małe ekrany (480px) */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

/* ===========================================
   CENNIK - STYLE SPECYFICZNE
   =========================================== */

/* Price Content */
.price-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.price-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.price-main {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-intro {
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.price-section {
    margin-bottom: 40px;
    position: relative;
}

.price-section h2 {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.price-section h2 i {
    margin-right: 10px;
    color: var(--polish-red);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: #f9f9f9;
}

.price-description {
    flex: 1;
    font-size: 1.05rem;
}

.price-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--polish-red);
    text-align: right;
    min-width: 100px;
}

.price-list {
    margin-bottom: 0;
}

/* Sidebar Styles */
.price-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.discount-box, .delivery-box, .invoice-box, .cta-box {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.discount-box h3, .delivery-box h3, .invoice-box h3, .cta-box h3 {
    color: var(--polish-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.discount-box h3 i, .delivery-box h3 i, .invoice-box h3 i, .cta-box h3 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.discount-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.discount-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.delivery-box p, .invoice-box p {
    margin-bottom: 10px;
}

.delivery-box p:last-child, .invoice-box p:last-child {
    margin-bottom: 0;
}

.cta-box {
    text-align: center;
    background-color: #f8f8f8;
    border-left: 4px solid var(--irish-green);
}

.cta-box p {
    margin-bottom: 20px;
}

/* Responsywność dla cennika */
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .price-main {
        padding: 20px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-value {
        text-align: left;
    }
}

/* ===========================================
   KONTAKT - STYLE SPECYFICZNE
   =========================================== */

/* Contact Content Styles */
.contact-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-top-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-message {
    flex: 1;
    margin-bottom: 20px;
}

.contact-image-wrapper {
    width: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-image-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

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

.contact-image-btn {
    display: block;
    text-align: center;
    background-color: var(--polish-red);
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(155, 35, 53, 0.3);
}

.contact-image-btn:hover {
    background-color: #801c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(155, 35, 53, 0.4);
}

.contact-message p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-message p:last-child {
    margin-bottom: 0;
}

.contact-message p strong {
    color: var(--polish-red);
    font-weight: 600;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 127, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--irish-green);
    font-size: 1.5rem;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--irish-green);
}

.method-details p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.method-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

a.method-value:hover {
    color: var(--polish-red);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-box, .social-box {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-box h3, .social-box h3 {
    color: var(--polish-red);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.faq-box h3 i, .social-box h3 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--irish-green);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 0;
}

.btn-link {
    display: inline-block;
    color: var(--polish-red);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--irish-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: #e9e9e9;
    transform: translateY(-2px);
    color: var(--irish-green);
}

.social-link i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Responsywność dla kontakt */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-top-section {
        flex-direction: column;
    }
    
    .contact-image-wrapper {
        width: 100%;
        margin-bottom: 20px;
        order: -1;
    }
    
    .contact-image-container {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .method-icon {
        margin-bottom: 15px;
    }
    
    .contact-card, .faq-box, .social-box {
        padding: 20px;
    }
}

/* ===========================================
   O MNIE - STYLE SPECYFICZNE
   =========================================== */

/* About Me Styles */
.about-me-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-me-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-me-text {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.welcome-section {
    margin-bottom: 30px;
}

.career-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.career-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.career-section h2 {
    font-size: 1.5rem;
    color: var(--polish-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.career-section h2 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.career-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.career-section p:last-child {
    margin-bottom: 0;
}

.career-section p strong, .career-section p b {
    color: var(--text-dark);
    font-weight: 700;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-dark);
    text-align: right;
}

/* Career Images */
.career-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.career-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.career-image:hover img {
    transform: scale(1.05);
}

/* Sidebar Styles */
.about-me-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.credentials {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.credentials h3 {
    font-size: 1.3rem;
    color: var(--polish-red);
    margin-bottom: 20px;
}

.credentials ul {
    list-style: none;
}

.credentials ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-medium);
    font-size: 1rem;
}

.credentials ul li i {
    color: var(--irish-green);
    min-width: 20px;
    margin-top: 3px;
}

/* Responsywność dla o-mnie */
@media (max-width: 992px) {
    .about-me-grid {
        grid-template-columns: 1fr;
    }
    
    .about-me-sidebar {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-me-text {
        padding: 20px;
    }
    
    .career-section h2 {
        font-size: 1.3rem;
    }
    
    .career-section p {
        font-size: 1rem;
    }
}

/* ===========================================
   POLITYKI (COOKIES I PRYWATNOŚCI)
   =========================================== */

/* Policy Content Styles */
.cookies-content, .privacy-content {
    padding: 60px 0;
    background-color: #f9f9f9;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookies-container, .privacy-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.last-updated {
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 4px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 0.9rem;
    display: inline-block;
}

.cookies-introduction, .privacy-introduction {
    margin-bottom: 30px;
}

.cookies-section, .privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookies-section:last-child, .privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cookies-section h2, .privacy-section h2 {
    font-size: 1.8rem;
    color: var(--polish-red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookies-section h3, .privacy-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookies-section p, .privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 15px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookies-section ul, .cookies-section ol,
.privacy-section ul, .privacy-section ol {
    margin: 15px 0 20px 20px;
    color: var(--text-medium);
}

.cookies-section li, .privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookies-section strong, .privacy-section strong {
    color: var(--text-dark);
}

/* Cookie/Privacy Tables */
.cookie-table, .privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    overflow-x: auto;
    display: block;
}

.cookie-table table, .privacy-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th, .privacy-table th {
    background-color: #f5f5f5;
    text-align: left;
    padding: 12px 15px;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.cookie-table td, .privacy-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    color: var(--text-medium);
}

.cookie-table tr:nth-child(even), .privacy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Table of Contents */
.toc {
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.toc h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--polish-red);
}

.toc ul {
    list-style: none;
    margin: 0;
}

.toc ul li {
    margin-bottom: 8px;
}

.toc ul li a {
    color: var(--irish-green);
    text-decoration: none;
    transition: color 0.3s;
}

.toc ul li a:hover {
    color: var(--polish-red);
    text-decoration: underline;
}

.disable-cookies ul {
    list-style: none;
    padding: 0;
}

.disable-cookies ul li {
    margin-bottom: 10px;
}

.disable-cookies ul li a {
    color: var(--irish-green);
    font-weight: 600;
}

.cookie-contact {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid var(--irish-green);
}

/* Responsywność dla polityk */
@media (max-width: 768px) {
    .cookies-container, .privacy-container {
        padding: 20px;
    }
    
    .cookies-section h2, .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .cookies-section p, .privacy-section p {
        font-size: 1rem;
    }
    
    .cookie-table, .privacy-table {
        font-size: 0.9rem;
    }
}

/* ===========================================
   USŁUGI - STYLE SPECYFICZNE
   =========================================== */

/* Services Intro */
.services-intro {
    padding: 60px 0 15px;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Services Navigation */
.services-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    z-index: 90;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.service-nav-item i {
    font-size: 1.2rem;
    color: var(--irish-green);
}

.service-nav-item:hover {
    background-color: #e9e9e9;
    transform: translateY(-2px);
}

.service-nav-item.active {
    background-color: var(--polish-red);
    color: white;
}

.service-nav-item.active i {
    color: white;
}

/* Services Content */
.services-content {
    padding: 30px 0 60px;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    scroll-margin-top: 150px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f5f5f5;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--polish-red);
    min-width: 60px;
    text-align: center;
}

.service-header h2 {
    margin-bottom: 0;
    font-size: 2rem;
    color: var(--polish-red);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.service-text {
    flex: 1;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.service-image {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-examples {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.service-examples h3 {
    font-size: 1.3rem;
    color: var(--irish-green);
    margin-bottom: 15px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.example-item {
    padding: 12px;
    background-color: white;
    border-radius: 4px;
    border-left: 3px solid var(--irish-green);
    transition: transform 0.3s;
}

.example-item:hover {
    transform: translateX(5px);
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.service-cta p {
    margin: 0;
    font-weight: 600;
}

/* Services CTA Section */
.services-cta {
    padding: 60px 0;
    background-color: var(--irish-green);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.services-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsywność dla usługi */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 10px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
        margin: 0 0 20px 0;
    }
    
    .services-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================================
   ZLECENIE - STYLE SPECYFICZNE
   =========================================== */

/* Order Content Layout */
.order-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.order-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.order-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-sidebar h3 {
    font-size: 1.3rem;
    color: var(--polish-red);
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.order-sidebar h3 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.order-info-box {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-info-box h3 {
    font-size: 1.3rem;
    color: var(--polish-red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--irish-green);
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 3px;
}

.benefits-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.benefits-box h3 {
    font-size: 1.3rem;
    color: var(--polish-red);
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.benefits-box h3 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.benefits-box .faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.benefits-box .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefits-box .faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--irish-green);
}

.benefits-box .faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Instruction Card */
.instruction-card,
.order-process {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.instruction-card h2,
.order-process h2 {
    font-size: 1.8rem;
    color: var(--polish-red);
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.instruction-card h2 i,
.order-process h2 i {
    margin-right: 10px;
    color: var(--irish-green);
}

.instruction-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.instruction-text p {
    margin-bottom: 20px;
}

.instruction-text strong {
    color: var(--polish-red);
    font-weight: 700;
}

/* Email Highlight */
.email-highlight {
    background-color: #f9f9f9;
    border-left: 4px solid var(--irish-green);
    padding: 15px 20px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.email-highlight span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.copy-btn {
    background-color: var(--irish-green);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    background-color: #1a6b4e;
    transform: translateY(-2px);
}

.copy-btn.copied {
    background-color: #4CAF50;
}

/* Order Process Steps (zlecenie.html) */
.order-process .process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-process .process-step {
    display: flex;
    gap: 20px;
    position: relative;
}

.order-process .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: #f0f0f0;
}

.order-process .step-number {
    background-color: var(--polish-red);
    color: white;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

.order-process .step-content {
    flex: 1;
}

.order-process .step-content h3 {
    font-size: 1.3rem;
    color: var(--polish-red);
    margin-bottom: 10px;
    margin-top: 0;
}

.order-process .step-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Responsywność dla zlecenie */
@media (max-width: 992px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
    
    .order-sidebar {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .order-main {
        padding: 20px;
    }
    
    .order-process .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-process .process-step:not(:last-child)::after {
        display: none;
    }
    
    .email-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .copy-btn {
        align-self: stretch;
        justify-content: center;
    }
}


/* ===========================================
   REGULAMIN - STYLE SPECYFICZNE
   =========================================== */

/* Terms Content (używa tych samych stylów co polityki) */
.terms-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.terms-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-introduction {
    margin-bottom: 30px;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.terms-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: var(--polish-red);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.terms-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.terms-section ul, .terms-section ol {
    margin: 15px 0 20px 20px;
    color: var(--text-medium);
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-section strong {
    color: var(--text-dark);
}

/* Responsywność dla regulaminu */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section p {
        font-size: 1rem;
    }
}



/* ===========================================
   WHATSAPP ICON STYLING
   =========================================== */
/* WhatsApp Icon - Green color */
a[href*="wa.me"] .fa-whatsapp {
    color: #25D366;
    margin-right: 5px;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Icon grows on hover */
a[href*="wa.me"]:hover .fa-whatsapp {
    transform: scale(1.2);
}

/* Link color changes to green on hover */
a[href*="wa.me"] {
    transition: color 0.3s ease;
}

a[href*="wa.me"]:hover {
    color: #25D366;
}

/* Email and WhatsApp icons in footer */
.footer-column .fa-envelope {
    color: #1E7F5C;
    margin-right: 8px;
    font-size: 1.1em;
}

.footer-column .fa-whatsapp {
    font-size: 1.1em;
}
