/* inria-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inria Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inria-sans-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inria-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inria Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inria-sans-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inria-serif-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inria Serif';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inria-serif-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --bg-primary: #f8f5ff;
    --bg-card: #e1dcf3;
    --text-primary: #090029;
    --font-serif: 'Inria Serif', serif;
    --font-sans: 'Inria Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    min-height: 100vh;
}

.header {
    padding-top: 60px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container {
    width: 236.406px;
    height: 40px;
}

.logo {
    width: 100%;
    height: 100%;
    display: block;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 720px;
}

.main-heading {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.contact-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 520px;
}

.contact-intro {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.icon {
    width: 18px;
    height: 18px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
}

.footer {
    width: 100%;
    border-top: 0.5px solid var(--text-primary);
    padding: 40px 16px;
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.6;
    text-align: center;
}

@media (max-width: 600px) {
    .contact-card {
        width: 90%;
        padding: 40px 30px;
    }

    .page-container {
        gap: 60px;
    }

    .main-heading {
        font-size: 32px;
    }
}
