@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/inter-v20-latin-900.woff2') format('woff2');
}

:root {
    --color-primary: #2d63c8;
    --color-bg: #f4f5f7;
    --color-text: #333;
    --color-text-muted: #777;
    --color-label: #999;
    --color-border: #e9e9e9;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}
.background-pane {
    flex: 0 0 60%;
    background-image: var(--background-image-url);
    background-size: cover;
    background-position: center;
}
.content-pane {
    flex: 0 0 40%;
    padding: 4rem 5rem;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #fff;
}
h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 0.25rem;
}
.title {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 2.5rem;
    transition: background-color 0.2s;
}
.cta-button:hover {
    background-color: #2450a0;
}
.info-block {
    margin-bottom: 2.5rem;
}
.label-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-label);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.info-item {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    background-color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 99, 200, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.send-button {
    width: auto;
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.send-button:hover {
    background-color: var(--color-primary);
    color: #fff;
}
@media (max-width: 1024px) {
    .content-pane {
        padding: 3rem;
    }
}
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }
    .background-pane {
        flex: none;
        height: 50vh;
        min-height: 350px;
    }
    .content-pane {
        flex: 1;
        padding: 2rem;
    }
    h1 { font-size: 1.8rem; }
}