* {
    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-contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.pedex-contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    opacity: 0.95;
}

.pedex-contact-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="contact-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(%23contact-pattern)"/></svg>');
}

.pedex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pedex-contact-hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pedex-contact-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-contact-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-contact-info {
    padding: 6rem 0;
    background: white;
}

.pedex-contact-info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.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-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pedex-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    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-contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pedex-contact-icon {
    width: 50px;
    height: 50px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.pedex-contact-icon svg {
    width: 30px;
    height: 30px;
}

.pedex-contact-method-content {
    flex: 1;
}

.pedex-contact-method-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pedex-contact-method-content p {
    font-size: 1.125rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pedex-contact-method-content span {
    font-size: 0.9rem;
    color: #64748b;
}

.pedex-quick-contact-card {
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    position: sticky;
    top: 100px;
}

.pedex-quick-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pedex-quick-contact-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.pedex-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pedex-quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pedex-quick-action:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pedex-action-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pedex-action-icon svg {
    width: 100%;
    height: 100%;
}

.pedex-response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pedex-response-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pedex-contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pedex-contact-form-section::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="form-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23form-pattern)"/></svg>');
}

.pedex-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pedex-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-form-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pedex-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pedex-form-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-benefit-icon {
    width: 30px;
    height: 30px;
    color: #3b82f6;
    flex-shrink: 0;
}

.pedex-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.pedex-form-benefit span {
    font-weight: 500;
    color: #1e293b;
}

.pedex-contact-form {
    background: white;
    padding: 3rem;
    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-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pedex-form-group {
    margin-bottom: 1.5rem;
}

.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;
    font-family: inherit;
}

.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-radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pedex-radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.pedex-radio-option input[type="radio"] {
    display: none;
}

.pedex-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.pedex-radio-option input[type="radio"]:checked+.pedex-radio-custom {
    border-color: #3b82f6;
}

.pedex-radio-option input[type="radio"]:checked+.pedex-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.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;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.pedex-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.pedex-form-submit {
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
}

.pedex-service-hours {
    padding: 6rem 0;
    background: white;
}

.pedex-service-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.pedex-hours-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-hours-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pedex-hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pedex-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-schedule-closed {
    opacity: 0.6;
}

.pedex-schedule-day {
    font-weight: 600;
    color: #1e293b;
}

.pedex-schedule-time {
    color: #3b82f6;
    font-weight: 500;
}

.pedex-schedule-closed .pedex-schedule-time {
    color: #94a3b8;
}

.pedex-response-commitment h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.pedex-commitment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pedex-commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-commitment-icon {
    width: 40px;
    height: 40px;
    color: #3b82f6;
    flex-shrink: 0;
}

.pedex-commitment-icon svg {
    width: 100%;
    height: 100%;
}

.pedex-commitment-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pedex-commitment-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

.pedex-location-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pedex-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.pedex-location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-location-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pedex-location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pedex-location-address h4,
.pedex-location-transport h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pedex-location-address p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-transport-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pedex-transport-list li {
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    padding: 1rem 1rem 1rem 2.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-transport-list li::before {
    content: '🚗';
    position: absolute;
    left: 1rem;
    font-size: 1rem;
}

.pedex-transport-list li:nth-child(2)::before {
    content: '🚊';
}

.pedex-transport-list li:nth-child(3)::before {
    content: '🚕';
}

.pedex-transport-list li:nth-child(4)::before {
    content: '📍';
}

.pedex-map-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pedex-map-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pedex-map-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

.pedex-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(29, 78, 216, 0.95) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.pedex-map-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pedex-map-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.pedex-map-overlay .pedex-btn-primary {
    background: white;
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.pedex-map-overlay .pedex-btn-primary:hover {
    background: #f8fafc;
}

.pedex-appointment-section {
    padding: 6rem 0;
    background: white;
}

.pedex-appointment-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pedex-appointment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pedex-appointment-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pedex-appointment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pedex-appointment-option {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pedex-appointment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
}

.pedex-appointment-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pedex-appointment-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-appointment-option:hover .pedex-appointment-icon {
    transform: scale(1.1);
}

.pedex-appointment-icon svg {
    width: 100%;
    height: 100%;
}

.pedex-appointment-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pedex-appointment-option p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pedex-option-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pedex-option-features li {
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.pedex-option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.pedex-btn-outline {
    background: transparent;
    color: #3b82f6;
    padding: 1rem 2rem;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pedex-btn-outline:hover {
    background: #3b82f6;
    color: white;
    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-contact-hero-title {
        font-size: 2.5rem;
    }

    .pedex-contact-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-quick-contact-card {
        position: static;
    }

    .pedex-contact-form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-form-row {
        grid-template-columns: 1fr;
    }

    .pedex-radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .pedex-service-hours-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pedex-appointment-options {
        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-contact-hero-title {
        font-size: 2rem;
    }

    .pedex-section-title,
    .pedex-form-title,
    .pedex-hours-title,
    .pedex-location-title,
    .pedex-appointment-title {
        font-size: 2rem;
    }

    .pedex-contact-form {
        padding: 2rem;
    }

    .pedex-btn-primary,
    .pedex-btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .pedex-appointment-option {
        padding: 2rem;
    }

    .pedex-quick-actions {
        gap: 0.75rem;
    }

    .pedex-quick-action {
        padding: 0.75rem;
    }

    .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%;
    }
}