/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2E8B57 0%, #1E6FA8 100%);
    box-shadow: 0 8px 32px rgba(46, 139, 87, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-icon {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E8B57 0%, #1E6FA8 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    margin-top: 2rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-select {
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.search-select:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.3);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(238, 90, 36, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-icon {
    font-size: 6rem;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    border-radius: 2px;
}

/* Featured Categories */
.featured-categories {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* Featured Cities */
.featured-cities {
    padding: 4rem 0;
    background: #f8f9fa;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.city-card.coming-soon {
    opacity: 0.7;
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.city-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.city-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.city-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
}

.city-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Wet Food CTA */
.wet-food-cta {
    padding: 4rem 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 16px 48px rgba(135, 206, 235, 0.3);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-icon {
    font-size: 4rem;
}

/* Cooperation Section */
.cooperation {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.cooperation-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cooperation-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cooperation-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.3);
}

.cooperation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* Ad Section */
.ad-section {
    padding: 2rem 0;
    background: white;
}

.ad-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #999;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #2E8B57;
}

.footer-contact {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-select,
    .search-btn {
        width: 100%;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .categories-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* Listing Pages Styles */
.listing-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.listing-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333 !important;
}

.listing-address {
    color: #666 !important;;
    margin-bottom: 0.5rem;
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #333 !important;
}

.rating-stars {
    color: #ffd700;
}

.listing-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.listing-phone,
.listing-website {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.listing-phone:hover,
.listing-website:hover {
    text-decoration: underline;
}

.listing-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.listing-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background: #f8f9fa;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    color: #666;
}

.breadcrumb-list a {
    color: #2E8B57;
    text-decoration: none;
}


.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.listings-section {
    padding: 2rem 0;
    background: white;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(238, 90, 36, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pagination-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(238, 90, 36, 0.4);
    color: white;
    text-decoration: none;
}

.pagination-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pagination-info {
    color: #666;
    font-weight: 500;
    margin: 0 1rem;
}

/* Hero Image Styles */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* CTA Image Container */
.cta-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Image Styles */
.cta-img {
    max-width: 400px; /* Adjust this value to make it smaller */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* If you want it even smaller, use these values: */
.cta-img.small {
    max-width: 150px; /* Even smaller */
}

/* Or for a very small image: */
.cta-img.xsmall {
    max-width: 100px; /* Very small */
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.search-select {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.search-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    
    .search-select {
        max-width: 100%;
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
    }
}

/* Styling dla paginacji */
.pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: #2E8B57;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.pagination-btn:hover {
    background: #236b47;
}

.pagination-info {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-weight: bold;
}

/* City Page Styles */
.city-header {
    background: linear-gradient(135deg, #2E8B57 0%, #1E6FA8 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.city-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.city-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 0 2rem 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: flex !important; /* Force display */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
    }

    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        width: 100%;
        display: none;
        background: #f8f9fa;
        padding-left: 1rem;
    }

    .nav-dropdown-content.active {
        display: block;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
        text-decoration: none;
        color: #333;
    }

    .nav-dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
        background: none;
        border: none;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        color: #333;
    }

    /* Overlay when menu is open */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 4px;
        z-index: 1000;
    }

    .nav-dropdown:hover .nav-dropdown-content {
        display: block;
    }
}

/* Wet Food CTA - Mobile Improvements */
.wet-food-cta {
    padding: 2rem 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 16px 48px rgba(135, 206, 235, 0.3);
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles for CTA */
@media (max-width: 768px) {
    .wet-food-cta {
        padding: 1.5rem 0;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .cta-img {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .cta-card {
        padding: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-img {
        max-width: 150px;
    }
}

.social-share-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Specific colors on hover (optional) */
.social-icon:hover.fa-facebook-f { background: #1877f2; }
.social-icon:hover.fa-x-twitter { background: #000000; }
.social-icon:hover.fa-linkedin-in { background: #0077b5; }
.social-icon:hover.fa-whatsapp { background: #25d366; }
.social-icon:hover.fa-envelope { background: #ea4335; }

/* Scoped Ubezpieczenie styles (applied only inside .ubez-page) */
.ubez-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ubez-page .page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.ubez-page .page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters */
.ubez-page .insurance-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ubez-page .filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    min-width: 200px;
    transition: all 0.3s ease;
}

.ubez-page .filter-select:focus {
    outline: none;
    border-color: #2E8B57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

/* Insurance Grid */
.ubez-page .insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ubez-page .insurance-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.ubez-page .insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.ubez-page .card-header {
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.ubez-page .company-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ubez-page .product-name {
    font-size: 0.9rem;
    opacity: 0.9;
}

.ubez-page .card-body {
    padding: 1.5rem;
}

.ubez-page .insurance-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.ubez-page .animal-badge {
    background: #e8f5e8;
    color: #2E8B57;
}

.ubez-page .price-section {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.ubez-page .price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.ubez-page .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2E8B57;
}

.ubez-page .price-period {
    font-size: 0.9rem;
    color: #666;
}

.ubez-page .coverage-limits {
    margin-bottom: 1.5rem;
}

.ubez-page .limit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ubez-page .limit-label {
    font-weight: 500;
    color: #333;
}

.ubez-page .limit-value {
    font-weight: bold;
    color: #2E8B57;
}

.ubez-page .coverage-features h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.ubez-page .features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.ubez-page .feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ubez-page .feature-item.available {
    color: #2E8B57;
}

.ubez-page .feature-item.unavailable {
    color: #999;
    text-decoration: line-through;
}

.ubez-page .age-limit {
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.ubez-page .exclusions {
    margin-top: 1rem;
}

.ubez-page .exclusions-toggle {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.ubez-page .exclusions-toggle:hover {
    color: #2E8B57;
}

.ubez-page .exclusions-content {
    display: none;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    border-left: 4px solid #2E8B57;
}

.ubez-page .card-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    text-align: center;
}

.ubez-page .details-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
    border: none;
    cursor: pointer;
}

.ubez-page .details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.4);
    color: white;
    text-decoration: none;
}

.ubez-page .details-btn.disabled {
    background: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

.ubez-page .details-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.ubez-page .no-results, .ubez-page .no-data {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ubez-page .no-results p, .ubez-page .no-data p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Responsive Design for ubez page */
@media (min-width: 1200px) {
    .ubez-page .insurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .ubez-page .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .ubez-page .insurance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
  
    .ubez-page .insurance-filters {
        flex-direction: column;
    }
  
    .ubez-page .filter-select {
        min-width: 100%;
    }
  
    .ubez-page .page-header h1 {
        font-size: 2rem;
    }
  
    .ubez-page .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ubez-page .card-body {
        padding: 1rem;
    }
  
    .ubez-page .price {
        font-size: 1.5rem;
    }
  
    .ubez-page .limit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
/* Feature Details Styles */
.ubez-page .feature-item.available {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.ubez-page .feature-header {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ubez-page .feature-details {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    border-left: 3px solid #2E8B57;
    width: 100%;
}

.ubez-page .feature-item.unavailable {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Adjust card height for additional content */
.ubez-page .insurance-card {
    min-height: 520px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ubez-page .feature-details {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .ubez-page .insurance-card {
        min-height: 560px;
    }
}
/* Horizontal Insurance Cards */
.ubez-page .insurance-horizontal-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ubez-page .insurance-horizontal-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.ubez-page .insurance-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.ubez-page .card-main-section {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.ubez-page .card-details-section {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.ubez-page .card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ubez-page .company-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ubez-page .product-name {
    font-size: 0.9rem;
    opacity: 0.9;
}

.ubez-page .card-basic-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ubez-page .insurance-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.ubez-page .price-section {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.ubez-page .price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    color: black;
}

.ubez-page .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.ubez-page .price-period {
    font-size: 0.9rem;
    opacity: 0.9;
    color: black;
}

.ubez-page .coverage-limits {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.ubez-page .limit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ubez-page .limit-label {
    font-weight: 500;
    opacity: 0.9;
    color: black;
}

.ubez-page .limit-value {
    font-weight: bold;
    color: white;
}

.ubez-page .age-limit {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: white;
}
.ubez-page .age-limit strong {
    color: white; /* Biały kolor dla pogrubienia w wieku */
}

/* Features Grid */
.ubez-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ubez-page .feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
}

.ubez-page .feature-item.unavailable {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ccc;
    color: #999;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ubez-page .feature-header {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ubez-page .feature-details {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
}

/* Footer in details section */
.ubez-page .card-details-section .card-footer {
    padding: 0;
    background: none;
    text-align: left;
    margin-top: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ubez-page .insurance-horizontal-card {
        flex-direction: column;
    }
    
    .ubez-page .card-main-section {
        flex: none;
    }
    
    .ubez-page .features-grid {
        grid-template-columns: 1fr;
    }
    
    .ubez-page .card-header {
        text-align: left;
    }
}

/* Keep existing styles for other elements */
.ubez-page .exclusions {
    margin-top: 1rem;
}

.ubez-page .exclusions-toggle {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.ubez-page .exclusions-toggle:hover {
    color: #2E8B57;
}

.ubez-page .exclusions-content {
    display: none;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    border-left: 4px solid #2E8B57;
}

.ubez-page .details-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
}

.ubez-page .details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.4);
    color: white;
    text-decoration: none;
}
.ubez-page .disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #856404;
}

.ubez-page .disclaimer p {
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section Styles */
.faq-section {
    background: white;
    padding: 3rem 0;
    margin: 2rem auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    padding: 0 20px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2E8B57, #1E6FA8);
    border-radius: 2px;
}

.faq-items-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #2E8B57;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.faq-item h3 {
    color: #2E8B57;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3::before {
    content: '❓';
    font-size: 1.1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Mobile adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
        margin: 1rem auto;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .faq-items-container {
        padding: 0 15px;
    }
    
    .faq-item {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .faq-section {
        padding: 1.5rem 0;
    }
    
    .faq-section h2 {
        padding: 0 10px;
    }
    
    .faq-items-container {
        padding: 0 10px;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}
/* CTA Grid Styles */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 16px 48px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(135, 206, 235, 0.4);
}

.health-journal-card {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFD700 100%);
    box-shadow: 0 16px 48px rgba(255, 182, 193, 0.3);
}

.health-journal-card:hover {
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.placeholder-icon {
    font-size: 4rem;
    color: #333;
    opacity: 0.8;
}

/* Mobile Styles for CTA Grid */
@media (max-width: 768px) {
    .wet-food-cta {
        padding: 1.5rem 0;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        align-self: center;
    }
    
    .cta-img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .cta-card {
        padding: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-img {
        max-width: 150px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
}