* {
    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-privacy-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.pedex-privacy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    opacity: 0.95;
}

.pedex-privacy-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="privacy-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-pattern)"/></svg>');
}

.pedex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pedex-privacy-hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pedex-privacy-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-privacy-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 650px;
    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-privacy-content {
    padding: 6rem 0;
    background: white;
}

.pedex-privacy-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-privacy-updated {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.pedex-update-label {
    font-weight: 600;
    color: #1e293b;
}

.pedex-update-date {
    color: #3b82f6;
    font-weight: 500;
}

.pedex-privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pedex-privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pedex-privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #3b82f6;
}

.pedex-privacy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pedex-privacy-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pedex-privacy-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.pedex-privacy-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #64748b;
    line-height: 1.6;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.pedex-privacy-list li:last-child {
    border-bottom: none;
}

.pedex-privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.pedex-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pedex-right-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedex-right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.pedex-right-item h4 {
    color: #3b82f6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pedex-right-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.pedex-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pedex-contact-method {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-contact-method strong {
    color: #1e293b;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.pedex-contact-method p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.pedex-privacy-footer {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.pedex-privacy-footer p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.pedex-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.pedex-footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    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: repeat(3, 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-privacy-hero-title {
        font-size: 2.5rem;
    }

    .pedex-privacy-document {
        padding: 2.5rem;
        margin: 0 1rem;
    }

    .pedex-rights-grid {
        grid-template-columns: 1fr;
    }

    .pedex-contact-info {
        grid-template-columns: 1fr;
    }

    .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-privacy-hero-title {
        font-size: 2rem;
    }

    .pedex-privacy-document {
        padding: 2rem;
    }

    .pedex-privacy-section h2 {
        font-size: 1.5rem;
    }

    .pedex-privacy-section h3 {
        font-size: 1.2rem;
    }

    .pedex-right-item,
    .pedex-contact-method {
        padding: 1.5rem;
    }

    .pedex-privacy-footer {
        padding: 2rem;
    }

    .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%;
    }
}