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

body {
    font-family: 'SF Pro Display', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.pedex-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.pedex-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.pedex-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.pedex-nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pedex-nav-menu li {
    margin: 0;
    padding: 0;
}

.pedex-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
}

.pedex-nav-menu a:hover,
.pedex-nav-active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.pedex-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.pedex-nav-menu a:hover::after,
.pedex-nav-active::after {
    width: 80%;
}

.pedex-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
}

.pedex-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.pedex-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.pedex-toggle-active span:nth-child(2) {
    opacity: 0;
}

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

.pedex-services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.pedex-services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    opacity: 0.95;
}

.pedex-services-hero-background::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="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 18,6 18,14 10,19 2,14 2,6" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
}

.pedex-services-hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pedex-services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pedex-services-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pedex-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.pedex-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.pedex-breadcrumb a:hover {
    opacity: 1;
}

.pedex-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.pedex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pedex-services-overview {
    padding: 6rem 0;
    background: white;
}

.pedex-services-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pedex-services-overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-services-overview-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.pedex-services-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pedex-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.pedex-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.pedex-services-overview-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.pedex-services-products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pedex-services-products::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="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
}

.pedex-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pedex-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pedex-section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pedex-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.pedex-product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.pedex-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
}

.pedex-product-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.02);
}

.pedex-product-featured::before {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
}

.pedex-product-featured .pedex-product-title,
.pedex-product-featured .pedex-product-description {
    color: white;
}

.pedex-product-featured .pedex-product-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pedex-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pedex-product-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pedex-product-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pedex-product-featured .pedex-product-icon {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.9);
}

.pedex-product-card:hover .pedex-product-icon {
    transform: scale(1.1);
}

.pedex-product-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.pedex-product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pedex-product-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pedex-product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pedex-product-features li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.pedex-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.pedex-product-featured .pedex-product-features li::before {
    color: #ffffff;
}

.pedex-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    display: inline-block;
}

.pedex-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.pedex-product-featured .pedex-btn-primary {
    background: white;
    color: #3b82f6;
}

.pedex-product-featured .pedex-btn-primary:hover {
    background: #f8fafc;
}

.pedex-process-section {
    padding: 6rem 0;
    background: white;
}

.pedex-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.pedex-process-step {
    text-align: center;
    position: relative;
}

.pedex-process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.pedex-process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pedex-process-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pedex-requirements-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pedex-requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}

.pedex-requirements-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-requirements-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pedex-requirements-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pedex-requirement-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-requirement-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pedex-requirement-category h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    border-radius: 2px;
}

.pedex-requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pedex-requirements-list li {
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.pedex-requirements-list li::before {
    content: '📄';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.pedex-requirements-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.pedex-consultation-section {
    padding: 6rem 0;
    background: white;
}

.pedex-consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.pedex-consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-consultation-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pedex-consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pedex-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pedex-benefit-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.pedex-benefit-item span {
    font-weight: 500;
    color: #1e293b;
}

.pedex-contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.pedex-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pedex-form-group label {
    display: block;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pedex-form-group input,
.pedex-form-group select,
.pedex-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.pedex-form-group input:focus,
.pedex-form-group select:focus,
.pedex-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.pedex-form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.pedex-contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    position: relative;
}

.pedex-contact-cta::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="dots-cta" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-cta)"/></svg>');
}

.pedex-contact-cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.pedex-contact-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pedex-contact-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pedex-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pedex-contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pedex-contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pedex-contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pedex-contact-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.pedex-contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.pedex-contact-details strong {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.pedex-contact-details span {
    font-size: 0.9rem;
    opacity: 0.9;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.pedex-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.pedex-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pedex-footer-brand .pedex-logo {
    margin-bottom: 1rem;
}

.pedex-footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.pedex-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pedex-footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.pedex-footer-column ul li {
    margin-bottom: 0.5rem;
}

.pedex-footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pedex-footer-column ul li a:hover {
    color: #3b82f6;
}

.pedex-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .pedex-nav-container {
        padding: 0 1rem;
    }

    .pedex-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        z-index: 1000;
    }

    .pedex-nav-menu.pedex-nav-active {
        display: flex;
    }

    .pedex-nav-menu a {
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pedex-nav-menu a:last-child {
        border-bottom: none;
    }

    .pedex-nav-menu a::after {
        display: none;
    }

    .pedex-nav-toggle {
        display: flex;
    }

    .pedex-logo {
        width: 150px;
        height: 50px;
    }

    .pedex-services-hero-title {
        font-size: 2.5rem;
    }

    .pedex-services-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-services-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pedex-products-grid {
        grid-template-columns: 1fr;
    }

    .pedex-product-featured {
        grid-column: span 1;
    }

    .pedex-process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-requirements-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-consultation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-form-row {
        grid-template-columns: 1fr;
    }

    .pedex-contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pedex-contact-option {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .pedex-contact-details {
        text-align: center;
    }

    .pedex-contact-details span {
        font-size: 0.85rem;
    }

    .pedex-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pedex-footer-links {
        grid-template-columns: 1fr;
    }

    .pedex-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .pedex-nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .pedex-logo {
        width: 120px;
        height: 40px;
    }

    .pedex-services-hero-title {
        font-size: 2rem;
    }

    .pedex-services-overview-title,
    .pedex-requirements-title,
    .pedex-consultation-title {
        font-size: 2rem;
    }

    .pedex-section-title {
        font-size: 2rem;
    }

    .pedex-btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .pedex-product-card {
        padding: 2rem;
    }

    .pedex-contact-form {
        padding: 2rem;
    }
}

@media (min-width: 1400px) {
    .pedex-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pedex-product-featured {
        grid-column: span 2;
    }

    .pedex-privacy-banner-text p {
        font-size: 0.85rem;
    }

    .pedex-privacy-banner-content {
        padding: 1rem;
    }
}

.pedex-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.pedex-privacy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.pedex-privacy-banner-text p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.pedex-privacy-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.pedex-privacy-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.pedex-privacy-link:hover {
    color: #93c5fd;
}

.pedex-privacy-accept {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.pedex-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .pedex-privacy-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .pedex-privacy-banner-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .pedex-privacy-accept {
        width: 100%;
    }
}