* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.header {
    height: 217px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #F8FFFF;
    color: #000000;
}

.header h1 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    line-height: 42px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #000;
}

main {
    flex: 1;
}

.navbar {
    background: #F8FFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
}

.navbar img {
    height: 65px;
    width: auto;
    display: block;
}

.section {
    min-height: 217px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 80px;
    text-align: center;
}

.section-inner {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-inner h2 {
    margin: 0;
    font-size: 19px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #000;
}

.section-inner p {
    margin: 16px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
    color: rgba(118,118,118);
    max-width: 390px;
}

.section-inner.apps {
    max-width: 980px;
    width: 100%;
}

.section-inner h2:not(:first-child) {
    margin-top: 64px;
}

.page-privacy .header {
    height: 140px;
}

.page-privacy .header h1 {
    font-size: 24px;
    line-height: 32px;
}

.page-privacy main {
    background: #F8FFFF;
}

.page-privacy .section-inner {
    align-items: flex-start;
    text-align: left;
}

.page-privacy .section-inner p {
    margin-left: 0;
    margin-right: 0;
}

.app-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 63px;
    flex-wrap: wrap;
}

.app-card {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-card a {
    display: inline-block;
}

.app-card a:focus-visible {
    outline: 2px solid rgba(0,0,0,0.4);
    outline-offset: 4px;
}

.app-card:hover .app-icon {
    transform: scale(1.04);
}

.app-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: transparent;
    border-radius: 20px;
    display: block;
    margin-bottom: 26px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.app-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #000;
}

.app-card p {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
    color: rgba(118,118,118);
}

.section-white {
    background: #F8FFFF;
    padding: 40px 80px;
}

.section-grey {
    background: #E0E4E7;
}

.footer {
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3C3C3C;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.footer-text {
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 100;
    letter-spacing: 0.3px;
    margin: 0;
}

.footer .copyright {
    font-weight: 200;
    margin: 0 1px;
}

.social-icons {
    margin-top: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover img {
    opacity: 1;
}

.social-icons a:focus-visible {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 3px;
}

.social-icons img {
    width: 19px;
    height: 19px;
    display: block;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease, transform 0.2s ease;
}