html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
}

.touch-container {
    max-width: 700px;
    margin: 48px auto 0 auto;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 40px 40px 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    color: #fff;
}

.touch-profile {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.touch-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 16px;
    background: #222;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 3px solid #444;
}

.touch-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.touch-content h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #fff;
}

.contact-card {
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #fff;
}

.contact-link {
    font-size: 1.1rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap; /* Prevents children from wrapping */
    white-space: nowrap; /* Prevents the whole link from breaking */
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-label {
    font-weight: 700;
    color: #fff;
    margin-right: 8px;
    white-space: nowrap; /* Prevents label from breaking */
}

.contact-value {
    white-space: nowrap; /* Prevents the email from breaking */
}

.calendly-wrapper {
    max-width: 700px;
    margin: 40px auto 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    background: #fff;
    padding: 0;
}
.calendly-inline-widget {
    width: 100% !important;
    border-radius: 18px !important;
    min-width: 320px;
    height: 630px;
    background: #fff;
}
.calendly-announcement {
    display: inline-block;
    text-align: center;
    font-size: 1.18rem;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, #3a7afe 0%, #00c6fb 100%);
    padding: 14px 22px 10px 22px;
    margin: 24px auto 18px auto;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 18px rgba(58,122,254,0.10), 0 1.5px 8px rgba(0,198,251,0.10);
    border-radius: 10px;
    animation: pop-announcement 1.1s cubic-bezier(0.4,0,0.2,1);
    max-width: 90vw;
    white-space: normal;
}
@keyframes pop-announcement {
    0% { transform: scale(0.95); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}
@media (max-width: 900px) {
    .touch-container {
        flex-direction: column;
        align-items: center;
        padding: 24px 8vw 18px 8vw;
        gap: 4px;
    }
    .touch-profile {
        justify-content: center;
        margin-bottom: 0;
    }
    .touch-img {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
    }
    .touch-content {
        margin-top: 0;
    }
    .touch-video-section {
        padding: 18px 4vw 24px 4vw;
    }
    .calendly-wrapper {
        max-width: 98vw;
        margin: 24px 1vw 0 1vw;
        border-radius: 14px;
    }
    .calendly-inline-widget {
        border-radius: 14px !important;
        height: 520px;
    }
    .calendly-announcement {
        font-size: 1rem;
        padding: 10px 8px 8px 8px;
        border-radius: 8px;
        max-width: 98vw;
    }
}
