

    .top {
        background: var(--color-linkedin-blue);
        color: white;
        padding: 1rem 0;
        position: relative;
        overflow: hidden;
    }

    .top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .address {
        position: relative;
        z-index: 2;
    }

    .addressContainer {
        margin: 0 auto;
        width: 90%;
        max-width: 1400px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .locations-section {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        flex: 1;
        min-width: 320px;
    }

    .location-item {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        min-width: 240px;
    }

    .location-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.25rem;
    }

    .location-icon {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .location-address {
        font-size: 1rem;
        font-weight: 500;
        color: white;
        line-height: 1.4;
    }

    .contact-details {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .phone-container {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1.5rem;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
        border-radius: 8px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .phone-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    }

    .phone-container:hover {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));

        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.15),
            0 4px 16px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .phone-container:active {
        transform: translateY(-1px);
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }

    .phone-icon {
        width: 20px;
        height: 20px;
        fill: currentColor;
        flex-shrink: 0;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }

    .phone-container a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.025em;
    }

    .phone-container a:hover {
        color: #f0f0f0;
    }

    .social-icons {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-icons a:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .svg-icon {
        width: 20px;
        height: 20px;
        fill: white;
        transition: fill 0.3s ease;
    }

    .social-icons a:hover .svg-icon {
        fill: #f0f0f0;
    }

    /* Location separator */
    .location-divider {
        width: 2px;
        height: 80px;
        background: rgba(255, 255, 255, 0.3);
        margin: 0 0.5rem;
    }

    /* Mobile-first responsive design */
    @media (max-width: 768px) {
        .top {
            padding: 1.5rem 0;
        }

        .addressContainer {
            flex-direction: column;
            align-items: stretch;
            gap: 1.5rem;
            text-align: center;
        }

        .locations-section {
            justify-content: center;
            flex-direction: column;
            gap: 1.25rem;
            min-width: auto;
            flex: none;
        }

        .location-item {
            min-width: auto;
            align-items: center;
        }

        .location-header {
            justify-content: center;
        }

        .location-address {
            font-size: 0.95rem;
            text-align: center;
        }

        .location-divider {
            display: none;
        }

        .contact-details {
            justify-content: center;
            gap: 1rem;
        }

        .phone-container {
            padding: 1rem 1.75rem;
            justify-content: center;
            gap: 1rem;
        }

        .phone-container:active {
            transform: translateY(0);
        }

        .social-icons {
            gap: 1rem;
        }

        .social-icons a {
            width: 44px;
            height: 44px;
        }
    }

    @media (max-width: 480px) {
        .addressContainer {
            width: 95%;
            gap: 1rem;
        }

        .locations-section {
            gap: 1rem;
        }

        .location-header {
            font-size: 0.8rem;
        }

        .location-address {
            font-size: 0.9rem;
            line-height: 1.3;
        }

        .contact-details {
            flex-direction: column;
            gap: 1rem;
        }

        .phone-container {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        .social-icons {
            justify-content: center;
            width: 100%;
        }
    }

    /* Tablet specific adjustments */
    @media (min-width: 481px) and (max-width: 768px) {
        .locations-section {
            flex-direction: row;
            justify-content: space-around;
            gap: 2rem;
        }

        .location-item {
            flex: 1;
            max-width: 300px;
        }
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .top {
            background: #000;
            border-bottom: 2px solid #fff;
        }

        .phone-container,
        .social-icons a {
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .phone-container,
        .social-icons a,
        .phone-container a,
        .svg-icon {
            transition: none;
        }

        .phone-container:hover,
        .social-icons a:hover {
            transform: none;
        }
    }

    /* Focus styles for accessibility */
    .phone-container a:focus,
    .social-icons a:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
        border-radius: 4px;
    }

    /* Print styles */
    @media print {
        .top {
            background: none !important;
            color: #000 !important;
            border-bottom: 1px solid #000;
        }

        .location-header,
        .location-address {
            color: #000 !important;
        }

        .social-icons {
            display: none;
        }
    }
