* {
    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-about-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.pedex-about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.pedex-about-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="circles-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles-pattern)"/></svg>');
}

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

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

.pedex-about-hero-title {
    font-size: 3.2rem;
    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-about-hero-subtitle {
    font-size: 1.25rem;
    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-company-story {
    padding: 6rem 0;
    background: white;
}

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

.pedex-section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.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.125rem;
    color: #64748b;
    line-height: 1.6;
}

.pedex-story-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.pedex-story-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
}

.pedex-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.pedex-timeline-year {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.pedex-timeline-content {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pedex-timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pedex-timeline-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.pedex-company-values::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="values-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
}

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

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

.pedex-value-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);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pedex-team-stat {
    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: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

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

.pedex-team-expertise h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

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

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

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

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

.pedex-certifications .pedex-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.pedex-certification-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedex-certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.pedex-certification-card:hover .pedex-certification-icon {
    transform: scale(1.05);
}

.pedex-certification-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

.pedex-achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pedex-achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedex-achievement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.pedex-achievement-icon svg {
    width: 100%;
    height: 100%;
}

.pedex-achievement-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pedex-achievement-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.pedex-stat-circle {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.pedex-stat-circle:hover {
    transform: translateY(-5px);
}

.pedex-stat-big-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pedex-stat-big-label {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.3;
}

.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="cta-pattern" 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(%23cta-pattern)"/></svg>');
}

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

.pedex-contact-cta-title {
    font-size: 2.5rem;
    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: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pedex-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.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-btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pedex-btn-outline:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
}

.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-about-hero-title {
        font-size: 2.5rem;
    }

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

    .pedex-story-timeline::before {
        left: 50px;
    }

    .pedex-timeline-year {
        width: 100px;
        height: 45px;
        font-size: 1rem;
    }

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

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

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

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

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

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

    .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-about-hero-title {
        font-size: 2rem;
    }

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

    .pedex-team-title,
    .pedex-achievements-title {
        font-size: 2rem;
    }

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

    .pedex-value-card,
    .pedex-certification-card {
        padding: 2rem;
    }

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

    .pedex-timeline-year {
        width: 80px;
        height: 40px;
        font-size: 0.9rem;
    }

    .pedex-timeline-content {
        padding: 1.25rem;
    }

    .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%;
    }
}