body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: #000;
    color: #1b1b18;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    body {
        padding: 2rem;
    }
}

.holding-container {
    max-width: 56rem; /* 4xl */
    width: 100%;
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f3f4f6; /* gray-100 */
}

@media (min-width: 768px) {
    .holding-container {
        flex-direction: row;
    }
}

.logo-section {
    background-color: #262728;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

@media (min-width: 768px) {
    .logo-section {
        width: 33.333333%;
    }
}

.content-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .content-section {
        width: 66.666667%;
    }
}

@media (min-width: 1024px) {
    .content-section {
        padding: 4rem;
    }
}

.title {
    font-size: 1.875rem; /* 3xl */
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem; /* lg */
    line-height: 1.625;
    color: #374151; /* gray-700 */
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem; /* sm */
    color: #9ca3af; /* gray-400 */
}

.italic { font-style: italic; }
.font-medium { font-weight: 500; }
.text-dark { color: #1b1b18; }
