        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Golos Text", sans-serif;
                        margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 100px;
            width: 100%;
        }
        
        .logo {
            margin-right: 84px;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }
        
        .nav-link {
            color: #000;
            text-align: center;
            font-family: "Golos Text";
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            text-decoration: none;
            margin-right: 15px;
            white-space: nowrap;
            position: relative;
        }
        
        .nav-link:last-child {
            margin-right: 0;
        }
        
        .dropdown {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .dropdown svg {
            margin-left: 5px;
        }
        
        .right-buttons {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }
        
        .btn-request {
            border-radius: 14px;
            border: 1px solid #C1C1C1;
            
            width: 163px;
            height: 46px;
            flex-shrink: 0;
            color: #000;
            text-align: center;
            font-family: "Golos Text";
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-right: 15px;
        }
        

		.btn-login:hover {
			background: #8896FF;
		}
		
		.btn-request:hover {
			background: #F9F9F9;
		}

