@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-blue: #042958;
    --secondary-blue: #006BD3;
    --accent-orange: #FF8B16;
    --accent-red: #9C1A00;
    --text-white: #FFFFFF;
    --spacing-55: 55px;
}

body {
    font-family: "Raleway", sans-serif;
    color: var(--text-white);
    font-size: 14px;
    background: radial-gradient(30.7% 50% at 74.17% 50%, #006BD3 0%, #042958 100%);
    margin: 0;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1920px;
    padding: 0 30px;
    margin: 0 auto;
    height: 100%;
}

html, body {
    overflow-x: hidden; /* Убираем горизонтальный скролл */
    max-width: 100%;
}
