body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #222;
    color: #f3f3f3;
}

.us-container {
    max-width: 900px;
    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;
}

.us-profile {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.us-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 3px solid #e3e7ee;
}

.us-content {
    flex: 1;
    text-align: left;
}

.us-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: #f3f3f3;
}

.us-content p {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.7;
}

.us-content ul {
    margin: 0 0 18px 18px;
    padding: 0;
    color: #fff;
    font-size: 1rem;
}

.us-content li {
    margin-bottom: 7px;
    line-height: 1.5;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #444;
    color: #f3f3f3;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn:hover {
    background-color: #666;
}

.us-video-section {
    max-width: 900px;
    margin: 32px auto 0 auto;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 32px 40px 40px 40px;
    text-align: center;
    color: #fff;
}

.us-video-section h2 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.us-video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.us-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .us-container {
        flex-direction: column;
        align-items: center;
        padding: 24px 8vw 18px 8vw;
        gap: 4px;
    }
    .us-profile {
        justify-content: center;
        margin-bottom: 0;
    }
    .us-img {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
    }
    .us-content {
        margin-top: 0;
    }
    .us-video-section {
        padding: 18px 4vw 24px 4vw;
    }
}
.centered-contact {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-left: 120px;
  }
