#work-with-us {
    scroll-margin-top: 120px;
}

.work-with-us {
    width: 1125px;
    padding: 20px;
    margin-bottom: 50px;
}

.work-with-us h2 {
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
    padding-left: 0;
}

.work-contact-text {
    font-size: 24px;
    font-weight: 50;
    color: #fff;
    text-align: left;
    line-height: 1.4;
    padding: 10px;
}

.contact-row {
    display: flex;
    align-items: center;
    line-height: 1.4;
    gap: 0;
    margin-bottom: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon img[alt="WhatsApp"] {
    width: 115%;
    height: 115%;
    margin: -7.5%;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon .dark-icon {
    display: none;
}

.phone-link, .email-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    opacity: 0.8;
}

body.dark-theme .contact-icon .light-icon {
    display: none;
}

body.dark-theme .contact-icon .dark-icon {
    display: block;
}

[data-theme="dark"] .contact-icon {
    color: #fff;
    fill: #fff;
}

[data-theme="dark"] .work-with-us-block {
    transform: translateY(0);
}

[data-theme="dark"] .work-with-us-block:hover {
    transform: translateY(-5px);
}

[data-theme="dark"] .work-with-us-block:active {
    transform: translateY(0);
}

[data-theme="light"] .work-with-us-block {
    transform: translateY(0);
}

[data-theme="light"] .work-with-us-block:hover {
    transform: translateY(-5px);
}

[data-theme="light"] .work-with-us-block:active {
    transform: translateY(0);
}

.work-with-us-block {
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-with-us-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
} 